/* ==============================
   LANDING PAGE — REMEDIOS NATURALES
   Mobile-First · Premium · Organic
   ============================== */

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-cream: #FAF8F5;
    --bg-warm: #F5F0EB;
    --bg-dark: #1A1A2E;
    --text-primary: #2C2C2C;
    --text-secondary: #555;
    --text-light: #888;
    --accent-green: #2D6A4F;
    --accent-green-light: #40916C;
    --accent-gold: #D4A843;
    --accent-gold-light: #E8C87A;
    --red-strike: #C0392B;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(212, 168, 67, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 17px;
    overflow-x: hidden;
}

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

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
}

em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--accent-green);
}

.section {
    padding: 60px 0;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    color: var(--accent-green);
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.section-headline {
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.25;
}

.section-sub {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--accent-green);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1A1A2E;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.4) saturate(1.2);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.08);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(45, 106, 79, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 168, 67, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 40px 20px;
}

/* === SCROLL IMAGE (EDUCATION) === */
.scroll-image-wrapper {
    max-width: 480px;
    margin: 0 auto 32px auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid rgba(212, 168, 67, 0.3);
}

.scroll-img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.scroll-img:hover {
    transform: scale(1.03);
}

/* === GUARANTEE SEAL IMAGE === */
.guarantee-seal-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    background: white;
    border-radius: 50%;
    padding: 6px;
    filter: drop-shadow(0 6px 18px rgba(212, 168, 67, 0.4));
    animation: float 3s ease-in-out infinite;
}

/* === FINAL CTA (with photo background) === */
.section-final {
    position: relative;
    background: linear-gradient(135deg, var(--accent-green), #1B4332);
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.section-final-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.88) 0%, rgba(45, 106, 79, 0.82) 100%);
}

.hero-title {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title em {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto 32px auto;
    line-height: 1.8;
}

.btn-scroll {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.btn-scroll:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(2px);
}

/* === VIDEO === */
.section-video {
    background: var(--bg-warm);
}

.video-wrapper {
    max-width: 720px;
    margin: 30px auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

/* Overlay que bloquea el click en el título de YouTube (parte superior) */
.video-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-placeholder:hover .play-btn {
    background: rgba(212, 168, 67, 0.5);
    transform: scale(1.1);
}

.video-fallback {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.6;
    font-weight: 500;
}

/* === EDUCATION === */
.section-education {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.editorial-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-primary);
    line-height: 1.35;
}

.section-education p {
    font-size: 1.1rem;
    margin-bottom: 22px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.education-highlight {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.06), rgba(45, 106, 79, 0.02));
    border-left: 4px solid var(--accent-green);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0;
}

.education-highlight h3 {
    font-size: 1.3rem;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.education-highlight p {
    color: var(--text-primary);
    margin-bottom: 0;
}

/* === PRODUCT === */
.section-product {
    background: var(--bg-cream);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.product-image {
    position: relative;
    text-align: center;
}

.bundle-img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
    transition: var(--transition);
}

.bundle-img:hover {
    transform: translateY(-6px) scale(1.01);
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.25));
}

.mockup-text {
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 20px;
}

.social-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.bubble {
    background: var(--white);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: var(--shadow-soft);
    animation: float 3s ease-in-out infinite;
}

.bubble-2 {
    animation-delay: 0.5s;
}

.bubble-3 {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* === BONUSES === */
.section-bonuses {
    background: var(--bg-warm);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-green-light);
}

.bonus-card-hero {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, var(--white), #FFFBF0);
}

