/* ==========================================================================
   VARIABLES Y CONFIGURACIÓN INICIAL
   ========================================================================== */
:root {
    /* Paleta Estricta Requerida */
    --crema-vainilla: #FFF8E7;
    /* Fondo principal y cajas */
    --marron-cacao: #4A3728;
    /* Textos y estructura */
    --rosa-merengue: #F4C2C2;
    /* Detalles y acentos visuales */
    --dorado-arequipe: #874701;
    /* Chocolate / acentos brownies */
    --verde-cta: #77ff97;
    --verde-cta-hover: #26d34f;

    /* Configuración Global y Mapeo */
    --primary-color: var(--dorado-arequipe);
    --primary-hover: #6b3801;
    --secondary-color: var(--crema-vainilla);
    --accent-color: var(--rosa-merengue);

    --bg-color: var(--crema-vainilla);
    --text-main: var(--marron-cacao);
    --text-light: var(--marron-cacao);
    --title-color: var(--marron-cacao);
    --white: var(--crema-vainilla);

    /* Tipografía */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Sombras y Radios */
    --shadow-sm: 0 4px 6px rgba(44, 30, 22, 0.05);
    --shadow-md: 0 10px 20px rgba(44, 30, 22, 0.08);
    --shadow-lg: 0 15px 30px rgba(216, 131, 115, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    padding-top: 0;
}

/* ==========================================================================
   COUNTDOWN URGENCY BAR
   ========================================================================== */
.countdown-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-110%);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}

.countdown-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.countdown-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.countdown-label i {
    margin-right: 6px;
    animation: countdownPulse 1.5s ease-in-out infinite;
}

@keyframes countdownPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.countdown-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 46px;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.2;
}

.countdown-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.85;
}

.countdown-separator {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 2px;
    animation: countdownPulse 1s ease-in-out infinite;
    margin-bottom: 14px;
}

