:root {
    --primary: #3F65E8;       /* royal blue */
    --primary-ink: #2E4BC2;
    --secondary: #fefea2;     /* pastel yellow */
    --secondary-2: #fefea2;   /* softer yellow */
    --paper: #EFE9DC;         /* cream */
    --ink: #0A0A0A;
    --ink-soft: #1b1b1b;
    --muted: #6b6b6b;
    --white: #ffffff;
    --coral: #ff5757;         /* price accent */
    --violet: #B08CE8;
    --title-scale: 1;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- TYPE ---------- */
.display {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 0.95;
    text-transform: uppercase;
}
.serif-italic {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 400;
}

/* ---------- NAV ---------- */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: var(--white);
    border-bottom: 1px solid #0000000d;
    padding: 18px 48px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}
.nav-links {
    display: flex; gap: 48px; align-items: center;
    font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    width: 100%; justify-content: space-between; max-width: 1100px; margin: 0 auto;
}
.nav-links a { position: relative; padding: 6px 2px; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.crea {
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    padding: 8px 22px;
}
.nav-links a.crea:hover { background: var(--ink); color: var(--white); }
.nav-burger { display: none; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    background: #b4c5d3; /* placeholder tone */
    overflow: hidden;
    display: flex;
    align-items: end;
    padding: 0;
}

.hero-mobile, .mobile {
    display: none;
}
.hero-img {
    height: 100%;
    position: absolute;
}

.hero-inner {
    position: relative; z-index: 2;
    width: 100%;
    max-width: 1920px; margin: 0 auto;
    padding: 80px 48px 100px;
}
.hero-title {
    font-size: clamp(64px, 10.5vw, 168px);
    color: var(--secondary);
    text-shadow: 0 6px 0 #00000015;
    margin: 0 0 22px;
    transform-origin: left bottom;
}
.hero-sub {
    display: inline-block;
    font-family: Aileron, Arial, sans-serif;
    background: var(--primary);
    color: var(--white);
    font-weight: 500;
    font-size: clamp(15px, 1.5vw, 35px);
    padding: 10px 18px;
    line-height: 1.3;
    max-width: 1920px;
    border-radius: 10px;
}
.hero-sub b { font-weight: 800; }
.hero-cta-row {
    margin-top: 36px;
    display: flex; justify-content: flex-end;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 36px;
    border-radius: 999px;
    font-weight: 800; font-size: 14px; letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, background .2s, color .2s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 2px solid black;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px #0003; }
.btn:active { transform: translateY(0); }
.btn-white { background: var(--white); color: var(--ink); animation: pulse-white 2.4s ease-in-out infinite; font-size: clamp(16px, 1.5vw, 40px); }
.btn-white:hover { background: var(--ink); color: var(--white); animation: none; }
.btn-primary {
    padding: 25px 25px 25px 25px;
    background: var(--primary);
    color: var(--white);
    animation: pulse-primary 2.4s ease-in-out infinite;
    font-size: clamp(16px, 1.5vw, 40px);
    line-height: 1.1em;
    text-align: center;
}
.btn-primary:hover { background: var(--primary-ink); animation: none; }
.btn-yellow {
    padding: 25px 25px 25px 25px;
    background: var(--secondary);
    color: var(--ink);
    border: 2px solid var(--ink);
    animation: pulse-yellow 2.4s ease-in-out infinite;
    font-size: clamp(16px, 1.5vw, 40px); }
.btn-yellow:hover { background: var(--ink); color: var(--secondary); animation: none; }

@keyframes pulse-white {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6), 0 8px 20px -10px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 0 0 14px rgba(255,255,255,0), 0 8px 20px -10px rgba(0,0,0,0.2); }
}
@keyframes pulse-primary {
    0%, 100% { box-shadow: 0 0 0 0 rgba(63,101,232,0.55), 0 8px 20px -10px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 0 0 14px rgba(63,101,232,0), 0 8px 20px -10px rgba(0,0,0,0.2); }
}
@keyframes pulse-yellow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251,242,122,0.75), 0 8px 20px -10px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 0 0 14px rgba(251,242,122,0), 0 8px 20px -10px rgba(0,0,0,0.2); }
}

/* ===================== EMOJIS ANIMADOS ===================== */
.emoji-bounce { display: inline-block; animation: emoji-bounce 2.2s ease-in-out infinite; transform-origin: center bottom; }
.emoji-shake  { display: inline-block; animation: emoji-shake 2.5s ease-in-out infinite; transform-origin: center center; }
.emoji-float  { display: inline-block; animation: emoji-float 3s ease-in-out infinite; }
.emoji-rotate { display: inline-block; animation: emoji-rotate 4s linear infinite; }
.emoji-wobble { display: inline-block; animation: emoji-wobble 2.8s ease-in-out infinite; transform-origin: center bottom; }

