
/* —————————————————————————————— 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: 0p;
}

body{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-color: transparent;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

form{
    margin: 0px;
    padding: 0px;
}


/* ---------------------------------------- */
/* Colunas e linhas ----------------------- */

.coluna_rotulo{
    display: none;
}

.coluna_campo{
    width: 100%;
    margin-bottom: 12px;
}

.coluna_label{
    display: none;
}

.linha_botao{
    width: 335px;
    margin-top: 5px;
    text-align: right;
}




/* ---------------------------------------- */
/* Campos --------------------------------- */

.campo{
    background-color: transparent;
    font-size: 20px;
    padding: 4px;
    width: 335px;
    margin-bottom: 10px;
    border-bottom: 1px solid #bbb;
}

.campo:focus{
    border-bottom: 1px solid #888;
}

.campoText{
    font-size: 20px;
    width: 335px;
    margin-bottom: 10px;
    border: 1px solid #bbb;
    height: 180px;
    border-radius: 5px;
    padding: 7px 10px;
}



/* ---------------------------------------- */
/* Botões --------------------------------- */

.botao{
    color: #444;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 8px 14px;
    border: 1px solid #bbb;
    background-color: #f8f8f8;
}

.botao:hover{
    background-color: #888;
    color: #444;
    border: 1px solid #222;
}



/* ---------------------------------------- */
/* Mensagens e Respostas ------------------ */

#contatoBoxMSG{
    width: 335px;
    margin-top: 70px;
    font-size: 14px;
    line-height: 18px;
}

.aviso{
    color: #514947;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
}

.sucesso{
    color: #514947;
    font-weight: bold;
    font-size: 14px;
    font-style: italic;
    margin-top: 90px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #b2a583;
    border-bottom: 1px solid #b2a583;
}
            

@media screen and (max-width: 600px){

    /* ---------------------------------------- */
    /* Campos --------------------------------- */
    .campo{
        width: 100%;
    }

    .campoText{
        width: 100%;
    }
 
    #contatoBoxMSG{
        width: 80%;
        margin: 0 auto;
    }

    .linha_botao{
        width: 80%;
        margin: 0 auto;
        margin-top: 5px;
    }

    .coluna_campo{
        width: 80%;
    }
    
}