.countdown-cta {
    display: inline-block;
    background: #ffffff;
    color: #DC2626;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.countdown-cta:hover {
    background: #FEE2E2;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .countdown-bar-inner {
        padding: 8px 12px;
        gap: 10px;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .countdown-number {
        font-size: 1.1rem;
        padding: 3px 7px;
        min-width: 36px;
    }

    .countdown-text {
        font-size: 0.5rem;
    }

    .countdown-separator {
        font-size: 1rem;
    }

    .countdown-cta {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .countdown-bar-inner {
        padding: 8px 10px;
        gap: 6px;
    }

    .countdown-label {
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }

    .countdown-number {
        font-size: 0.95rem;
        padding: 3px 6px;
        min-width: 32px;
    }

    .countdown-cta {
        display: none;
    }
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--title-color);
    line-height: 1.2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   BOTONES DORADOS (estilo video referencia)
   ========================================================================== */
a.btn-gold,
a.btn-gold:visited,
a.btn-gold:hover,
a.btn-gold:active,
.btn-gold {
    position: relative;
    display: inline-block;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #ECC04E 0%, #DFAF2E 45%, #C9951E 100%);
    color: #ffffff !important;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.3;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 8px 22px rgba(185, 138, 28, 0.42);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: box-shadow 0.25s ease;
    animation: ctaPulse 1.18s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: center;
    will-change: transform, box-shadow;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.btn-gold__inner {
    position: relative;
    z-index: 3;
    display: block;
    color: #ffffff;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 25%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0.08) 75%,
            transparent 100%);
    transform: skewX(-22deg);
    animation: btn-gold-shimmer 2.6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 2;
}

.btn-gold:hover {
    animation-play-state: paused;
    box-shadow: 0 12px 28px rgba(219, 170, 17, 0.52);
    color: #ffffff;
}

.btn-gold:active {
    animation-play-state: paused;
    transform: scale(0.98);
    box-shadow: 0 4px 14px rgba(219, 170, 17, 0.38);
}

.btn-gold--block {
    display: block;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.cta-block--offer {
    margin-bottom: 12px;
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(46, 158, 74, 0.08);
    border: 1px solid rgba(46, 158, 74, 0.22);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1E7A35;
    text-align: center;
    line-height: 1.35;
}

.social-proof-badge i {
    color: #2E9E4A;
    font-size: 0.9rem;
}

@keyframes btn-gold-shimmer {
    0% {
        left: -80%;
    }

    45% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(219, 170, 17, 0.25);
    }

    22% {
        transform: scale(1.018);
    }

    48% {
        transform: scale(1.035);
        box-shadow: 0 10px 34px rgba(219, 170, 17, 0.45);
    }

    74% {
        transform: scale(1.018);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(219, 170, 17, 0.25);
    }
}

/* Legacy alias — usar .btn-gold en su lugar */
.cta-button {
    animation: ctaPulse 1.18s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: center;
    will-change: transform, box-shadow;
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(180deg, #ECC04E 0%, #DFAF2E 45%, #C9951E 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(185, 138, 28, 0.42);
}

/* ==========================================================================
   HERO SECTION (ATENCIÓN)
   ========================================================================== */
.hero {
    background-color: var(--crema-vainilla);
    position: relative;
    padding: 100px 0 150px 0;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    width: 100%;
}

.badge {
    display: inline-block;
    background: rgba(198, 142, 75, 0.15);
    /* 15% opacity de Dorado Arequipe */
    color: var(--dorado-arequipe);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.badge i {
    margin-right: 6px;
    color: var(--dorado-arequipe);
}

.hero h1 {
    max-width: 820px;
    margin: 0 auto 20px;
    font-size: clamp(2.35rem, 5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    margin-top: 6px;
    color: var(--primary-color);
    font-size: 0.9em;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-details {
    margin: 0 auto 35px auto;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
    max-width: 450px;
    text-align: left;
}

.hero-details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.hero-details p:last-child {
    margin-bottom: 0;
}

.hero-details i {
    width: 25px;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.video-embed {
    position: relative;
    width: 100%;
    max-width: 715px;
    margin: 0 auto 30px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16 / 9;
}

/* Vturb maneja su propio tamaño — sin overflow ni aspect-ratio forzado */
.vturb-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px auto;
}


.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Thumbnail clickable (para previsualizaciones locales) */
.video-thumb-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.video-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    padding-left: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-thumb-link:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(185, 28, 28, 1);
}


.guarantee-text {
    margin-top: 0;
    font-size: 0.82rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.guarantee-text i {
    color: #2E9E4A;
    font-size: 0.78rem;
}

/* Fondo decorativo animado (Parallax) */
.floating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-bg i {
    position: absolute;
    color: var(--rosa-merengue);
    opacity: 0.45;
    display: block;
    will-change: transform;
}

.float-1 {
    top: 10%;
    left: 8%;
    font-size: 4rem;
}

.float-2 {
    top: 25%;
    right: 12%;
    font-size: 3rem;
    transform: rotate(15deg);
}

.float-3 {
    top: 55%;
    left: 18%;
    font-size: 5rem;
    transform: rotate(-10deg);
}

.float-4 {
    top: 75%;
    right: 15%;
    font-size: 4.5rem;
}

.float-5 {
    top: 40%;
    left: 5%;
    font-size: 2.5rem;
    transform: rotate(20deg);
}

.float-6 {
    top: 45%;
    right: 5%;
    font-size: 3.5rem;
    transform: rotate(-15deg);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    box-shadow: var(--shadow-md);
    border: 2px dashed #e8d8d0;
    text-align: center;
    padding: 20px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #e8d8d0;
}

/* Olas Inferiores */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-bottom .shape-fill {
    fill: var(--rosa-merengue);
}

/* ==========================================================================
   WHAT YOU LEARN (INTERÉS)
   ========================================================================== */
.what-you-learn {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 280px));
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

/* 5ª tarjeta sola en fila de 3 columnas: la centramos */
.modules-grid .module-card:nth-child(5) {
    grid-column: 2 / 3;
}

.module-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 194, 194, 0.3);
    /* Rosa Merengue transparente */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--rosa-merengue);
    font-size: 1.5rem;
    transition: var(--transition);
}

.module-card:hover .module-icon {
    background: var(--rosa-merengue);
    color: var(--marron-cacao);
}

.module-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 0 auto 20px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.module-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.module-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.highlight-card {
    border: 2px solid var(--primary-color);
    position: relative;
}

.bonus-alert {
    background: var(--rosa-merengue);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 5px solid var(--dorado-arequipe);
}

.bonus-alert i {
    font-size: 2rem;
    color: var(--primary-color);
}

.bonus-alert p {
    font-size: 1.05rem;
}

/* ==========================================================================
   INSTRUCTOR (DESEO)
   ========================================================================== */
.instructor {
    padding: 80px 0;
    background-color: var(--white);
}

.instructor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.instructor-text {
    width: 100%;
}

.instructor-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.instructor-text h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    margin-top: 28px;
    color: var(--title-color);
}