@keyframes emoji-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes emoji-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-12deg); }
    75% { transform: rotate(12deg); }
}
@keyframes emoji-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}
@keyframes emoji-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes emoji-wobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-8deg) scale(1.05); }
    75% { transform: rotate(8deg) scale(1.05); }
}

/* Aplicar animaciones automáticamente a los emojis dentro de bubbles e include-cards
.include-card:nth-child(3n+1) .em img { animation: emoji-float 2.8s ease-in-out infinite; }
.include-card:nth-child(3n+2) .em img { animation: emoji-wobble 3s ease-in-out infinite; }
.include-card:nth-child(3n+3) .em img { animation: emoji-bounce 2.6s ease-in-out infinite; }*/

/* ===================== IFRAME GHL WRAPPER ===================== */
.ghl-iframe-wrapper {
    margin: 30px auto 0;
    padding: 0 20px;
    width: 100%;
}

.waitlist-hand {
    display: inline-block;
}

/* ---------- BANNER STRIP ---------- */
.strip {
    background: var(--secondary);
    padding: 44px 32px;
    text-align: center;
}
.strip h2 {
    margin: 0; font-size: clamp(20px, 3.4vw, 60px);
    line-height: 1.15; letter-spacing: -0.01em;
    font-family: 'Poppins', sans-serif; text-transform: uppercase;
    color: var(--primary);
    margin: 0 auto;
}
.strip h2 em {
    font-family: 'Poppins', serif; font-style: italic; font-weight: 400;
    color: var(--ink); text-transform: none; letter-spacing: 0;
}

/* ---------- PROBLEMS ---------- */
.problems {
    background: var(--primary);
    color: var(--white);
    padding: 80px 32px 100px;
    position: relative;
}
.problems-title {
    max-width: 1400px;
    margin: 0 auto 56px;
    border: 3px solid var(--secondary);
    border-radius: 4px;
    padding: 22px 30px;
    font-size: clamp(20px, 4vw, 70px);
    justify-content: center;
    display: flex; align-items: center; gap: 2px; flex-wrap: wrap;
}
.problems-title .hl {
    background: var(--secondary); color: var(--ink);
    padding: 4px 4px;
    font-family: 'Poppins', sans-serif;
    font-style: italic; font-weight: 400; text-transform: none;
}
.bubbles { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    animation-fill-mode: both;
}
.emoji.right { left: 97%  !important;}
.bubble .text {
    flex: 1;
    max-width: 900px;
    background: var(--white);
    color: var(--ink);
    padding: 18px 28px;
    border-radius: 36px;
    font-size: 25px;
    line-height: 1.45;
    text-align: center;
}
.bubble .emoji {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    position: absolute;
    left: -30px;
    top: 15px;
}
.bubble .emoji img { width: 68px; height: 68px; }

/* ---------- DISCOUNT BAND ---------- */
.discount {

    position: relative;
    min-height: 63vh;
    background: #2a2a2a;
    overflow: hidden;
    display: flex; align-items: center;
    display: flex;
    flex-direction: column;
}

.discount-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    align-content: center;
    padding: 10px 48px;
}

.discount-bg-image {
    position: absolute;
    width: 100%;
    object-fit: cover;
}

.discount-banner {
    background: white;
    border: 2px solid black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.discount-emoji {
    height: 64px;
    width: 64px;
}

.discount-banner h3{
    margin: 10px 10px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2.5vw, 3.5rem);
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
    line-height: 1em;
    text-transform: uppercase;
    color: var(--ink) !important;

}
.h3-sub {
    font-weight: normal;
    font-size: clamp(14px, 2vw, 2em);
}
.discount h3 {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 4.4vw, 70px);
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
}
.discount h3 .hl {
    background: var(--secondary); color: var(--ink);
    padding: 0px 14px;
}
.discount-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 60%;
    transform: translateX(-50%);
    margin-top: 100px;
}
.money-img {
    width: 70px;
    height: 70px;
    position: relative;
    left: 20px;
    z-index: 2;
}

