/*
ELABORADO POR RAFAEL AVELAR
VERSÃO 2.0
ATUALIZADO DIA: 06/01/2017
*/

@charset "utf-8";

.conteudo {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: strech;
	align-content: strech;
	padding: 2% 3% 0% 3%;
	flex-grow: 1;
	font-family: verdana;
}
.conteudo p {
	text-align: left;
	margin: 1% 1% 0.5% 0%;
	font-size: 1.1em;
}
.topico {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: strech;
	align-content: strech;
	flex-grow: 1;
	line-height: 1.5em;
	padding: 7% 4%;
	background-color: #fff;
	text-align: center;
	border-radius: 7px;
	margin: 0% 1% 3% 1%;
}
label{
	font-weight: 400;
}
input, textarea{
	align-self: center;
	width: 98%;	
	color: #767676;
	border: 1px solid #dbdbdb;
	font-size: 1.2em;
	background-color: #fafafa;
	padding: 1%;
}
input:focus, textarea:focus {
	background-color: white;
}
textarea{
	resize: none;
}
.trabalho, .infos{
	margin: 4% 0%;
}
.infos{
	display: flex;
	flex-direction: column;
	justify-content: space-around;	
	align-content: strech;
	text-align: left;
	width: 100%;
	font-size: 1em;
}
.logotrad{
	text-align: center;
	margin: 2% 0%;
}
.infotel, .infomail {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.infotel img, .infomail img{
	width: 32px;
	height: 32px;
	margin: .8% 2% .5% 0%
}
.infotel span, .infomail a{
	text-decoration: none;
	color: gray;
	align-self: center;
	flex-grow: 1;
	font-size: 1em;
	font-weight: 400;
}
.email {
	margin-top: 10%;
}
.envio{
	display: flex;
	justify-content: space-between;
}
.enviar{
	cursor: pointer;
	border: thin solid #ddd;
	width: 45%;
	max-width: 150px;
}
.enviar:hover{
	border: thin solid rgb(49,122,190);
	box-shadow: 0 2px 16px rgb(49,122,190);
	-webkit-box-shadow: 0 2px 16px rgb(49,122,190);
	-moz-box-shadow: 0 2px 16px rgb(49,122,190);
}
.asterisco{
	text-align: right;
}
.trabalho{
	font-size: 1.1em;
}
.txtcontato{
	margin: 1% 0% 2% 0%;
	text-align: left;
	font-weight: bold;
	font-size: 1.2em;
}
.trabalho h2{
	margin: 1% 0% 2% 0%;
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
}


/*================ MOBILE FIRST ================*/
/* SMALL DEVICES - SMARTPHONES */

@media screen and (min-width: 480px){
.infos{
	font-size: 1.1em;
}
.infotel span, .infomail a{
	flex-grow: 0;
}
.infotel img, .infomail img{
	margin-left: 15%;
}
}

/* SMALL DEVICES - TABLETS */

@media screen and (min-width: 768px){
.conteudo{
	width: 90%;
    margin: auto;
}
}
.conteudo {
	flex-direction: row;
}
.lateral{
	width: 40%;
	max-width: 300px;
}
.infotel img, .infomail img{
	margin: .8% 2% .5% 0%
}
.infos{
	font-size: 1em;
}
.infotel span, .infomail a{
	flex-grow: 1;
}
.email {
	margin-top: 5%;
}
}

/* MEDIUM DEVICES - TABLETS & DESKTOPS */
@media screen and (min-width: 960px){ 
.conteudo{
	width: 80%;
    margin: auto;
}
.infotel img, .infomail img{
	margin: .8% 2% 0% 0%
}
.lateral {
	padding: 50px 30px;
}
.envio{
	margin-top: 10px;
}
}

/* LARGES DEVICES - WIDE SCREENS */
@media screen and (min-width: 1280px){ 
.conteudo{
	width: 70%;
    margin: auto;
}
.dados{
	width: 60%
}
.lateral{
	width: 40%;
	max-width: 400px;
}
.infotel img, .infomail img{
	margin: .8% 2% 1% 0%
}
.email {
	margin-top: 2%;
}
}


/* 
ELABORADO POR RAFAEL AVELAR
VERSÃO 2.0
ATUALIZADO DIA: 06/01/2017
*/