/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

.titulo-contato {
    text-transform: uppercase;

}
.container-contato {
    background-color: #F9FBFA;
}
.container-conteudo {
    margin: 0 auto;
    width: 80%;

}
.form-border {
    font-family: var(--font-body);
}
.form-border input,.form-select {
    border-radius: 50px;
}
.assunto-desabilitado {
    color: rgb(185, 185, 185);
} 
.form-border ::-webkit-input-placeholder {
    color: rgb(185, 185, 185);
} 
.form-border ::-moz-placeholder {
    color: rgb(185, 185, 185);
} 
.form-border :-ms-input-placeholder {
    color: rgb(185, 185, 185);
} 
.form-border ::-ms-input-placeholder {
    color: rgb(185, 185, 185);
} 
.form-border ::placeholder {
    color: rgb(185, 185, 185);
}
#mensagem {
    border-radius: 25px;
    resize: none;
    position: relative;
    padding-bottom: 50px;
    
}
.container-conteudo p {
    font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    line-height: 1.2em;
    
}

.container-conteudo h1 {
    font-size: 2em;
    font-family: sans-serif;
    text-transform: none;
    font-weight: 700;
    color: var(--azul-escuro-2);;
    margin-bottom: 20px;
}
.form-container {
    width: 70%;
    margin: 0 auto;
}


.container-botao {
    position: relative;
    z-index: 1;
}
.btn-contato {
    position: absolute;
    z-index: 1;
    top: -40px;
    left: 45%;
    color: #494949;
    font-size: 1em;
    background-color: #01ffc1;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    padding: 10px 25px;
}

@media screen and (max-width: 991.98px){ 
    .form-container {
        width: 100%;
    }
}
/* Honeypot do formulário de contato: fora da tela, mas sem display:none
   (bots ignoram campos com display:none, mas preenchem estes). */
.campo-website {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media screen and (max-width: 575.98px) {
    .container-conteudo h1 {
        font-size: 1.4em;
    }
}