/* ---------- WHAT INCLUDES ---------- */
.includes {
    background: var(--secondary);
    padding: 90px 32px 110px;
    text-align: center;
}
.includes h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4.6vw, 90px);
    line-height: 1; text-transform: uppercase;
    margin: 0 0 64px;
}
.include-grid {
    max-width: 1500px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 40px;
}
.include-card { text-align: center; }
.include-label {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 2vw, 30px);
    color: var(--secondary);
    padding: 6px 18px;
    display: inline-flex; align-items: center; gap: 10px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: bold;
    position: relative;
}
.include-card:nth-child(1) .include-label { background: var(--primary); }
.include-card:nth-child(2) .include-label { background: var(--coral);  }
.include-card:nth-child(3) .include-label { background: var(--violet);  }
.include-card:nth-child(4) .include-label { background: #4CC38A;  }
.include-card:nth-child(5) .include-label { background: #F38DB8;  }
.include-card:nth-child(6) .include-label { background: var(--primary);  }
.include-label .em { font-size: 0.8em; }
.include-label .em img { width: 1.5em; height: 1.5em; display: inline-block;
    position: absolute; top: -0.5em}
.include-body { font-size: 18px; line-height: 1.5; max-width: 100%; margin: 0 auto; color: var(--ink); }
.include-body b { font-weight: 700; }

/* ---------- METHODOLOGY ---------- */
.method {
    background: linear-gradient(180deg, #CBD7F2 0%, var(--primary) 100%);
    padding: 90px 32px 110px;
    text-align: center;
    position: relative;
}
.method h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.8vw, 70px);
    line-height: 1.1; text-transform: uppercase;
    display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
    margin: 0 0 60px;
}
.method h2 .l1 { background: var(--ink); color: var(--white); padding: 8px 18px; }
.method h2 .l2 { display: flex; align-items: center; gap: 5px; font-size: 0.72em; color: var(--ink); text-transform: none; font-weight: 400;   font-family: "Libre Baskerville", serif; }
.method h2 .l2 .hl { background: var(--secondary); padding: 4px 4px; font-family: 'Poppins'; font-style: normal; font-size: 1.05em; font-weight: bold }
.method-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 28px;
}
.method-card {
    background: var(--white);
    border-radius: 28px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    box-shadow: 0 8px 22px -12px #0003;
    position: relative;
    transition: transform .2s ease;
}
.method-card:hover { transform: translateY(-4px) rotate(-.3deg); }
.method-icon {
    width: 85px;
    position: absolute;
    top: -35px;
    display: grid;
    place-items: center;
    font-size: 32px;
}
.ficon {
    width: 120px !important;
    top: -50px !important;
}
.method-body { font-size: 20px; line-height: 1.5; padding-top: 30px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: linear-gradient(180deg, var(--paper) 0%, var(--secondary-2) 100%);
    padding: 90px 32px 40px;
    text-align: center;
}
.testimonials h2 {
    display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 3.6vw, 44px);
    text-transform: uppercase;
    margin: 0 0 60px;
}
.testimonials h2 .l1 {
    background: var(--secondary);
    padding: 20px 22px; transform:
        rotate(5deg);
    border: 2px solid var(--ink);
    font-size: clamp(20px, 3.6vw, 70px); }
.testimonials h2 .l2 {
    background: var(--primary);
    color: var(--white);
    padding: 6px 22px;
    text-transform: none;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 0;
    z-index: 2;
    position: relative;
    left: 80px;
    border: 2px solid black;
}
.testimonials h2 .l2 b { font-weight: 800; }
.testimonials h2 .l3 {
    background: var(--white);
    color: var(--primary);
    padding: 6px 22px;
    text-transform: none;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: clamp(16px,0.70em,40px);
    letter-spacing: 0;
    max-width: 1200px;
    border: black 2px solid;
    line-height: 1em;
    z-index: 2
}

.testimonial-sticker {
    width: 70px;
    position: relative;
    top: -30px;
    z-index: 2;
}
.tsl {
    left: 3em;
    rotate: -8deg;
}
.tsr {
    rotate: 8deg;
    right: 3em;
}
.testimonial-text {
    margin-top: 50px;
    justify-content: center;
    display: flex;
}