.instructor-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    text-align: left;
}

.instructor-signature {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem !important;
    color: var(--primary-color);
    margin-top: 30px;
    text-align: center !important;
}

.instructor-cta {
    margin-top: 30px;
}

/* Marco decorativo de la foto */
.instructor-frame {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 10px;
}

.instructor-frame::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--dorado-arequipe), var(--rosa-merengue), var(--dorado-arequipe));
    z-index: 0;
}

.instructor-frame::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 30px;
    border: 2px dashed var(--rosa-merengue);
    z-index: 0;
    opacity: 0.6;
}

.instructor-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 360px;
    height: 460px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.instructor-frame-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: linear-gradient(90deg, var(--dorado-arequipe), #b86200);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(135,71,1,0.35);
}

.instructor-frame-badge i {
    font-size: 0.7rem;
    opacity: 0.9;
}

.instructor-image {
    display: none; /* ya no se usa */
}


/* ==========================================================================
   OFFER & CTA (ACCIÓN)
   ========================================================================== */
.offer {
    padding: 100px 0;
    background-color: var(--crema-vainilla);
    text-align: center;
}

.offer h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.offer-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.offer-box {
    background: #ffffff;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 36px 28px 28px;
    box-shadow: 0 8px 32px rgba(74, 55, 40, 0.08);
    border: 1px solid rgba(74, 55, 40, 0.06);
    text-align: center;
}

.offer-box-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: #8B1A1A;
    margin-bottom: 22px;
    line-height: 1.3;
}

/* --- Inclusiones --- */
.offer-inclusions {
    background: #F7F6F4;
    border: 1px solid #E0DDD8;
    border-radius: 14px;
    padding: 18px 16px;
    margin-bottom: 16px;
    text-align: left;
}

.offer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.offer-list li:last-child {
    margin-bottom: 0;
}

.offer-list--value-stack li {
    margin-bottom: 14px;
}

.offer-value {
    color: #806e61;
    font-weight: 500;
}

.offer-total-value {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid #DDD9D3;
    color: #8B1A1A;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: right;
}

.offer-total-value strong {
    font-size: 1.2rem;
}

.offer-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: #2E9E4A;
    border-radius: 4px;
    color: #fff;
    font-size: 0.6rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.offer-divider {
    border: none;
    border-top: 1px solid #DDD9D3;
    margin: 12px 0;
}

/* --- Horario --- */
.offer-schedule {
    background: #FFF9EE;
    border: 1px solid #F0E4C8;
    border-left: 4px solid #C68E4B;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 16px;
    text-align: left;
}

.offer-schedule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #5C3D1E;
    font-size: 1rem;
}

.offer-schedule-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #C68E4B;
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.offer-schedule-times {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
}

