body{
background:#0b0b0b;
color:white;
font-family:'Manrope',sans-serif;
}

html{
scroll-behavior:smooth;
}

.hero{
min-height:100vh;
background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:30px;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
        to bottom,
        rgba(0,0,0,.75),
        rgba(0,0,0,.55),
        rgba(0,0,0,.85)
    );
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
}

.hero-logo{
width:250px;
margin:auto;
margin-bottom:20px;
}

.hero h1{
    font-size:clamp(2rem,5vw,5rem);
    font-weight:800;
    margin-bottom:20px;
    text-shadow:0 4px 20px rgba(0,0,0,.8);
}

.hero p{
font-size:1.2rem;
color:#d1d1d1;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.btn-gold{
background:#d4af37;
color:black;
padding:14px 28px;
border-radius:8px;
font-weight:700;
}

.btn-outline{
border:1px solid white;
padding:14px 28px;
border-radius:8px;
}

.section{
padding:90px 20px;
max-width:1400px;
margin:auto;
}

.dark{
background:#111;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:2.5rem;
font-weight:800;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.service-card{
    background:#141414;
    border:1px solid #222;
    border-radius:16px;
    padding:30px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    border-color:#d4af37;
}

.service-price{
    display:inline-block;
    background:#d4af37;
    color:#000;
    font-weight:800;
    font-size:1rem;
    padding:8px 16px;
    border-radius:999px;
    margin-bottom:20px;
}

.service-card h3{
    font-size:1.3rem;
    font-weight:800;
}

.service-subtitle{
    color:#d4af37;
    font-weight:600;
    margin-bottom:15px;
}

.service-description{
    color:#bcbcbc;
    margin-bottom:20px;
    line-height:1.6;
}

.service-list{
    display:flex;
    flex-direction:column;
    gap:8px;
    color:#ddd;
    margin-bottom:20px;
}

.service-note{
    color:#999;
    font-size:.9rem;
    margin-bottom:20px;
}

.btn-service{
    display:inline-block;
    background:#d4af37;
    color:#000;
    font-weight:700;
    padding:12px 24px;
    border-radius:10px;
    text-decoration:none;
}

.featured{
border:2px solid #d4af37;
}

.mini-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.mini-card{
background:#141414;
padding:25px;
border-radius:10px;
text-align:center;
}

.mini-price{
    display:inline-block;
    margin-bottom:15px;
    padding:8px 14px;
    background:linear-gradient(135deg,#f2ca50,#d4af37);
    color:#111;
    font-weight:800;
    font-size:.95rem;
    border-radius:999px;
    box-shadow:0 4px 12px rgba(242,202,80,.25);
}

.gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.gallery img{
width:100%;
border-radius:12px;
}

.benefits{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.benefits div{
background:#141414;
padding:20px;
border-radius:10px;
}

.form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.form input,
.form select,
.form textarea{
background:#181818;
padding:15px;
border-radius:10px;
}

footer{
padding:50px 20px;
text-align:center;
border-top:1px solid #222;
}

footer img{
width:180px;
margin:auto;
margin-bottom:20px;
}

.socials{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:20px;
}

.socials a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#d1d5db;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.socials a:hover{
    color:#f2ca50;
    transform:translateY(-2px);
}

.socials i{
    font-size:1.1rem;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
border-radius:50%;
background:#25D366;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
z-index:999;
}

@media(max-width:768px){

.gallery{
grid-template-columns:1fr;
}

.hero-buttons{
flex-direction:column;
}

}