.testimonials-sticker {
    width: 150px;
    position: absolute;
    align-content: center;
    top: -1em;
    left: 7.4em;
}
.phones {
    max-width: 1150px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
}
.phone {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.phone-frame {
    aspect-ratio: 9 / 19;
    width: 100%; max-width: 170px;
    border: 3px solid var(--ink);
    border-radius: 28px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease;
}
.phone-frame::before {
    content: ""; position: absolute;
    top: 10px; left: 50%; transform: translateX(-50%);
    width: 60%; height: 22px;
    background: var(--ink);
    border-radius: 0 0 14px 14px;
}
.phone-screen {
    position: absolute; inset: 40px 8px 8px;
    background: repeating-linear-gradient(135deg, #eaeaea 0 10px, #e2e2e2 10px 20px);
    border-radius: 18px;
    display: grid; place-items: center;
    color: #999; font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .1em;
}
.phone-frame:hover { transform: translateY(-6px) rotate(-1deg); }
.phone-label {
    font-family: "Libre Baskerville", serif;
    font-size: 16px;
    color: var(--ink);
}
.testimonial-cta { margin-top: 50px; }

/* ---------- LOGRARAS ---------- */
.logras {
    background: var(--paper);
    padding: 90px 32px 110px;
    text-align: center;
}
.logras h2 {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--primary); color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(23px, 3.2vw, 70px);
    padding: 30px 28px;
    margin: 0 auto 50px;
    position: relative;
    font-weight: normal;
}
.logras h2 .hl { color: var(--secondary); font-weight: 900; }
.logras-list {
    max-width: 780px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 20px;
}
.logra-item {
    background: var(--secondary-2);
    border: 2px solid var(--primary);
    border-radius: 999px;
    padding: 18px 40px;
    font-size: 20px; line-height: 1.5;
    text-align: center;
    font-family: 'Alieron', sans-serif;
}
.logra-item b { font-weight: 700; }
.logras-cta { margin-top: 50px; }

.logra-sticker {
    width: 150px;
    position: absolute;
    align-content: center;
    top: -0.5em;
    left: 13.3em;
}

/* ---------- PRICING ---------- */
.pricing {
    background: var(--primary);
    color: var(--white);
    padding: 90px 32px 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing h2 {
    display: inline-block;
    border: 2.5px solid var(--secondary);
    border-radius: 999px;
    padding: 25px 60px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(25px, 3.4vw, 70px);
    color: var(--secondary);
    margin: 0 0 60px;
    font-weight: normal;
    text-transform: uppercase;
}
.pricing h2 b {font-weight: 900 }
.price-row {
    max-width: 820px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.price-card {
    background: var(--white);
    color: var(--ink);
    border-radius: 20px;
    padding: 44px 28px 36px;
    position: relative;
    box-shadow: 0 10px 28px -14px #0005;
    transition: transform .25s ease;
}
.price-card:hover { transform: translateY(-6px); }

.price-strike {
    position:absolute;
    width: 120px;
    left:55%;
    top: 20px;
    transform: translateX(-50%);
}
.price-tag {
    z-index: 2;
    position: absolute;
    top: -30px;
    left: 60%;
    transform: rotate(6deg);
    background: var(--secondary);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(25px, 2vw,30px);
    line-height: 1em;
    padding: 8px 22px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid var(--ink);
    white-space: nowrap;
}
.price-card.offer .price-tag {
    background: var(--coral);
    color: var(--white);
    border-color: var(--ink);

}
.price-value {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: clamp(84px, 6vw, 84px);
    line-height: 1;
}

.price-card.offer .price-value { color: var(--coral); }
.price-unit {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    margin-top: 6px;
}
.price-card.offer .price-unit { color: var(--coral); }
.price-note {
    max-width: 740px; margin: 40px auto 0;
    font-size: clamp(18px, 1.6vw, 30px);
    line-height: 1.5;
}
.price-note b {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}
.price-cta { margin-top: 28px; display: flex; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap; }
.price-portrait {
    width: 200px; height: 200px;
    background-image: url('/images/elite.gif');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-6deg);
    box-shadow: 0 8px 16px #0005;
    flex-shrink: 0;
}

/* ---------- HASTA CUANDO ---------- */
.hasta {
    background: var(--secondary);
    padding: 80px 32px 70px;
    text-align: center;
}
.hasta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 3.2vw, 70px);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 24px;
    color: var(--ink);
}
.hasta .tag {
    display: inline-block;
    background: var(--primary); color: var(--white);
    padding: 25px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3.2vw, 60px);
    transform: rotate(-2deg);
    margin-bottom: 20px;
    font-weight: 700;
}
.hasta .serif-italic {
    font-family: 'Libre Baskerville', sans-serif;
    font-size: clamp(20px, 2.2vw, 50px);
    line-height: 1.2em;
    max-width: 900px;
    margin: 0px auto;
}
.hasta-cat {
    display: inline-block; margin-left: 12px;
    width: 200px; height: 150px;
    vertical-align: middle;
    background-image: url('/images/cat.gif');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(6deg);
}