.offer-schedule-times li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #5C3D1E;
    margin-bottom: 6px;
}

.offer-schedule-times li i {
    color: #C68E4B;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.offer-online-badge {
    display: inline-block;
    background: #FFF3D6;
    border: 1px solid #E8D5A8;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #7A5A20;
    letter-spacing: 0.3px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* --- Precio --- */
.offer-pricing {
    background: #FFF0F3;
    border: 1px solid #F5D0D8;
    border-radius: 14px;
    padding: 20px 16px;
    margin-bottom: 20px;
}

.offer-regular-price {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 4px;
}

.offer-regular-price s {
    color: #AAA;
}

.offer-launch-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #AAA;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.offer-main-price {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    color: #8B1A1A;
    line-height: 1;
    margin-bottom: 6px;
}

.offer-price-note {
    font-size: 0.78rem;
    color: #888;
}

/* --- CTA oferta usa .btn-gold --- */

.offer-trust-text {
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.offer-trust-text i {
    color: #2E9E4A;
    margin-right: 3px;
}

.offer-trust-highlight {
    color: #8B1A1A;
    font-weight: 600;
}

/* --- Garantía --- */
.offer-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #EDFAF0;
    border: 1px solid #B8E6C0;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.offer-guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    width: 36px;
    height: 36px;
    background: #2E9E4A;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.offer-guarantee-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1E7A35;
    margin-bottom: 4px;
}

.offer-guarantee-text {
    font-size: 0.78rem;
    color: #2E7D45;
    line-height: 1.45;
    margin: 0;
}

/* --- Badges de pago --- */
.secure-checkout {
    margin-top: 4px;
}

.secure-checkout img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Legacy offer styles (hero CTA still uses these) */
.offer-header h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.regular-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.offer-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--title-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.offer-price span {
    font-size: 3.5rem;
    color: var(--primary-color);
    display: block;
    margin-top: 5px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--marron-cacao);
    color: var(--crema-vainilla);
    padding: 60px 0 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--crema-vainilla);
    text-decoration: underline;
    opacity: 0.8;
    margin: 0 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--dorado-arequipe);
    opacity: 1;
}

.disclaimer {
    font-size: 0.75rem !important;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MÓVILES, TABLETs Y ESCRITORIO)
   ========================================================================== */
/* Tablet & Laptops pequeñas */
@media (max-width: 992px) {

    .hero-content,
    .instructor-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image,
    .instructor-image {
        margin-top: 40px;
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-details {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 30px auto;
    }

    .instructor-text h2,
    .instructor-text h3 {
        text-align: center;
    }

    .instructor-signature {
        text-align: center;
    }
}

/* Teléfonos grandes y Tablets verticales */
@media (max-width: 768px) {
    .hero {
        padding: 30px 0 100px 0;
    }

    .what-you-learn,
    .instructor,
    .offer {
        padding: 50px 0;
    }

    .section-title h2,
    .offer h2 {
        font-size: 2.2rem;
    }

    .offer-box {
        padding: 28px 20px 22px;
    }

    .offer-box-title {
        font-size: 1.25rem;
    }

    .offer-main-price {
        font-size: 3.2rem;
    }

    .modules-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        justify-content: center;
        gap: 20px;
    }

    .modules-grid .module-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 320px;
        justify-self: center;
    }

    .bonus-alert {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Teléfonos pequeños */
@media (max-width: 480px) {
    .hero h1 {
        max-width: 330px;
        font-size: 1.9rem;
        line-height: 1.12;
    }

    .hero .subtitle {
        font-size: 1.05rem;
    }

    .section-title h2,
    .offer h2 {
        font-size: 1.8rem;
    }

    .offer-box {
        padding: 24px 16px 20px;
    }

    .offer-box-title {
        font-size: 1.15rem;
    }

    .offer-main-price {
        font-size: 2.8rem;
    }

    .btn-gold {
        font-size: 0.88rem;
        padding: 16px 20px;
        letter-spacing: 0.4px;
    }

    .social-proof-badge {
        font-size: 0.75rem;
        padding: 7px 14px;
    }

    .offer-list li {
        font-size: 0.82rem;
    }

    .cta-button,
    .btn-gold {
        padding: 14px 18px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-details {
        padding: 15px;
    }

    .hero-details p {
        font-size: 0.95rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .modules-grid .module-card:nth-child(5) {
        grid-column: auto;
        max-width: 100%;
        justify-self: auto;
    }

    .instructor-frame {
        max-width: 240px;
    }

    .instructor-photo {
        max-width: 240px;
        height: 310px;
    }

}

/* ==========================================================================
   PURCHASE NOTIFICATION POPUP
   ========================================================================== */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px 14px 14px;
    max-width: 380px;
    width: calc(100% - 40px);
    opacity: 0;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    pointer-events: none;
    border-left: 4px solid var(--dorado-arequipe);
}

.purchase-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.purchase-notification.hide {
    opacity: 0;
    transform: translateX(-120%);
}

.notif-image {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--crema-vainilla);
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.4;
}

.notif-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--marron-cacao);
}

