/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

h1 { font-size: 33px; }
h2 { font-size: 26px; }
h3 { font-size: 26px; }

.b-color { background: #A01013; display: table; }

header {
    background: rgba(255, 255, 255, .6);
    color: #fff;
    padding: 10px 0;
    position: fixed; /* Fixar o topo */
    top: 0;
    width: 100%;
    z-index: 1000;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 90px;
}

.menu ul {
    display: flex;
    list-style: none;
}

.menu ul li {
    margin: 0 15px; 
}

.menu ul li a {
    color: #fff; background: #ED0909; padding: 10px;
	border-radius: 9px;
    text-decoration: none;
    font-size: 18px;
}

.menu ul li a:hover {
    color: #000;
}

.contact-info p { color: #000; font-size: 19px; }

.contact-info h3 { color: #000; font-size: 23px; }

/*** Center ***/
center { width: 100%; margin: 0 auto; }

/* Estilo para seções */
section {
    height: 100vh;
    display: table;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    padding: 20px;
	margin-bottom: 60px;
	/*border-bottom: 2px solid #ccc;  linha abaixo da section*/
}
section p { font-size: 23px; }

/* Adicionando imagem de fundo para Área 1 */
#principal { width: 100%;
    background: url('../_img/_slider/slide-01.jpg') no-repeat center center; background-size: cover; /* Substitua pelo caminho da sua imagem */
}
.principal img { width: 100%; height: auto; display: table; }
.principal h1{ width: 60%; font-size: 29px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); color: #fff; background: rgba(0, 0, 0, .6); padding: 20px; margin: 20% 20% .3% 20%; border-radius: 9px; }
.principal p{ width: 60%; font-size: 19px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); color: #fff; background: rgba(0, 0, 0, .6); padding: 20px; margin: 1px 20%; border-radius: 9px; }
.principal h3{ width: 23%; font-size: 19px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); color: #000; background: rgba(45, 178, 0, .9); padding: 20px; margin: 5px auto; border-radius: 30px; }
.principal h3 img{ width: auto; float: left; margin: 0 6px; animation: pulse 1s; animation-iteration-count: infinite; }
.principal h3 a{ color: #000; }
.principal h3 a:hover{ color: #E10D11; }

/*vistoria */
.vistoria { width: 90%; float: left; display: table;  }
.vistoria img { font-size: 30%; margin: 10px 25px 10px 0; border-radius: 9px; float: left; }
.vistoria h1 { font-size: 39px; display: block; margin: 10px; }
.vistoria h2 { font-size: 29px; display: block; margin: 10px; }
.vistoria p { font-size: 19px; display: block; margin: 10px; }
/*vistoria */

/*servicos */
.serv    { width: 100%; display: table; }
.service { width: 90%; float: left; display: table; }
.service img { font-size: 30%; margin: 10px 25px 10px 0; border-radius: 9px; float: left; }
.service h1 { font-size: 39px; display: block; margin: 10px; color: #fff; }
.service h2 { font-size: 29px; display: block; margin: 10px; color: #fff; }
.service p { font-size: 19px; display: table; margin: 10px; color: #fff; }
/*servicos */

/*empresa */
.empresa h2 { font-size: 29px; color: #fff; }
.empresa h4 { font-size: 23px; color: #fff; }
.empresa { width: 90%; float: left; display: table; }
.empresa img { font-size: 30%; margin: 10px 25px 10px 0; border-radius: 9px; float: left; }
.empresa p { font-size: 19px; display: block; margin: 10px; color: #fff; }
/*empresa */

/*serviços */
#servicos h2 { font-size: 29px; color: #000; }
#servicos h4 { font-size: 23px; color: #000; }
.destaque { width: 30%; min-height: 500px; margin:1.3%; padding: 2%; border-radius: 5px; background: #EEE; text-align: center; float: left; display: block; }

.destaque:hover h3 { color: #000; }
.destaque img { width: 60%; border-radius: 5px; }
.destaque:hover img{ -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); }
.destaque h3 { font-size: 19px; color: #000; }
.destaque p { font-size: 17px; }
.servicos { width: 100%; float: left; display: flex; }
/*serviços */

/* Whatsapp */
.whatsapp { 
    position: fixed; width: 76px; height: 76px; margin: 0; padding: 0px; 
    right: 30px; bottom: 30px; display: table; z-index: 10000;
    box-shadow: 0 0 0 0px rgba(40,135,106,1); background: #fff; border-radius: 100%;
    animation: pulse 1s; animation-iteration-count: infinite;
}
.whatsapp img { width: 100%; padding: 20%; z-index: 100; }
/* Whatsapp */
/* Keyframe Whatsapp*/
@keyframes pulse {
    from { box-shadow: 0 0 0 0px rgba(40,135,106,1); }
    to { box-shadow: 0 0 0 45px rgba(40,135,106,0); }
}

@-webkit-keyframes pulse {
    from { box-shadow: 0 0 0 0px rgba(40,135,106,1); }
    to { box-shadow: 0 0 0 45px rgba(40,135,106,0); }
}
.whatsappb img { width: 152px; height: auto; position: fixed; margin: 0; padding: 0px; 
    right: 69px; bottom: 108px; display: table; z-index: 10; }
/* Keyframe Whatsapp*/

.contatos { width: 100%; text-align: center; display: table; background: #414B67; padding: 10%; }
.contatos h3 { width: 100%; height: auto; font-size: 29px; margin: 30px auto; }
.contatos left { width: 26%; height: 300px; float: left; }
.contatos img { width: 30%; margin: 0px 20px; float: left; display: table; }
.contatos left p { width: 45px; height: 300px; margin: 0px 20px; float: left; font-size: 21px; }
.cont { margin: 30px 30px; float: left; font-size: 21px; }
.cont a:hover{ color: #E10D11; } .cont a{ color: #000; }
.direitos {font-size: 15px; text-align: center; padding: 30px; }

/* Responsivo */
@media (max-width: 768px) {
	header {
	background: rgba(255, 255, 255, .9); }
	
	.logo img {
    height: 100%;
}
    .container {
        flex-direction: column;
        text-align: center;
    }
	
	.principal h1{ width: 95%; font-size: 23px; padding: 10px; margin: 60% 3% .3% 3%; }
    .principal p{ width: 95%; font-size: 15px; padding: 10px; margin: 1px 3%; }
	.principal h3{ width: 80%; }
	
	.visturia h1 { font-size: 29px; margin: 6px; }
    .visturia h2 { font-size: 19px; margin: 6px; }
	
	.contatos h3 { font-size: 21px; margin: 10px auto; }
	.contatos img { width: 90%; margin: 0px 20px; }
	.direitos {font-size: 19px; padding: 10px; }
    .menu ul {
        flex-direction: row; /* Menu lado a lado no mobile */
        margin-top: 10px;
    }

    .menu ul li {
        margin: 5px;
    }

    .contact-info p{
      width: 260px;  margin-top: 15px; float: left; font-size: 23px;
    }
	.contact-info h3{ display: none; }
	
	.service { width: 100%; float: left; display: table; }
    .service img { width: 98%; font-size: 30%; margin: 10px 5px 10px 0; }
	
	.destaque { width: 90%; min-height: 400px; padding: 1%; }

@media (max-width: 480px) {
	header {
	background: rgba(255, 255, 255, .9); }
	
    .logo img {
        height: 100%;
    }
    
	 .container {
        flex-direction: column;
        text-align: center;
    }
	
	.principal h1{ width: 95%; font-size: 23px; padding: 10px; margin: 60% 3% .3% 3%; }
    .principal p{ width: 95%; font-size: 15px; padding: 10px; margin: 1px 3%; }
	.principal h3{ width: 80%; }
	
	.visturia h1 { font-size: 29px; margin: 6px; }
    .visturia h2 { font-size: 19px; margin: 6px; }
	
	.contatos h3 { font-size: 21px; margin: 10px auto; }
	.contatos img { width: 90%; margin: 0px 20px; }
	.direitos {font-size: 19px; padding: 10px; }
	
    .menu ul li a {
        font-size: 12px;
    }

    .contact-info p{
      width: 260px;  margin-top: 15px; float: left; font-size: 23px;
    }
	.contact-info h3{ display: none; }
	
	.destaque { width: 90%; padding: 1%; }
}
