*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

html, body{
width:100%;
overflow-x:hidden;
background:#f5f5f5;
}

/* HEADER */
header{
background:#1f0008;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
position:fixed;
width:100%;
z-index:1000;
}

.logo img{
height:60px;
border-radius:8px;
}

nav{
display:flex;
gap:10px;
flex-wrap:wrap;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
font-size:13px;
}

/* BANNER */
.hero{
height:100vh;
position:relative;
}

#banner{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:url("imagens/imagem81.jpg") center/cover no-repeat;
}

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:white;
text-align:center;
z-index:2;
width:90%;
}

/* BOTÃO */
.btn{
background:#d4af37;
padding:14px 25px;
color:black;
text-decoration:none;
border-radius:30px;
font-weight:bold;
display:inline-block;
}

/* SEÇÕES */
.section{
padding:80px 15px;
text-align:center;
}

/* SERVIÇOS */
.dark{
background:#2a2a2a;
color:white;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:12px;
margin-top:20px;
}

.card{
background:white;
padding:15px;
border-radius:10px;
color:#1f0008;
font-weight:bold;
}

/* GALERIA */
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
gap:8px;
margin-top:20px;
}

.gallery img{
width:100%;
height:120px;
object-fit:cover;
border-radius:8px;
}

/* PREMIAÇÕES (SEM CORTAR) */
.premios{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:20px;
}

.premio img{
width:100%;
max-width:320px;
height:auto;
object-fit:contain;
border-radius:10px;
display:block;
margin:auto;
}

/* WHATSAPP */
.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25d366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
z-index:9999;
text-decoration:none;
animation: pulse 1.5s infinite;
}

@keyframes pulse{
0%{transform:scale(1);}
70%{transform:scale(1.08);}
100%{transform:scale(1);}
}

/* FOOTER */
footer{
background:#1f0008;
color:white;
text-align:center;
padding:20px;
}