.notif-product {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.82rem;
    color: var(--dorado-arequipe);
}

.notif-location {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.78rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.notif-location i {
    color: var(--rosa-merengue);
    font-size: 0.7rem;
}

.notif-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
    transition: color 0.2s;
}

.notif-close:hover {
    color: #999;
}

/* Verified badge */
.notif-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.7rem;
    color: #4CAF50;
    margin-top: 1px;
}

.notif-verified i {
    font-size: 0.7rem;
}

@media (max-width: 480px) {
    .purchase-notification {
        bottom: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
        padding: 10px 14px 10px 10px;
        gap: 10px;
    }

    .notif-image {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .notif-name {
        font-size: 0.85rem;
    }

    .notif-product {
        font-size: 0.78rem;
    }

    .notif-location {
        font-size: 0.72rem;
    }
}

/* ======================================================================
   TESTIMONIOS
   ====================================================================== */
.testimonials {
    padding: 90px 0;
    background: linear-gradient(180deg, #fffdf7 0%, var(--crema-vainilla) 100%);
}

.testimonials-title {
    margin-bottom: 42px;
}

.testimonials-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--dorado-arequipe);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.testimonials-eyebrow i {
    color: #d65f79;
}

.testimonials-title > p {
    max-width: 720px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(135, 71, 1, 0.10);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(74, 55, 40, 0.08);
    transition: var(--transition);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -12px;
    right: 18px;
    color: rgba(244, 194, 194, 0.45);
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(74, 55, 40, 0.13);
}

.testimonial-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: #d49a22;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    line-height: 1;
}

.testimonial-source {
    color: #8d8178;
    font-size: 0.72rem;
    font-weight: 600;
}

.testimonial-card blockquote {
    position: relative;
    z-index: 1;
    flex: 1;
    color: var(--marron-cacao);
    font-size: 0.94rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(74, 55, 40, 0.10);
    background-color: transparent;
    color: var(--marron-cacao);
    text-align: left;
}

.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rosa-merengue), #eab1bb);
    color: var(--marron-cacao);
    font-size: 0.78rem;
    font-weight: 800;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author strong {
    color: var(--marron-cacao);
    font-size: 0.84rem;
    line-height: 1.35;
}

.testimonial-author small {
    margin-top: 2px;
    color: #8d8178;
    font-size: 0.74rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 65px 0;
    }

    .testimonials-title {
        margin-bottom: 32px;
    }

    .testimonials-title h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .testimonial-card {
        min-height: 0;
        padding: 24px;
    }
}

/* ======================================================================
   PREGUNTAS FRECUENTES
   ====================================================================== */