/* ---------- CURRICULUM ---------- */
.curriculum {
    background: var(--primary);
    padding: 0px 0px 100px;
    color: var(--white);
}
.curriculum h2 {
    max-width: 100%;
    margin: 0 auto 40px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.8vw, 70px);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    padding: 16px 24px;
    background: var(--primary-ink);
}
.week-tabs {
    max-width: 1050px; margin: 0 auto 24px;
    display: flex; gap: 18px; flex-wrap: wrap;
    justify-content: left;
}
.week-tab {
    background: var(--secondary);
    color: var(--ink);
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: clamp(18px, 2.2vw, 35px);
    text-transform: uppercase;
    border: 2px solid var(--ink);
    transition: transform .2s ease;
}
.week-tab:hover { transform: translateY(-2px); }
.week-tab[aria-selected="true"] { background: var(--ink); color: var(--secondary); }
.week-panels {
    max-width: 1050px; margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
}
.week-panel { display: none; }
.week-panel[data-active="true"] { display: block; }
.day {
    background: var(--secondary);
    margin-bottom: 0;
}
.day-header {
    background: var(--primary-ink);
    color: var(--white);
    padding: 14px 28px;
    font-weight: 800;
    font-size: 20px;
    font-family: 'Alieron', sans-serif;
    letter-spacing: 0.06em;
    text-align: left;
    border-bottom: 2px solid var(--ink);
}
.day-header .fecha {
    font-weight: bold;
    opacity: .85;
    font-family: 'Alieron', sans-serif;}
.day-content {
    padding: 28px 48px;
    border-bottom: 2px solid var(--ink);
    color: var(--ink);
}
.class-block {
    margin-bottom: 22px;
    font-family: 'Alieron', sans-serif;
    font-size: clamp(14px, 2.2vw, 16px);
}
.class-block:last-child { margin-bottom: 0; }
.class-title {
    font-weight: 700;
    display: ruby;
    align-items: center;
    font-size: clamp(18px,2vw,20px);
    line-height: 1.45;
    font-family: 'Alieron', sans-serif;
    margin-bottom: 6px;
    color: var(--ink);
}
.class-subtitle {
    font-weight: lighter;
    font-size: clamp(14px,2vw,20px);
}
.class-title .em img { width: 24px; height: 24px; }
.class-title .dot-live { color: #E5352F; font-size: clamp(14px,2vw,20px); font-weight: lighter }
.class-body {
    font-size: clamp(16px,2vw,18px);
    line-height: 1.55;
    color: var(--ink);
    text-align:justify;
    font-family: 'Poppins', sans-serif;
}
.class-body ul { padding-left: 20px; margin: 8px 0 0; }
.week-heading {
    background: var(--primary);
    color: var(--white);
    text-align: center; padding: 22px 0;
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    text-transform: uppercase;
    border-bottom: 2px solid var(--ink);
}

/* ---------- BONUS ---------- */
.bonus {
    background: var(--primary);
    padding: 0 32px 110px;
}
.bonus-banner {
    background: var(--secondary);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 3vw, 70px);
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 36px 24px;
    margin: 0 -32px 60px;
    line-height: 1;
}
.bonus-inner { max-width: 1500px; margin: 0 auto; }
.bonus-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--primary); color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 2.6vw, 32px);
    padding: 10px 22px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.bonus-grid {
    margin-top: 120px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 100px 40px;
}
.bonus-card {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 28px;
    padding: 22px 24px;
    text-align: center;
    transition: transform .2s ease;
    justify-content: center;
    position: relative;
}
.bonus-card:hover { transform: translateY(-4px); }
.bonus-card h4 {
    font-size: 20px; font-weight: 700;
    margin: 0 0 10px;
    font-family: 'Alieron', sans-serif;
    line-height: 1.3;
}
.bonus-card p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    font-family: 'Alieron', sans-serif;
    text-align: justify;
}

.bonus-sticker {
    position: absolute;
    height: 120px;
    top: -100px;
    display: grid;
    place-items: center;
    left: 50%;
    transform: translateX(-50%);
}
/* ---------- PODCAST ---------- */
.podcast {
    background: var(--secondary-2);
    padding: 70px 32px 90px;
}
.podcast-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center;
}
.podcast-img {
    aspect-ratio: 1;
    background: repeating-linear-gradient(135deg, #d0d0d0 0 8px, #c2c2c2 8px 16px);
    border-radius: 6px;
}
.podcast-text h3 {
    font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400;
    font-size: clamp(18px, 2vw, 24px);
    margin: 0 0 8px;
}
.podcast-text h3 b {
    font-family: 'Archivo Black', sans-serif; font-style: normal;
    font-size: 1.4em;
    letter-spacing: 0.02em;
    margin: 0 6px;
}
.podcast-text h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(18px, 2.2vw, 26px);
    margin: 18px 0 4px;
}
.podcast-text .sub { font-size: 14px; color: var(--muted); }