.bonus-badge {
    display: inline-block;
    background: var(--accent-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.bonus-badge-hero {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.bonus-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.bonus-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.bonus-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.6;
}

.bonus-price {
    font-weight: 700;
    font-size: 1rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 10px;
}

.price-old {
    color: var(--red-strike);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-free {
    color: var(--accent-green);
    font-weight: 700;
}

.bonus-total {
    text-align: center;
    margin-top: 30px;
    font-size: 1.25rem;
    padding: 20px;
    background: var(--white);
    border: 2px dashed var(--accent-green);
    border-radius: var(--radius);
}

.bonus-total small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* === VALUE STACK RECEIPT === */
.value-stack {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease;
    gap: 16px;
}

.value-row:hover {
    background: rgba(45, 106, 79, 0.03);
}

.value-row-hero {
    background: linear-gradient(to right, rgba(212, 168, 67, 0.06), transparent);
    border-bottom: 2px solid rgba(212, 168, 67, 0.2);
}

.value-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.value-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-green-light);
    min-width: 36px;
    opacity: 0.4;
    font-family: 'Playfair Display', serif;
}

.value-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.value-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.value-info strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.value-info span {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.value-right {
    text-align: center;
    flex-shrink: 0;
    min-width: 72px;
}

.value-right del {
    display: block;
    font-size: 1rem;
    color: var(--red-strike);
    font-weight: 600;
    opacity: 0.8;
}

.free-tag {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.value-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.03);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.value-total-amount del {
    font-size: 1.1rem;
    color: var(--red-strike);
}

.value-you-pay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 28px;
    background: linear-gradient(135deg, var(--accent-green), #1B4332);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.3px;
}

.you-pay-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1;
}

/* === VALUE STACK CTA AREA === */
.value-stack-cta {
    text-align: center;
    padding: 28px 24px;
    background: rgba(45, 106, 79, 0.04);
    border-top: 1px solid rgba(45, 106, 79, 0.1);
}

.value-stack-cta .btn-cta {
    display: inline-block;
    width: auto;
    font-size: 1.05rem;
    padding: 18px 40px;
    max-width: 420px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(45, 106, 79, 0.4);
}

.value-stack-cta p {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

.section-lifestyle {
    padding: 0;
    overflow: hidden;
}

.lifestyle-banner {
    position: relative;
    max-height: 340px;
    overflow: hidden;
}

.lifestyle-banner img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: saturate(1.1) brightness(0.85);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(27, 67, 50, 0.7) 0%, rgba(27, 67, 50, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.lifestyle-quote {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    max-width: 400px;
    /* Constreñido al panel central de la imagen */
    margin: 0 auto;
    line-height: 1.4;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
    text-align: center;
}

/* === OFFER === */
.section-offer {
    background: linear-gradient(135deg, var(--bg-dark), #16213E);
    color: var(--white);
    padding: 80px 0;
}

.offer-box {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.offer-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.offer-original {
    font-size: 2.2rem;
    color: var(--red-strike);
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-original del {
    text-decoration-thickness: 3px;
}

.offer-today {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.offer-price {
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    text-shadow: var(--shadow-glow);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.offer-currency {
    font-size: 2rem;
    vertical-align: super;
}

.offer-metaphor {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-style: italic;
}

/* === CTA BUTTON === */
.btn-cta {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 0 #9E2F23, 0 15px 20px rgba(192, 57, 43, 0.4);
    transform: translateY(-2px);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.5);
}

.btn-cta:active {
    box-shadow: 0 2px 0 #9E2F23, 0 5px 10px rgba(192, 57, 43, 0.4);
    transform: translateY(4px);
}

.btn-cta-urgency {
    background: linear-gradient(135deg, var(--accent-gold), #C9963A);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.btn-cta-urgency:hover {
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.6);
}

.btn-cta-final {
    padding: 20px 56px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--accent-gold), #C9963A);
    box-shadow: 0 4px 25px rgba(212, 168, 67, 0.5);
    animation: pulse-gold 2s ease-in-out infinite;
    color: var(--bg-dark);
    font-weight: 800;
}

.btn-cta-final:hover {
    box-shadow: 0 8px 40px rgba(212, 168, 67, 0.7);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
    }

    50% {
        box-shadow: 0 4px 35px rgba(45, 106, 79, 0.7);
    }
}

.cta-micro {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 14px;
    text-align: center;
}

.section-offer .cta-micro,
.section-final .cta-micro {
    color: rgba(255, 255, 255, 0.5);
}

.section-urgency .cta-micro {
    color: var(--text-light);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.badge {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

/* === URGENCY === */
.section-urgency {
    background: var(--white);
    text-align: center;
    padding: 50px 0;
    border-top: 3px solid var(--accent-gold);
}

.urgency-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--red-strike);
    margin-bottom: 20px;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.timer-unit {
    background: var(--bg-dark);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 80px;
}

.timer-unit span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.timer-unit small {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.timer-sep {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-dark);
}

/* === TESTIMONIALS === */
.section-testimonials {
    background: var(--bg-cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.testimonial-stars {
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author small {
    color: var(--text-light);
}

/* === GUARANTEE === */
.section-guarantee {
    background: var(--bg-warm);
    text-align: center;
}

.guarantee-box {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--accent-gold-light);
}

.guarantee-seal {
    font-size: 3rem;
    margin-bottom: 12px;
}

.guarantee-box h2 {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 14px;
}

.guarantee-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === FAQ === */
.section-faq {
    background: var(--bg-warm);
    padding-top: 0;
}

.faq-item {
    margin-bottom: 8px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-green);
}

.faq-arrow {
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-question.open .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 24px 18px 24px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === FINAL CTA === */
.section-final {
    background: linear-gradient(135deg, var(--accent-green), #1B4332);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.final-quote {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.final-quote em {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.final-headline {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 32px;
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.8rem;
    line-height: 1.8;
}

.disclaimer {
    font-size: 0.75rem;
    margin-top: 8px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.35);
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* === NOTIFICATION === */
.notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    z-index: 999;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 320px;
    border-left: 4px solid var(--accent-green);
}

.notification.show {
    transform: translateX(0);
}

.notif-icon {
    font-size: 1.3rem;
}

/* === RESPONSIVE — TABLET === */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .section-headline {
        font-size: 2.2rem;
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-card-hero {
        grid-column: 1 / -1;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === RESPONSIVE — DESKTOP === */
@media (min-width: 960px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .editorial-title {
        font-size: 2.5rem;
    }

    .product-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bonus-card-hero {
        grid-column: auto;
    }

    .offer-price {
        font-size: 6rem;
    }
}

/* === VSL UNMUTE OVERLAY (transición suave) === */
.video-unmute-overlay {
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.video-unmute-overlay .unmute-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: #1A1A2E;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: pulse-sound 1.8s infinite;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

@keyframes pulse-sound {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
}

.video-unmute-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-top: 12px;
    animation: fade-in-sub 1s ease 1.5s both;
}

@keyframes fade-in-sub {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === CUSTOM PLAY OVERLAY === */
.vsl-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 5;
}

.vsl-play-overlay.active {
    opacity: 1;
}

.vsl-play-overlay .play-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    padding-left: 6px;
    /* Centrado óptico del triángulo */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* === CONTROLES VSL PERSONALIZADOS (Play/Pausa + Progreso Visual Seguro) === */
.vsl-custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    padding: 0 10px;
    z-index: 10;
    opacity: 0;
    /* Oculto por defecto hasta que el video empiece */
    transition: opacity 0.3s;
}

.video-wrapper:hover .vsl-custom-controls,
.vsl-custom-controls.active {
    opacity: 1;
    /* Mostrar al hacer hover o al estar activo */
}

.vsl-control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 0;
}

.vsl-progress-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    /* CRÍTICO: Previene clicks para que nadie adelante el video */
    pointer-events: none;
}

.vsl-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-green);
    width: 0%;
    /* Se actualiza vía JS */
    border-radius: 3px;
}

/* === RESPONSIVE EXTREMO (MÓVILES PEQUEÑOS < 480px) === */
@media (max-width: 480px) {
    .bonus-card {
        padding: 20px;
        /* Reducir padding en celulares para más espacio de lectura */
    }

    .value-row {
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .value-left {
        margin-bottom: 8px;
    }
}

/* ==============================
   CHATBOT WIDGET — Floating AI Chat
   ============================== */

/* Floating Trigger Button */
.chatbot-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.45);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(45, 106, 79, 0.6);
}

.chatbot-trigger svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.chatbot-trigger .chatbot-close-icon {
    display: none;
}

.chatbot-trigger.active .chatbot-open-icon {
    display: none;
}

.chatbot-trigger.active .chatbot-close-icon {
    display: block;
}

/* Notification Pulse */
.chatbot-trigger::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: 2px;
    right: 2px;
    border: 2px solid #fff;
    animation: chatPulse 2s ease-in-out infinite;
}

.chatbot-trigger.active::after {
    display: none;
}

@keyframes chatPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Chat Panel */
.chatbot-panel {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 370px;
    max-height: 520px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chatbot-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Chat Header */
.chatbot-header {
    background: linear-gradient(135deg, var(--accent-green), #1B4332);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.chatbot-header-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.chatbot-header-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Chat Messages Area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 340px;
    background: #f9f9f6;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(45, 106, 79, 0.3);
    border-radius: 4px;
}

/* Message Bubbles */
.chatbot-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
    animation: msgFadeIn 0.3s ease;
}

@keyframes msgFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-msg.bot {
    background: #fff;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.chatbot-msg.user {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

/* Typing Indicator */
.chatbot-typing {
    display: none;
    align-self: flex-start;
    padding: 10px 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.chatbot-typing.active {
    display: flex;
    gap: 4px;
}

.chatbot-typing span {
    width: 7px;
    height: 7px;
    background: var(--accent-green-light);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.chatbot-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chatbot-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }
}

/* Chat Input Area */
.chatbot-input-area {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.chatbot-input-area input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input-area input:focus {
    border-color: var(--accent-green);
}

.chatbot-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.chatbot-input-area button:hover {
    transform: scale(1.1);
}

.chatbot-input-area button svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .chatbot-panel {
        width: calc(100vw - 24px);
        right: 12px;
        bottom: 88px;
        max-height: 70vh;
    }

    .chatbot-trigger {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
}
}
