
/* —————————————————————————————— clear.css —————————————————————————————— */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, textarea
{outline:0;	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0;
	padding: 0;
	font-size:12px;	font-weight:normal;	vertical-align:top;	background:transparent;	outline:none;
	text-align: left;
}
b {font-weight:bold;}
i {font-style:italic;}
ol, ul {list-style:none;}
blockquote, q {quotes:none;}
table {border-collapse:collapse;border-spacing:0;}
a, span {vertical-align:baseline;}



/* ---------------------------------------- */
/* Fontes --------------------------------- */





/* ---------------------------------------- */
/* TAGS ----------------------------------- */

html{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-color: transparent;
    font-family: 'Roboto', sans-serif;
    color: #444;
    overflow: hidden;
}

form{
    margin: 0px;
    padding: 0px;
}


.pageBody{
    opacity: 0;
    animation-name: pageBodyFade;
    animation-delay: 1s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes pageBodyFade{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}


.contatoBoxForm{
    width: 100%;
}


/* ---------------------------------------- */
/* Colunas e linhas ----------------------- */

.coluna_rotulo{
    display: none;
}

.coluna_campo{
    width: 100%;
    margin-bottom: 28px;
}

.coluna_label{
    display: none;
}

.rotulo_interno{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
}

.linha_botao{
    margin-top: 10px;
    text-align: right;
    width: 100%;
}

.msg_alert{
    color: red;
    margin-top: 4px;
}


/* ---------------------------------------- */
/* Campos --------------------------------- */

.campo{
    color: #222;
    font-size: 16px;
    width: 100%;
    padding: 14px 14px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #999;
}

.campoText{
    color: #222;
    font-size: 16px;
    width: 100%;
    height: 110px;
    padding: 14px 14px;
    background-color: #fff;
    border: 1px solid #999;
}



/* ---------------------------------------- */
/* Botões --------------------------------- */

.botao{
    font-family: 'Montserrat', sans-serif;
    color: #505050;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 5px;
    background-color: transparent;
    border: 2px solid #575e68;
    cursor: pointer;
    transition-property: color background-color;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    -webkit-transition-property: color background-color;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;
}

.botao:hover{
    color: #fff;
    background-color: #575e68
}



/* ---------------------------------------- */
/* Mensagens e Respostas ------------------ */

#contatoBoxMSG{
    display: flex;
    width: 90%;
    height: 80%;
    align-items: center;
}

.aviso{
    color: yellow;
    font-weight: bold;
    text-align: left;
}

.sucesso{
    font-family: 'Montserrat', sans-serif;
    color: #050;
    font-weight: bold;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 120px;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: left;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
            