/* ---------- BIBLIOTECA CREATIVA ---------- */
.library-banner {
    color: var(--white);
    text-align: center;
    padding: 28px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 2.4vw, 70px);
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.library-title-1 {
    background: var(--primary);
    padding: 0px 10px 0px;
    font-weight: bold;
}
.library-banner-wrap {
    background: var(--secondary);
    padding: 40px 20px 20px;
}
.library-banner-wrap .library-banner {
    max-width: 1920px; margin: 0 auto;
    border-radius: 40px;
    padding: 22px 20px;
}
.library {
    background: var(--secondary);
    padding: 30px 24px 60px;
    text-align: center;
}
.library h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3.2vw, 40px);
    margin: 10px 0 28px;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.title-wrapper {
    max-width: 1500px;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0px auto 0;
}
.library-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto 32px;
    text-align: left;
    align-items: start;
    position: relative;
}
.library-card {
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--ink);
    padding: 14px 16px;
    background: var(--secondary);
    font-size: 16px; line-height: 1.45;
    min-height: 180px;
    justify-content: center;
}
.library-card h5 {
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    margin: 0 0 6px;
    font-family: Poppins, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.library-illu {
    width: 250px; height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.library-cta {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 1.5vw, 40px);
    padding: 18px 44px;
    border-radius: 40px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    box-shadow: 0 6px 0 rgba(0,0,0,.15);
    transition: transform .15s ease;
    margin-top: 10px;
    line-height: 1em;
    font-weight: bold;
    border: 2px solid black;
}
.library-cta:hover { transform: translateY(-2px); }

/* ---------- FINAL CTA + WAITLIST ---------- */
.final-headline {
    background: var(--white);
    text-align: center;
    padding: 50px 24px 28px;
}
.final-headline h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2.8vw, 70px);
    line-height: 1.2;
    max-width: 1920px; margin: 0 auto 16px;
    color: var(--ink);
    text-transform: uppercase;
    line-height: 1;
}
.final-headline .sub {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-style: italic;
    font-size: clamp(12px, 2vw, 40px) !important;
    padding: 18px 18px;
    font-family: 'Libre Baskerville', sans-serif;
    font-weight: 500;
}

.waitlist {
    background: var(--secondary);
    padding: 40px 24px 70px;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.waitlist-title-wrap {
    display: inline-block;
    position: relative;
    margin-bottom: 24px;
}
.waitlist-title {
    background: var(--primary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 70px);
    padding: 18px 34px;
    border-radius: 24px;
    line-height: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    border: 2px solid black;
}
.waitlist-hand {
    position: absolute;
    left: -30px; bottom: -22px;
    font-size: 36px;
    transform: rotate(45deg);
}
.waitlist-sub {
    font-weight: 800;
    font-size: clamp(16px, 2.2vw, 40px);
    line-height: 1.1;
    letter-spacing: 0.04em;
    margin: 0 0 22px;
    text-transform: uppercase;
    font-family: Alieron, sans-serif;
    font-weight: bold;
}
.waitlist-form {
    max-width: 560px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}
.waitlist-form input {
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid var(--ink);
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    border-radius: 2px;
    outline: none;
    transition: box-shadow .15s ease;
}
.waitlist-form input:focus { box-shadow: 0 0 0 3px rgba(63,101,232,.2); }
.waitlist-form input::placeholder { color: rgba(0,0,0,.35); }
.waitlist-notice {
    background: var(--coral);
    color: var(--white);
    border: 2px solid black;
    font-weight: 800;
    font-size: clamp(16px, 2vw,20px);
    text-transform: uppercase;
    padding: 12px 16px;
    letter-spacing: 0.02em;
    margin-top: 50px;
    line-height: 1.4;
    text-align: center;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
}

.hand-emoji-h {
    transform: rotate(270deg);
}

.waitlist-fine {
    margin-top: 14px;
    font-size: clamp(14px,2vw,25px);
    color: var(--ink);
    line-height: 1.45;
    font-family: 'libre Baskerville', sans-serif;
    font-weight: bold;
}
.waitlist-cta {
    margin-top: 28px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 1.8vw, 22px);
    padding: 18px 48px;
    border-radius: 40px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    box-shadow: 0 6px 0 rgba(0,0,0,.15);
    transition: transform .15s ease;
}
.waitlist-cta:hover { transform: translateY(-2px); }

