*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#ffffff;
color:#333;
}

/* HERO VIDEO */

.hero{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.video-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:-1;
}

.hero-content{
max-width:800px;
padding:20px;
}

.hero-content h1{
font-size:56px;
font-weight:700;
line-height:1.2;
margin-bottom:25px;
text-shadow:0 4px 15px rgba(0,0,0,0.6);
letter-spacing:1px;
}

.hero-content p{
font-size:20px;
line-height:1.7;
max-width:900px;
margin:auto;
margin-bottom:30px;
text-shadow:0 3px 10px rgba(0,0,0,0.5);
}

/* BOTÃO */

.btn{
display:inline-block;
margin-top:25px;
background:#ff6600;
color:white;
padding:15px 35px;
text-decoration:none;
border-radius:8px;
font-size:18px;
font-weight:bold;
transition:0.3s;
}

.btn:hover{
background:#e65c00;
}

/* CONTATO */

.contato-box{
display:flex;
justify-content:center;
gap:40px;
background:#f2f2f2;
padding:40px;
border-radius:15px;
max-width:1100px;
margin:-60px auto 0;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
flex-wrap:wrap;
}

.item{
text-align:center;
min-width:200px;
}

.item h3{
color:#ff6600;
margin-bottom:10px;
}

.item p{
font-size:18px;
}

/* RODAPÉ */

.rodape{
background:#111;
color:white;
padding:40px 20px;
margin-top:60px;
}

.rodape-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
}

.rodape-col{
min-width:220px;
}

.rodape-col h3{
color:#ff6600;
margin-bottom:15px;
}

.rodape-col p{
margin:6px 0;
}

.rodape-col a{
color:white;
text-decoration:none;
}

.rodape-col a:hover{
color:#ff6600;
}

.rodape-direitos{
text-align:center;
margin-top:30px;
border-top:1px solid #333;
padding-top:15px;
font-size:14px;
}

/* RESPONSIVO */

@media(max-width:768px){

.hero-content h1{
font-size:32px;
}

.hero-content p{
font-size:16px;
}

.contato-box{
flex-direction:column;
align-items:center;
}

}

/* RODAPÉ AVG */

.footer-avg{
background:#111;
color:white;
padding:60px 20px 30px;
margin-top:60px;
}

.footer-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
}

.footer-col h3{
color:#ff6600;
margin-bottom:20px;
font-size:18px;
}

.footer-col p{
margin:8px 0;
font-size:15px;
cursor:pointer;
}

.footer-col p:hover{
color:#ff6600;
}

.footer-copy{
border-top:1px solid #333;
margin-top:40px;
padding-top:20px;
text-align:center;
font-size:14px;
color:#bbb;
}

.footer-link{
color:#fff;
text-decoration:none;
}

.footer-link:hover{
color:#ff6600;
}

/* CORREÇÃO PARA MANTER ESPAÇO DO WHATSAPP */

.item-whatsapp{
visibility:hidden;
}

/* BOTÃO WHATSAPP FLUTUANTE */

#whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:14px 22px;
border-radius:50px;
display:none;
align-items:center;
gap:10px;
font-size:18px;
font-weight:bold;
text-decoration:none;
box-shadow:0 8px 25px rgba(0,0,0,0.3);
z-index:9999;
animation:pulse 2s infinite;
transition:0.3s;
}

#whatsapp-float svg{
width:24px;
height:24px;
}

#whatsapp-float:hover{
transform:scale(1.05);
background:#1ebe5d;
}

/* ANIMAÇÃO PULSANDO */

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.7);
}

70%{
box-shadow:0 0 0 20px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}