/* Comentario */

/* 
nome de uma tag{...}
#nome de uma tag com id{...}
.nome de uma tag com uma classe{...}
 */

* {
	margin: 0px;
	padding: 0px;

}

img {
	display: block;
	width: 100%;
}

/* Tipografia */



.titulo-a {
	font-family: "Roboto serif", serif;
	font: weight 400px; ;
	color: rgb(0, 0, 0);
	font-size: 30px;
	margin-bottom: 30px;
	
}



.titulo-b {
	font-family: "Roboto serif", serif;
	font: weight 300px; ;
	color: rgb(0, 0, 0);
	font-size: 20px;
	margin-bottom: 30px;
    
}






.titulo-c{
	color: rgb(0, 0, 0);
	font-size: 30px;
}

.texto {
	font-family: "Roboto serif", serif;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 10px;
}



.texto-a {
	font-family: "Roboto Serif", serif;
	font-weight: 400;
	color: #FFBA08;
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 10px;
}

.col-3 p {

	height: 200px;
}


/* ESTRUTURA */

header {
	width: 100%;
	height: 80px;
	background-color: #E8CEEC
}

.heather-center {
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	height: 80px;
	display: flex;
	justify-content: space-between;


}

.logo {
	align-items: center;
	display: flex;
	font-size: 30px;
	color: rgb(0, 0, 0);
	font-family: "Roboto Serif", serif;

}

nav {
	display: flex;
	align-items: center;

}



ul {


	display: flex;
	align-items: center;

}


li {

	list-style-type: none;
	padding-left: 30px;



}

ul a {

	text-decoration: none;
	color: #000000;
	font-size: 16px;
	font-family: "Roboto Serif", serif;
	font-weight: 400px
}

ul a:hover {

	text-decoration: underline;
	color: #000000;



}



section {
	width: 100%;
}

footer {
	width: 100%;
	height: 80px;
	background-color: #7D5BA6c7;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
}

footer p {
	font-size: 20px;
	color: #ffd900;
	margin-bottom: 10px;
}

.container-col {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 900px;


}

/* COLUNAS */

.col-2 {

	margin-bottom: 10px;
	width: 50%;
}

.col-3 {
	margin-bottom: 10px;
	width: 33.3%;

}

.col-4 {

	margin-bottom: 10px;
	width: 25%;

}

/* FLEX */

.flex-sb {
	display: flex;
	justify-content: space-between;
}

.flex-center {
	display: flex;
	justify-content: center;
}

.flex-sa {
	display: flex;
	justify-content: space-around;
}

.flex-gap-peq {
	display: flex;
	gap: 20px
}

/* CORES DE FUNDO */

.bc-escuro {
	background-color: #7D5BA6;
}

.bc-meio {
	background-color: #FFBA08;
}

.bc-claro {
	background-color: #7D5BA6;
}


.bc-amarelo{

	background-color: #FFBA08;
}




/*PADDINGS E MARGINS*/

.pad-t-b-grande {
	padding-top: 100px;
	padding-bottom: 100px;
}

.pad-t-b-medio {
	padding-top: 60px;
	padding-bottom: 60px;
}

.pad-t-b-pequeno {
	padding-top: 20px;
	padding-bottom: 20px;
}




.barra-plantas {
    width: 100%;
	height: 80px;
	background-color:#7D5BA6

	
	
	

}


/* Colunas Responsivo*/


@media only screen and (max-width :750px){


.flex-gap-peq{

	flex-wrap: wrap;
}

.col-2{
	width: 100%;
}

.col-3{
	width: 100%;
}

.col-4{
	width: 48%;
}














}