/* podcast header black band */
.podcast-header {
    background: var(--ink);
    color: var(--white);
    padding: 22px 24px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 28px);
}
.podcast-header b {
    font-family: 'Archivo Black', sans-serif;
    font-style: normal;
    margin-left: 8px;
    font-size: 1.2em;
}
.podcast-header .wrap { max-width: 1060px; margin: 0 auto; }

/* ---------- FOOTER ---------- */
footer {
    background: var(--ink);
    color: #bbb;
    padding: 48px 32px;
    text-align: center;
    font-size: 13px;
}
footer .brand {
    font-family: 'Archivo Black', sans-serif;
    color: var(--secondary);
    font-size: 22px;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

/* ---------- MODAL ---------- */
.modal-scrim {
    position: fixed; inset: 0;
    background: #000000cc;
    display: none;
    z-index: 200;
    align-items: center; justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.modal-scrim[data-open="true"] { display: flex; animation: fadeIn .25s ease; }
.modal {
    background: var(--white);
    width: min(560px, 100%);
    max-height: 90vh; overflow: auto;
    border-radius: 16px;
    padding: 32px;
    position: relative;
}
.modal h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.modal p { font-size: 14px; color: var(--muted); margin: 0 0 20px; }
.modal .close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: #f2f2f2;
    display: grid; place-items: center;
    font-size: 18px;
}
.modal .close:hover { background: var(--ink); color: var(--white); }
.modal iframe {
    width: 100%;
    min-height: 520px;
    border: 1px solid #e5e5e5; border-radius: 8px;
}
.modal .iframe-placeholder {
    width: 100%; min-height: 420px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: grid; place-items: center;
    padding: 24px; text-align: center;
    color: var(--muted); font-size: 13px;
    font-family: 'IBM Plex Mono', monospace;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

/* ---------- TWEAKS PANEL ---------- */
.tweaks-panel {
    position: fixed; bottom: 20px; right: 20px; z-index: 300;
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 18px 20px;
    width: 260px;
    box-shadow: 0 12px 32px -8px #0004;
    display: none;
    font-size: 13px;
}
.tweaks-panel[data-open="true"] { display: block; }
.tweaks-panel h4 {
    margin: 0 0 12px; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 800;
}
.tweak-row { margin-bottom: 12px; }
.tweak-row label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.tweak-row input[type="color"] { width: 100%; height: 36px; border: 1px solid #e5e5e5; border-radius: 6px; padding: 0; }
.tweak-row input[type="range"] { width: 100%; }
.tweak-row .val { font-family: monospace; font-size: 11px; color: var(--muted); float: right; }

/* ---------- SCROLL ANIMATIONS ---------- */
/* Reveal inicial - GSAP maneja la animación */
.reveal {
    opacity: 0;
}
.bubble, .include-card, .method-card, .phones > *, .logra-item, .price-row > *, .bonus-item, .bonus-grid > *, .day, .waitlist > * {
    /* GSAP controla estos, empiezan invisibles */
}

    .float-slow { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-8px) rotate(1.5deg); }
}
.wiggle { animation: wiggle 4s ease-in-out infinite; display: inline-block; }
@keyframes wiggle { 0%,100% { transform: rotate(-2deg) } 50% { transform: rotate(2deg) } }

/* Marquee-ish scrolling hero title entrance */
.hero-title {
    animation: heroIn 1.1s cubic-bezier(.2,.8,.2,1) .1s both;
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(40px) skewX(-3deg); }
    to { opacity: 1; transform: none; }
}

