:root {
    --primary: #4a1a28;
    --secondary: #c87a8a;
    --accent: #c87a8a;
    --accent-hover: #a85a6a;
    --dark: #4a1a28;
    --light: #fdf8f9;
    --text: #2a0a18;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--dark); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===================== HEADER ===================== */
.top-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: 0.5px; color: var(--primary); }
.logo h1 span { color: var(--secondary); }
.logo p { font-size: 0.72rem; color: #8a3a58; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; }

.btn-outline-light {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-outline-light:hover { background: var(--secondary); color: var(--white); }

/* ===================== HERO ===================== */
.hero {
    background: var(--dark);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(200,122,138,0.15);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(200,122,138,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(200,122,138,0.08) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text { text-align: left; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

.hero-photo img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 30px rgba(200,122,138,0.4);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(200,122,138,0.2);
    color: var(--secondary);
    border: 1px solid rgba(200,122,138,0.4);
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.hero h2 { color: var(--white); font-size: 2.4rem; max-width: 800px; margin: 0 0 20px; line-height: 1.2; }
.hero p { font-size: 1rem; max-width: 620px; margin: 0 0 30px; color: #a8d8d8; line-height: 1.7; }

.btn-primary-glow {
    background: var(--accent);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 0 25px rgba(200,122,138,0.4);
    transition: all 0.3s;
    display: inline-block;
}
.btn-primary-glow:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(200,122,138,0.5); }

.urgency-text { font-size: 0.85rem; color: #3a7a78; }
.urgency-text i { color: var(--secondary); margin-right: 4px; }

.trust-badge-bottom {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    border: 1px solid rgba(200,122,138,0.25);
}

/* ===================== SERVICES ===================== */
.services { padding: 90px 0; background: var(--white); }

.section-title { text-align: center; margin-bottom: 55px; }
.section-title h2 { font-size: 2.3rem; margin-bottom: 12px; color: var(--dark); }
.section-title p { color: #2a6a68; max-width: 680px; margin: 0 auto; font-size: 1rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
    background: var(--light);
    padding: 38px 28px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0d0d8;
    transition: all 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(200,122,138,0.12); }

.service-card.highlight {
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--secondary);
    transform: scale(1.04);
    box-shadow: 0 20px 45px rgba(26,58,58,0.2);
}
.service-card.highlight h3 { color: var(--white); }
.service-card.highlight p { color: #a8d8d8; }

.card-icon { font-size: 2.4rem; color: var(--secondary); margin-bottom: 18px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--dark); }
.service-card p { font-size: 0.92rem; color: #3a0a18; line-height: 1.6; }

/* ===================== FEATURES ===================== */
.features { padding: 90px 0; background: var(--primary); color: var(--white); }

.features-text h2 { color: var(--secondary); margin-bottom: 18px; font-size: 2.1rem; }
.features-text > p { color: #a8d8d8; margin-bottom: 10px; max-width: 720px; line-height: 1.7; }

.feature-list { list-style: none; margin: 30px 0; }
.feature-list li { margin-bottom: 18px; display: flex; align-items: flex-start; gap: 14px; color: #a8d8d8; font-size: 0.95rem; line-height: 1.65; }
.feature-list i { color: var(--secondary); font-size: 1.2rem; margin-top: 4px; flex-shrink: 0; }

.btn-primary { display: inline-block; background: var(--accent); color: var(--white); padding: 14px 36px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.3s; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.mt-4 { margin-top: 20px; }

/* ===================== CONTACT ===================== */
.contact { padding: 90px 0; background: var(--light); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 12px 45px rgba(0,0,0,0.05);
}

.contact-info h2 { font-size: 1.9rem; color: var(--dark); margin-bottom: 14px; }
.contact-info > p { color: #3a0a18; font-size: 0.95rem; line-height: 1.7; }

.info-item { display: flex; align-items: center; gap: 15px; margin-top: 20px; padding: 16px 18px; background: var(--light); border-radius: 12px; }
.info-item i { font-size: 1.8rem; color: var(--secondary); flex-shrink: 0; }
.info-item .fab.fa-whatsapp { color: #25d366; }
.info-item .fab.fa-instagram { color: #e1306c; }
.info-item h4 { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.info-item p { font-size: 0.93rem; color: #3a0a18; }

.contact-form-container h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--dark); margin-bottom: 22px; font-size: 1.15rem; }

.form-group { margin-bottom: 18px; }

input, select { width: 100%; padding: 14px 16px; border: 1.5px solid #f0d0d8; border-radius: 8px; outline: none; font-family: inherit; font-size: 0.95rem; color: var(--dark); transition: border-color 0.2s; background: var(--white); }
input:focus, select:focus { border-color: var(--secondary); }

.btn-submit { width: 100%; background: var(--secondary); color: var(--white); border: none; padding: 15px; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.3s; font-family: inherit; }
.btn-submit:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ===================== FOOTER ===================== */
footer { background: var(--dark); color: #8a3a58; padding: 40px 0; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 12px; }
footer .brand h3 { color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 1rem; margin-bottom: 4px; }
footer .brand span { color: var(--secondary); }
footer .brand p { font-size: 0.85rem; color: #8a3a58; }
.dev-credit { margin-top: 8px; font-size: 0.78rem; color: #6a1a38; }
.dev-credit a { color: var(--secondary); text-decoration: none; font-weight: 600; }
.dev-credit a:hover { opacity: 0.75; }

/* ===================== GALLERY ===================== */
.gallery { padding: 90px 0; background: var(--white); }

.carousel-wrapper { position: relative; display: flex; align-items: center; gap: 12px; }

.carousel-track-container { overflow: hidden; flex: 1; border-radius: 12px; }

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.carousel-item {
    min-width: calc(33.333% - 11px);
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.carousel-item:hover img { transform: scale(1.05); }

.carousel-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover { background: var(--accent-hover); }

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* ===================== BENEFITS ===================== */
.benefits { padding: 90px 0; background: var(--light); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0d0d8;
    transition: all 0.3s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(200,122,138,0.12); }

.benefit-icon { font-size: 2rem; color: var(--secondary); margin-bottom: 14px; }
.benefit-card h3 { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.benefit-card p { font-size: 0.88rem; color: #3a0a18; line-height: 1.6; }

/* ===================== VIDEOS ===================== */
.videos { padding: 90px 0; background: var(--light); }

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.videos-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }

.video-card video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* ===================== PROMO FECHAS ===================== */
.promo-fechas { padding: 80px 0; background: var(--light); }
.promo-img-wrapper { max-width: 700px; margin: 0 auto 32px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(74,26,40,0.12); }
.promo-img-wrapper img { width: 100%; display: block; }
.promo-cta { text-align: center; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .carousel-item { min-width: calc(100% - 0px); }
    .benefits-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .videos-grid--two { grid-template-columns: 1fr; }
    .video-card video { height: 220px; }
    .header-container { flex-direction: column; gap: 14px; text-align: center; }
    .top-header { position: relative; padding: 15px 10px; }
    .logo h1 { font-size: 1.1rem; }
    .hero { padding: 60px 0; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .hero-text { text-align: center; }
    .hero-actions { align-items: center; }
    .hero h2 { font-size: 1.75rem; margin: 0 auto 20px; }
    .hero p { font-size: 0.97rem; margin: 0 auto 30px; }
    .btn-primary-glow { width: 100%; text-align: center; font-size: 1rem; padding: 14px 20px; }
    .trust-badge-bottom { font-size: 0.78rem; padding: 10px 16px; margin: 20px auto 0; }
    .services-grid { grid-template-columns: 1fr; gap: 18px; }
    .service-card.highlight { transform: none; }
    .section-title h2 { font-size: 1.8rem; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; }
    .contact-info h2 { font-size: 1.6rem; }
    .features-text h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
    .hero h2 { font-size: 1.5rem; }
    .service-card { padding: 28px 18px; }
}
