@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap');

body{
	--fundo_tela_splash: #C7C1C1;
}

*{
	margin: 0;
	box-sizing: border-box;
}

:root{
	--fonte: 'Nunito', sans-serif;
	--cor_dos_links: black;
	--cor_azul: #3737f3;
	--cor_sessao1: #dcdcdc; /* SOBRE NOSOTROS */
	--cor_sessao2: white;   /* SERVÍCIOS */
	--cor_sessao3: #3737f3; /* FOTOS TRABAJOS */
}

#btn_whats_fixo{
	width: auto;
	text-align: right;
	position: fixed;
	bottom: 0px;
	right: 0px;
	padding: 10px;
}

#btn_whats_fixo img{
	margin-right: 15px;
	margin-bottom: 10px;
}

header{
	width: 100%;
	height: 620px;
	background-image: url("../img/header.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-color: ;
}

#slogan_header{
	width: 100%;
	height: 540px;
	display: flex;
	flex-direction: column;
	background-color: ;
	overflow: hidden;
	
}

/* Logotipo da tela de splash ============== */
.container_principal{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--fundo_tela_splash); 
}
/* ===================================== */

.container_slogan{
	width: 100%;
	height: 260px;
	margin: 1px;
	
}



#slogan_header h1{
	text-align: center;
	color: white;
	text-shadow: 4px 0px black;
	font-family: var(--fonte);
	font-size: 50px;
	font-weight: bold;
}

.btn_presupuesto{
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	padding: 10px;
	font-size: 23px;
	border-radius: 30px;
	width: 400px;
	height: 50px;
	margin: 15px auto 15px auto;
	background-color: var(--cor_azul);
}

.btn_presupuesto a{
	text-decoration: none;
	color: black;

}

#sessao1{
	width: 100%;
	height: auto;
	margin-bottom: 50px;
	background-color: var(--cor_sessao1);
}

#sessao2{
	width: 100%;
	height: auto;
	background-color: var(--cor_sessao2);
}

#sessao3{
	width: 100%;
	height: ;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow: auto;
	background-color:;
}

#sessao3 img{
	margin: 0px 3px;
	min-width: 400px;
	max-width: 400px;

	min-height: 400px;
	max-height: 400px;
}

#sessao2 h1{
	font-family: var(--fonte);
	margin-bottom: 40px;
	text-align: center;
	font-size: 44px;
}

#container_sessao1{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 720px;
	background-color: ;
}

.container{

	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	width: 440px;
	height: auto;
	margin: 3px;
	font-size: 24px;
	background-color: ;
}

#container_card_servicios{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	background-color: ;
}

#container_card_servicios a{
	text-decoration: none;
	color: var(--cor_dos_links);
}

.cards{
	display: flex;
	flex-direction: column;
	width: 200px;
	height: 190px;
	margin: 5px;
	background-color: ;
	transition: 0.5s;
}

.cards:hover{
	color: var(--cor_azul);
}

.cards .conteudo_cards{
	font-size: 24px;
	text-align: center;
	margin: 1px;
	width: 100%;
	height: auto;
	background-color: ;
}

.conteudo_cards img{
	height: 70px;
}

footer{
	background-color: #1c1c1c;
	color: white;
}

#container_card_footer{
	width: 100%;
	margin-bottom: 150px;
	display: flex;
	justify-content: center;
	/* background-color: red; */
}

.container_logo_rodape{
	width: 100%;
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	/* background-color: blue; */
}


#galeria{
	width: 100%;
	height: auto;
	padding: 20px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;

}

.container_imagem, .container_imagem img{
	width: 300px;
	height: 250px;
	border-radius: 5px;
}

.container_imagem{
	margin: 5px;
}

.container_imagem img{
	box-shadow: 0px 0px 8px #1c1c1c;
}

/* PARTE RESPONSIVA DO MOBILE, FOTOS DAS CATEGORIES AUMENTA DE TAMANHO EM DISPOSITIVOS MOBILE  */
/* FIZ O MEDIA SCREEN NO CSS GLOBAL PORQUE NO CSS MOBILE NÃO TÁ FUNCIONANDO */
@media screen and (max-width: 908px){
	.container_imagem, .container_imagem img{
		width: 100%;
		height: 330px;
		border-radius: 5px;
	}

	.container_imagem{
		margin-bottom: 20px;

	}
}
/* ============================================================================================ */