/* Parallax hero */
.hero-img { will-change: transform; transition: transform .1s linear;}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .nav { padding: 14px 20px; }
    .nav-links { gap: 16px; font-size: 11px; }
    .nav-links a.crea { padding: 6px 14px; }

    .hero-inner { padding: 40px 20px 32px; }
    .hero-title { font-size: clamp(40px, 12vw, 96px); }

    .strip { padding: 32px 20px; }
    .include-label .em { font-size: 1em; }

    .problems { padding: 60px 20px 70px; }
    .problems-title { padding: 18px 20px; }
    .bubble .text { font-size: 15px; padding: 14px 22px; max-width: 80vw}
    .bubble .emoji { width: 48px; height: 48px; font-size: 40px; position: absolute; left: 2px}
    .bubble .emoji img { width: 44px; height: 44px; }
    .emoji.right { left: 90%  !important;}


    .price-card.offer .price-tag {
        left: 44%;
    }

    .logras h2 {
        padding: 10px 10px;
    }

    .hand-emoji-h img {
        height: 48px;
        width: 48px;
    }
    .pricing h2 {
        padding: 10px 20px;
    }
    .hero {
        min-height: 72vh;
        overflow: hidden;
        display: flex;
        align-items: end;
        padding: 0;
    }
    .hero-mobile{
        display: block;
        object-fit: cover;
        height: 100%;
    }
    .mobile {
        display: initial;
    }

    .day-content {
        padding: 28px 20px;
    }
    .discount-inner { padding: 5px 20px 20px; }

    .library-banner-wrap .library-banner {
        padding: 22px 10px;
    }

    .testimonials h2 .l2 {

        left: 0px;
    }

    .final-headline .sub {
        padding: 5px 5px;
    }

    .library-banner-wrap {
        background: var(--secondary);
        padding: 0px 0px 0px;
    }

    .testimonials-sticker {
        width: 80px;
        position: absolute;
        align-content: center;
        top: -0.4em;
        left: 7.8em;
    }

    .testimonials h2 .l1 {
        padding: 10px 12px;
        transform: rotate(5deg);
        border: 2px solid var(--ink);
    }

    .logra-sticker {
        display: none;
    }

    .testimonial-sticker {
        width: 48px;
        position: relative;
        z-index: 2;
        top: 25px;
    }


    .discount-emoji {
        display: none;
        height: 32px;
        width: 32px;
    }

    .discount-cta {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-top: 0px;
        left: 0%;
        transform: translateX(0%);
    }

    .money-img {
        width: 48px;
        height: 48px;
        position: relative;
        left: 20px;
        z-index: 2;
    }

    .btn-primary {
        padding: 18px 36px;
        background: var(--primary);
        color: var(--white);
        animation: pulse-primary 2.4s ease-in-out infinite;
        font-size: clamp(16px, 1.5vw, 40px);
        line-height: 1.1em;
    }

    .discount {
        position: relative;
        padding: 0;
        background: #2a2a2a;
        overflow: hidden;
        min-height: 1px;
        display: flex; align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-desktop, .desktop {
        display: none;
    }

    .includes { padding: 60px 20px 80px; }
    .include-grid { grid-template-columns: 1fr; gap: 40px; }

    .method { padding: 60px 20px 80px; }
    .method-grid { grid-template-columns: 1fr; gap: 50px; padding-top: 20px; }

    .testimonials { padding: 60px 20px 0px; }
    .phones { grid-template-columns: 1fr; gap: 24px 20px; }

    .logras { padding: 60px 20px 80px; }
    .logra-item { padding: 16px 26px; font-size: 14.5px; border-radius: 28px; }

    .pricing { padding: 40px 20px 40px; }
    .price-row { grid-template-columns: 1fr; gap: 48px; }

    .hasta { padding: 60px 20px; }

    .curriculum { padding: 0px 20px 80px; }
    .week-tabs { gap: 10px; }

    .bonus { padding: 0 20px 80px; }
    .bonus-banner { margin: 0 -20px 40px; padding: 28px 20px; }
    .bonus-grid { grid-template-columns: 1fr; }
    .podcast-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .podcast-img { max-width: 200px; margin: 0 auto; }

    .library { padding: 0px 20px 50px; }
    .library-grid { grid-template-columns: 1fr; gap: 10px; }
    .library-illu { display: none; }
    .waitlist { padding: 30px 20px 60px; }
    .final-headline { padding: 40px 20px 24px; }

    .tweaks-panel { width: calc(100% - 40px); right: 20px; bottom: 20px; }
}

@media (max-width: 620px) {
    .bubbles {
        max-width: 600px;
    }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; gap: 18px; align-items: flex-start; border-bottom: 1px solid #0000001a; }
    .nav-burger { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 8px; }
    .nav-burger:hover { background: #f2f2f2; }
    .nav { justify-content: space-between; }
}


/* ========================================================== */
/* BOTÓN FLOTANTE DE WHATSAPP                                  */
/* ========================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Pulse animation continuo */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
        0 0 0 14px rgba(37, 211, 102, 0);
    }
}

/* Tooltip que aparece al hover */
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #1a1a1a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Flecha del tooltip */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a1a;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Entrada animada al cargar la página */
.whatsapp-float {
    animation: whatsapp-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both,
    whatsapp-pulse 2s infinite 2.1s;
}

@keyframes whatsapp-enter {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Mobile - posición ajustada */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    /* Ocultar tooltip en mobile (no hay hover real) */
    .whatsapp-tooltip {
        display: none;
    }
}

/* Cuando el usuario hace scroll: aparece más prominente */
.whatsapp-float.scrolled {
    bottom: 30px;
}