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

body{
font-family:'Montserrat',sans-serif;
background:#000;
color:#fff;
}

/* HEADER */
.header{
position:sticky;
top:0;
background:#000;
border-bottom:2px solid #FFD700;
padding:10px 5%;
z-index:1000;
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-main{font-size:1.8rem;font-weight:900}
.logo-sub{color:#FFD700}

.phone-link{color:#fff;text-decoration:none;font-weight:bold}
.status-247{color:#FFD700;font-size:.8rem}

/* HERO */
.hero{
height:85vh;
background:url('img/foto23.jpeg') center/cover no-repeat;
position:relative;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to right, rgba(0,0,0,0.85), transparent);
}

.hero-wrapper{
width:90%;
max-width:1200px;
margin:auto;
height:100%;
display:flex;
align-items:center;
}

.hero-card{
background:rgba(0,0,0,0.75);
padding:30px;
border-radius:12px;
max-width:420px;
backdrop-filter:blur(6px);
border:1px solid rgba(255,215,0,0.2);
animation:fadeUp 1s ease;
}

.hero-q{opacity:.8}
.hero-t{font-size:2.3rem;color:#FFD700;margin:10px 0}

.hero-items{list-style:none;margin-bottom:15px}
.hero-items li{margin-bottom:6px}

.hero-testimonial{
font-style:italic;
font-size:.9rem;
opacity:.8;
margin-bottom:15px;
border-left:3px solid #FFD700;
padding-left:10px;
}

.hero-buttons{display:flex;gap:10px}

.btn-primary{
background:#FFD700;
color:#000;
padding:12px 18px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
}

.btn-whatsapp{
background:#25D366;
color:#fff;
padding:12px 18px;
border-radius:8px;
text-decoration:none;
}

/* SEO */
.seo{padding:50px;text-align:center}

/* GALERIA */
.gallery{padding:50px}

.carousel{position:relative}

.track{
display:flex;
overflow-x:auto;
gap:20px;
scroll-behavior:smooth;
}

.track img{
min-width:280px;
height:280px;
object-fit:cover;
border-radius:12px;
transition:.3s;
}

.track img:hover{
transform:scale(1.1);
border:2px solid #FFD700;
}

.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#000;
color:#FFD700;
border:none;
font-size:2rem;
cursor:pointer;
padding:10px;
}

.left{left:0}
.right{right:0}

/* MAPA */
.map iframe{
width:100%;
height:300px;
border:none;
border-radius:10px;
}

/* SOCIAL */
.social{
text-align:center;
padding:40px;
}

.social a{
display:inline-flex;
align-items:center;
gap:10px;
text-decoration:none;
color:#fff;
border:1px solid #1877f2;
padding:10px 20px;
border-radius:50px;
}

.social img{width:20px}

/* WHATSAPP */
.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:30px;
}

/* FOOTER */
footer{
text-align:center;
padding:20px;
opacity:.6;
}

/* ANIMACION */
@keyframes fadeUp{
from{opacity:0;transform:translateY(20px)}
to{opacity:1;transform:translateY(0)}
}