.faq-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--crema-vainilla) 0%, #fffdf7 100%);
}

.faq-title {
    margin-bottom: 42px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--dorado-arequipe);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-eyebrow i {
    color: #d65f79;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(135, 71, 1, 0.12);
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(74, 55, 40, 0.06);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 24px;
    color: var(--marron-cacao);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: var(--rosa-merengue);
    color: var(--marron-cacao);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
}

.faq-item[open] summary {
    color: var(--dorado-arequipe);
}

.faq-item[open] summary::after {
    content: '−';
    background: var(--dorado-arequipe);
    color: #ffffff;
}

.faq-answer {
    padding: 0 24px 22px;
    border-top: 1px solid rgba(74, 55, 40, 0.09);
}

.faq-answer p {
    padding-top: 16px;
    color: #69594e;
    font-size: 0.93rem;
    line-height: 1.7;
}

.faq-cta {
    max-width: 680px;
    margin: 48px auto 0;
    padding: 30px 26px 24px;
    background: linear-gradient(135deg, #fff5d9 0%, #fffaf0 100%);
    border: 1px solid rgba(212, 154, 34, 0.35);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(135, 71, 1, 0.10);
    text-align: center;
}

.faq-cta > p:first-child {
    color: var(--marron-cacao);
    font-size: 1.08rem;
    font-weight: 700;
}

.faq-cta .btn-gold {
    margin-top: 20px;
}

.faq-cta .guarantee-text {
    margin-top: 12px;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .bonus-card {
        padding: 34px 16px 24px;
    }

    .bonus-card__ribbon {
        max-width: calc(100% - 24px);
        padding: 6px 12px;
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
    }

    .bonus-card__header {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 22px;
    }

    .bonus-card__title-block {
        text-align: center;
    }

    .bonus-card__label {
        font-size: 0.62rem;
    }

    .bonus-card__title {
        font-size: 1.25rem;
    }

    .bonus-card__versions {
        flex-direction: column;
    }

    .bonus-version {
        padding: 18px 14px;
    }

    .bonus-version__divider {
        width: 100%;
        height: 34px;
        border-top: 1.5px solid rgba(135, 71, 1, 0.12);
        border-bottom: 1.5px solid rgba(135, 71, 1, 0.12);
        border-left: none;
        border-right: none;
    }

    .bonus-version strong {
        font-size: 0.92rem;
    }

    .bonus-version p {
        font-size: 0.8rem;
    }

    .faq-section {
        padding: 65px 0;
    }

    .faq-title {
        margin-bottom: 32px;
    }

    .faq-title h2 {
        font-size: 2rem;
    }

    .faq-item summary {
        padding: 18px 16px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 16px 18px;
    }

    .faq-answer p {
        font-size: 0.88rem;
    }

    .faq-cta {
        margin-top: 34px;
        padding: 24px 16px 20px;
    }
}

@media (max-width: 768px) {
    .bonus-card {
        width: 100%;
        max-width: 760px;
    }

    .bonus-card__ribbon {
        max-width: calc(100% - 24px);
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }

    .bonus-card__header {
        flex-direction: column;
    }

    .bonus-card__title-block {
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .bonus-card__versions {
        width: 100%;
        overflow: visible;
        flex-direction: column;
    }

    .bonus-version {
        width: 100%;
        min-width: 0;
    }

    .bonus-version strong,
    .bonus-version p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .bonus-version__divider {
        width: 100%;
        height: 34px;
        border-top: 1.5px solid rgba(135, 71, 1, 0.12);
        border-bottom: 1.5px solid rgba(135, 71, 1, 0.12);
        border-left: none;
        border-right: none;
    }

    .bonus-card__footer {
        line-height: 1.45;
    }

    .bonus-card .bonus-card__versions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    .bonus-card .bonus-version {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }

    .bonus-card .bonus-version__divider {
        width: 100% !important;
        flex: 0 0 34px !important;
    }
}
