body{
margin:0;
font-family:'Inter',sans-serif;
background:#0b0c10;
color:#f1f1f1;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

.site-header{
position:sticky;
top:0;
background:#07080c;
border-bottom:1px solid rgba(255,255,255,0.06);
z-index:999;
}

.nav-wrap{
display:flex;
justify-content:space-between;
align-items:center;
height:80px;
}

.brand-logo{
height:85px;
width:auto;
object-fit:contain;
filter:
drop-shadow(0 12px 28px rgba(0,0,0,0.65))
drop-shadow(0 0 14px rgba(202,163,93,0.22));
transition: all 0.35s ease;
}

.brand-logo:hover{
transform: scale(1.05);
}
.site-nav a{
margin-left:30px;
text-decoration:none;
color:#ddd;
font-weight:500;
}

.nav-cta{
border:1px solid #caa35d;
padding:10px 18px;
border-radius:25px;
}

/* HERO */

.hero{
padding:120px 0;
background:radial-gradient(circle at top right,#2d8b8b20,#000000);
}

.hero-grid{
display:grid;
grid-template-columns:1.2fr 0.8fr;
gap:40px;
align-items:center;
}

.eyebrow{
color:#caa35d;
letter-spacing:2px;
font-size:14px;
margin-bottom:20px;
}

.hero h1{
font-size:64px;
line-height:1.1;
margin-bottom:20px;
}

.hero-text{
color:#b9c0c8;
font-size:18px;
margin-bottom:30px;
}

.hero-actions .btn{
margin-right:15px;
}

.btn{
padding:14px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.btn-gold{
background:linear-gradient(45deg,#caa35d,#e2ba72);
color:#111;
}

.btn-outline{
border:1px solid #999;
color:#fff;
}

.hero-points{
display:flex;
gap:15px;
list-style:none;
padding:0;
margin-top:20px;
}

.hero-points li{
background:#11151a;
padding:10px 16px;
border-radius:20px;
font-size:14px;
}

/* CARD */

.hero-card{
background:#11151a;
padding:30px;
border-radius:20px;
border:1px solid rgba(255,255,255,0.06);
}

.card-label{
color:#2d8b8b;
letter-spacing:1px;
font-size:13px;
margin-bottom:10px;
}

/* SECTIONS */

.section{
padding:100px 0;
}

.section-dark{
background:#0f1319;
}

.section-accent{
background:linear-gradient(45deg,#2d8b8b20,#caa35d20);
}

.section-tag{
color:#caa35d;
letter-spacing:2px;
font-size:13px;
margin-bottom:10px;
}

.two-col{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.cards-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.info-card{
background:#12161d;
padding:25px;
border-radius:18px;
border:1px solid rgba(255,255,255,0.05);
}

.timeline{
display:grid;
gap:20px;
}

.timeline-item{
background:#12161d;
padding:25px;
border-radius:18px;
}

.faq-item{
background:#12161d;
padding:25px;
border-radius:18px;
margin-bottom:15px;
}

.contact-section{
background:#0f1319;
}

.contact-card{
margin-top:20px;
}

.contact-card span{
display:block;
color:#caa35d;
margin-bottom:5px;
}

.contact-card a{
color:#fff;
text-decoration:none;
}

.site-footer{
background:#07080c;
padding:30px;
text-align:center;
}

/* FLOAT WHATSAPP */

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:18px;
border-radius:50%;
text-decoration:none;
font-weight:bold;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-grid,
.two-col{
grid-template-columns:1fr;
}

.cards-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:42px;
}

.site-nav{
display:none;
}

}