/* ══════════════════════════════════════
   VARIABLES
══════════════════════════════════════ */
:root {
    --color-primary:   #FF4A2B;
    --color-secondary: #3B1FCC;
    --color-accent:    #C8F135;
    --color-warm:      #FF9966;
    --color-dark:      #1A0500;
    --color-cream:     #FFF5F2;
    --espresso:    #1A0500;
    --coffee:      #2A0D00;
    --caramel:     #FF4A2B;
    --orange:      #FF9966;
    --verde:       #C8F135;
    --amarillo:    #C8F135;
    --latte:       #C8F135;
    --cream:       #FFF5F2;
    --cream-light: #ffffff;
    --terracotta:  #FF4A2B;
    --text-dark:   #1A0500;
    --text-mid:    #3A1200;
    --text-light:  #7A3A20;
    --shadow:      rgba(26, 5, 0, 0.14);
    --shadow-lg:   rgba(26, 5, 0, 0.22);
}

/* ══════════════════════════════════════
   RESET
══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 20px; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; background: var(--cream-light); color: var(--text-dark); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ══════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════ */
#progress {
    position: fixed; top: 0; left: 0; z-index: 500;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--caramel), var(--orange));
    transition: width 0.1s linear;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
    position: fixed; top: 3px; left: 0; right: 0; z-index: 200;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.85rem 2.5rem;
    background: #FFF5F2;
    backdrop-filter: blur(16px);
    border-bottom: 2px solid #FF4A2B;
    transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px var(--shadow); background: #FFF5F2; }
.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.nav-logo-icon { height: 56px; width: auto; flex-shrink: 0; border-radius: 8px; object-fit: contain; margin-right: -6px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--coffee); line-height: 1.1; }
.nav-logo-text span { display: block; font-family: 'Poppins', sans-serif; font-size: 0.62rem; font-weight: 500; color: var(--text-light); letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-mid); font-size: 0.87rem; font-weight: 500; transition: color 0.25s; }
.nav-links a:hover { color: var(--coffee); }
.nav-cta { background: #3B1FCC !important; color: #C8F135 !important; padding: 0.42rem 1.15rem; border-radius: 50px; }
.nav-cta:hover { background: var(--espresso) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; }

/* ══════════════════════════════════════
   HERO — split layout
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 5rem 4rem;
    background: #FF4A2B;
    position: relative; overflow: hidden;
    gap: 3rem;
}
.hero-blob {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(1px);
}
.hero-blob-1 { top: -160px; right: -60px; width: 580px; height: 580px; background: radial-gradient(circle, rgba(200,241,53,0.18) 0%, transparent 70%); animation: blobFloat1 8s ease-in-out infinite; }
.hero-blob-2 { bottom: -100px; left: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(26,5,0,0.2) 0%, transparent 70%); animation: blobFloat2 10s ease-in-out infinite; }
@keyframes blobFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-20px,15px) scale(1.04)} 66%{transform:translate(15px,-10px) scale(0.97)} }
@keyframes blobFloat2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(12px,-18px) scale(1.06)} }

/* Hero left */
.hero-left { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(26,5,0,0.18); color: #FFF5F2;
    font-size: 0.76rem; font-weight: 600; padding: 0.36rem 1rem;
    border-radius: 50px; letter-spacing: 0.05em; margin-bottom: 1.3rem;
    border: 1px solid rgba(255,245,242,0.25);
}
.hero h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.8rem); font-weight: 900;
    color: #FFF5F2; line-height: 1.06; margin-bottom: 1.2rem;
}
.rotating-wrap {
    display: inline-block; position: relative;
    color: var(--amarillo); font-style: italic;
    min-width: 260px;
}
.rotating-word { transition: opacity 0.4s, transform 0.4s; display: inline-block; }
.rotating-word.out { opacity: 0; transform: translateY(12px); }
.hero-sub {
    font-size: clamp(0.97rem, 1.6vw, 1.14rem); color: rgba(255,245,242,0.88);
    max-width: 480px; line-height: 1.8; font-weight: 400; margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.48rem;
    background: #3B1FCC; color: #C8F135; text-decoration: none;
    padding: 0.85rem 1.9rem; border-radius: 50px; font-weight: 600; font-size: 0.92rem;
    box-shadow: 0 4px 22px var(--shadow); transition: all 0.28s;
}
.btn-primary:hover { background: #2E18A0; transform: translateY(-3px); box-shadow: 0 10px 34px var(--shadow-lg); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 0.48rem;
    background: transparent; color: #FFF5F2; text-decoration: none;
    padding: 0.85rem 1.9rem; border-radius: 50px; border: 2px solid rgba(255,255,255,0.6);
    font-weight: 600; font-size: 0.92rem; transition: all 0.28s;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: #FFF5F2; transform: translateY(-3px); }
.hero-stats { display: flex; gap: 2rem; }
.h-stat { text-align: center; }
.h-stat-num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: #C8F135; letter-spacing: -0.01em; }
.h-stat-lbl { font-size: 0.74rem; color: rgba(255,245,242,0.8); font-weight: 500; }

/* Hero right */
.hero-right { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
    position: relative; width: 100%; max-width: 480px;
    perspective: 900px;
}
.hero-img-decoration {
    position: absolute; width: 90%; height: 90%;
    top: 5%; left: 5%;
    background: #3B1FCC; border-radius: 38% 62% 55% 45% / 42% 38% 62% 58%;
    animation: morphBlob 7s ease-in-out infinite;
    z-index: 0; opacity: 0.22;
}
@keyframes morphBlob {
    0%,100%{border-radius:38% 62% 55% 45% / 42% 38% 62% 58%}
    33%{border-radius:55% 45% 38% 62% / 58% 62% 38% 42%}
    66%{border-radius:62% 38% 62% 38% / 38% 55% 45% 62%}
}
.hero-img-ring {
    position: absolute; inset: -12px;
    border: 2.5px dashed #C8F135;
    border-radius: 28px; opacity: 0.35;
    animation: spin 18s linear infinite;
}
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.hero-img {
    width: 100%; border-radius: 24px;
    position: relative; z-index: 1;
    box-shadow: 0 24px 60px var(--shadow-lg);
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}
.hero-float-1 {
    position: absolute; top: -16px; right: -18px; z-index: 2;
    background: #ffffff; border-radius: 14px; padding: 0.6rem 0.9rem;
    box-shadow: 0 6px 22px var(--shadow); font-size: 0.82rem; font-weight: 600;
    color: #1A0500; white-space: nowrap;
    animation: floatY 3.5s ease-in-out infinite;
}
.hero-float-2 {
    position: absolute; bottom: 18px; left: -22px; z-index: 2;
    background: #ffffff; border-radius: 14px; padding: 0.6rem 0.9rem;
    box-shadow: 0 6px 22px var(--shadow); font-size: 0.82rem; font-weight: 600;
    color: #1A0500; white-space: nowrap;
    animation: floatY 4.2s ease-in-out infinite 0.8s;
}
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.marquee-section {
    background: #3B1FCC; padding: 0.9rem 0;
    overflow: hidden; display: flex; align-items: center;
}
.marquee-track {
    display: flex; gap: 2.5rem; align-items: center;
    animation: marqueeScroll 28s linear infinite;
    white-space: nowrap; width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item { font-size: 0.88rem; font-weight: 600; color: #C8F135; letter-spacing: 0.06em; opacity: 0.9; }
.marquee-dot { color: rgba(200,241,53,0.4); font-size: 1rem; }

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-strip {
    background: var(--espresso); padding: 3rem 2rem;
    border-bottom: 1px solid rgba(255,74,43,0.18);
}
.stats-grid { max-width: 700px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-block { text-align: center; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: #C8F135; line-height: 1; }
.stat-n .suffix { font-size: 1.6rem; }
.stat-l { font-size: 0.85rem; color: var(--cream); font-weight: 500; margin-top: 0.3rem; opacity: 0.7; }
.stat-divider { width: 1px; background: rgba(255,74,43,0.2); height: auto; }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
section { padding: 5.5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.sec-eyebrow { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--caramel); margin-bottom: 0.5rem; }
.sec-title { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; color: var(--espresso); line-height: 1.18; margin-bottom: 0.85rem; }
.sec-sub { font-size: 1.02rem; color: var(--text-mid); line-height: 1.78; font-weight: 300; max-width: 500px; }

/* ══════════════════════════════════════
   ABOUT — 3 big cards
══════════════════════════════════════ */
.about { background: #FFF5F2; }
.about-header { margin-bottom: 3rem; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.about-card {
    background: #ffffff; border-radius: 22px; padding: 2.2rem 1.8rem;
    box-shadow: 0 2px 18px var(--shadow);
    border: 1px solid rgba(255,74,43,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
}
.about-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, #FF4A2B, #FF9966);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.38s ease;
}
.about-card:hover { transform: translateY(-7px); box-shadow: 0 16px 40px var(--shadow-lg); }
.about-card:hover::after { transform: scaleX(1); }
.ac-icon {
    width: 56px; height: 56px; background: rgba(59,31,204,0.10); border-radius: 12px;
    display: grid; place-items: center; font-size: 1.55rem; margin-bottom: 1.2rem;
    padding: 0.5rem;
}
.about-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.08rem; font-weight: 600; color: var(--espresso); margin-bottom: 0.6rem; }
.about-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.72; }

/* ══════════════════════════════════════
   WELCOME VIDEO PLACEHOLDER
══════════════════════════════════════ */
.welcome-video-wrap { margin-top: 3rem; }
.welcome-video-embed {
    position: relative;
    width: 100%; max-width: 820px; margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(255,74,43,0.28), 0 4px 18px rgba(59,31,204,0.18);
}
.welcome-video-embed iframe {
    width: 100%; height: 100%;
    border: none; display: block;
}
.welcome-video-placeholder {
    position: relative;
    width: 100%; max-width: 820px; margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 28px;
    background: linear-gradient(135deg, #FF4A2B 0%, #FF9966 45%, #3B1FCC 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(255,74,43,0.28), 0 4px 18px rgba(59,31,204,0.18);
}
.wv-decoration {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 85%, rgba(200,241,53,0.18) 0%, transparent 48%),
        radial-gradient(circle at 85% 15%, rgba(26,5,0,0.22) 0%, transparent 48%);
}
.wv-content {
    position: relative; z-index: 1;
    text-align: center; padding: 2rem;
    display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
}
.wv-badge {
    background: rgba(26,5,0,0.35); color: #C8F135;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.3rem 1rem; border-radius: 50px;
    border: 1px solid rgba(200,241,53,0.35);
}
.wv-play-btn {
    width: 88px; height: 88px;
    background: rgba(255,255,255,0.22);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    backdrop-filter: blur(8px);
    border: 2.5px solid rgba(255,255,255,0.45);
    padding-left: 5px; /* optical center for play icon */
}
.wv-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700; color: #fff; margin: 0;
}
.wv-sub {
    font-size: 0.86rem; color: rgba(255,255,255,0.82);
    max-width: 400px; line-height: 1.72; margin: 0;
    font-family: 'Poppins', sans-serif;
}
.wv-deco-1, .wv-deco-2 {
    position: absolute; font-size: 3rem; opacity: 0.15; pointer-events: none;
}
.wv-deco-1 { top: 1.2rem; left: 1.8rem; }
.wv-deco-2 { bottom: 1.2rem; right: 1.8rem; }

/* ══════════════════════════════════════
   YOUTUBE — dark
══════════════════════════════════════ */
.yt-section { background: linear-gradient(160deg, #4A2FDC 0%, #3B1FCC 100%); padding: 3rem 2rem 3.5rem; }
.yt-section .sec-eyebrow { color: #FF9966; }
.yt-section .sec-title { color: var(--cream); margin-bottom: 0.5rem; }
.yt-section .sec-sub { color: rgba(255,245,242,0.75); opacity: 1; margin-bottom: 0; }
.yt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 1.5rem; }
/* ── YouTube carousel ── */
.yt-carousel {
    position: relative; border-radius: 20px; overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.yt-carousel-track { position: relative; width: 100%; height: 100%; }
.yt-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.65s ease;
    display: block; text-decoration: none;
    pointer-events: none;
}
.yt-slide.active { opacity: 1; pointer-events: auto; }
.yt-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-slide-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
}
.yt-slide:hover .yt-slide-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.22);
}
.yt-play-icon {
    width: 52px; height: 52px; background: #FF0000;
    border-radius: 50%; display: grid; place-items: center;
    transition: transform 0.3s; box-shadow: 0 4px 20px rgba(255,0,0,0.5);
}
.yt-slide:hover .yt-play-icon { transform: scale(1.1); }
.yt-carousel-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 7px; z-index: 2;
}
.yt-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4); border: none; cursor: pointer;
    transition: all 0.3s; padding: 0;
}
.yt-dot.active { background: #C8F135; width: 22px; border-radius: 4px; }
.yt-carousel-prev, .yt-carousel-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.35); border: none; color: #C8F135;
    width: 38px; height: 38px; border-radius: 50%;
    font-size: 1.4rem; line-height: 1; cursor: pointer; z-index: 2;
    backdrop-filter: blur(4px); transition: background 0.25s;
    display: flex; align-items: center; justify-content: center;
}
.yt-carousel-prev:hover, .yt-carousel-next:hover { background: rgba(0,0,0,0.6); }
.yt-carousel-prev { left: 12px; }
.yt-carousel-next { right: 12px; }
.yt-info { display: flex; flex-direction: column; gap: 1.5rem; }
.yt-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.yt-stat { background: rgba(255,255,255,0.07); border-radius: 12px; padding: 1rem; text-align: center; transition: all 0.25s; cursor: pointer; border: 2px solid transparent; }
.yt-stat:hover { background: rgba(255,255,255,0.12); }
.yt-stat.active { background: rgba(200,241,53,0.12); border-color: #C8F135; }
.yt-stat-v { font-size: 1.5rem; color: var(--caramel); }
.yt-stat-l { font-size: 0.74rem; color: var(--latte); opacity: 0.78; }
.yt-stat.active .yt-stat-v { filter: grayscale(0); }
.yt-stat.active .yt-stat-l { color: #C8F135; opacity: 1; }
.yt-desc { font-size: 0.9rem; color: var(--latte); line-height: 1.78; opacity: 0.84; }
.btn-yt {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #FF4A2B; color: #fff; text-decoration: none;
    padding: 0.86rem 1.9rem; border-radius: 50px; font-weight: 600; font-size: 0.92rem;
    width: fit-content; transition: all 0.28s;
}
.btn-yt:hover { background: #CC0000; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,0,0,0.3); }

/* ══════════════════════════════════════
   CLASES — tabbed
══════════════════════════════════════ */
.clases { background: #FFF5F2; }
.tabs-nav { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 2.5rem 0 2rem; }
.tab-btn {
    padding: 0.6rem 1.4rem; border-radius: 50px; border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-size: 0.86rem; font-weight: 600;
    background: rgba(107,58,42,0.08); color: var(--text-mid); transition: all 0.25s;
}
.tab-btn.active { background: #FF4A2B; color: #ffffff; }
.tab-btn:hover:not(.active) { background: rgba(107,58,42,0.15); }
.tab-pane { display: none; }
.tab-pane.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; animation: tabFadeIn 0.35s ease; }
@keyframes tabFadeIn { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:none} }
.tab-content h3 { font-size: 1.65rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.9rem; }
.tab-content p { font-size: 0.94rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 1.5rem; font-weight: 300; }
.tab-perks { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.8rem; }
.tab-perks li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-mid); }
.tab-perks li::before { content: '✓'; width: 22px; height: 22px; background: var(--caramel); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.tab-visual {
    background: var(--cream-light); border-radius: 20px; padding: 2rem;
    display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 4px 20px var(--shadow);
}
.mini-card {
    background: #fff; border-radius: 14px; padding: 1.1rem 1.3rem;
    display: flex; align-items: center; gap: 1rem;
    box-shadow: 0 2px 10px var(--shadow); transition: transform 0.25s;
}
.mini-card:hover { transform: translateX(6px); }
.mini-card-icon { font-size: 1.4rem; }
.mini-card-text { font-size: 0.86rem; font-weight: 600; color: var(--espresso); }
.mini-card-sub { font-size: 0.78rem; color: var(--text-light); }
.btn-italki {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #3B1FCC; color: #C8F135; text-decoration: none;
    padding: 0.86rem 1.9rem; border-radius: 50px; font-weight: 600; font-size: 0.92rem;
    box-shadow: 0 4px 22px var(--shadow); transition: all 0.28s; width: fit-content;
}
.btn-italki:hover { background: var(--espresso); transform: translateY(-3px); box-shadow: 0 10px 32px var(--shadow-lg); }

/* ══════════════════════════════════════
   SOCIAL
══════════════════════════════════════ */
.social { background: #FFF5F2; text-align: center; }
.social .sec-sub { margin: 0 auto; }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 3rem auto 0; max-width: 860px; }
.soc-card {
    border-radius: 22px; padding: 2.5rem 2rem;
    text-align: center; position: relative; overflow: hidden;
    color: #fff; transition: transform 0.3s;
    cursor: default;
}
.soc-card:hover { transform: translateY(-8px); }
.soc-card.yt { background: linear-gradient(145deg, #2A0D00, #1A0500); }
.soc-card.ig { background: linear-gradient(145deg, #FF4A2B, #FF9966 50%, #FF4A2B); }
.soc-card.tt { background: linear-gradient(145deg, #1a1a1a, #333); }
.soc-badge {
    position: absolute; top: 1rem; right: 1rem;
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    padding: 0.26rem 0.65rem; border-radius: 50px;
    background: rgba(255,255,255,0.22);
}
.soc-icon { margin-bottom: 1rem; }
.soc-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.08rem; font-weight: 600; margin-bottom: 0.5rem; }
.soc-card p { font-size: 0.85rem; opacity: 0.86; line-height: 1.65; margin-bottom: 1.3rem; }
.btn-soc {
    display: inline-block; background: rgba(255,255,255,0.2);
    color: #fff; text-decoration: none; padding: 0.56rem 1.4rem;
    border-radius: 50px; font-size: 0.83rem; font-weight: 500;
    backdrop-filter: blur(4px); border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif; transition: background 0.25s;
}
.btn-soc:hover { background: rgba(255,255,255,0.34); }

/* ══════════════════════════════════════
   COURSES — coming soon
══════════════════════════════════════ */
.cursos { background: linear-gradient(160deg, #4A2FDC 0%, #3B1FCC 100%); }
.cursos-inner { text-align: center; max-width: 740px; margin: 0 auto; }
.cursos .sec-title { color: #FFF5F2; }
.cursos .sec-sub { color: rgba(255,245,242,0.72); }
.cursos-question { font-size: 0.98rem; color: rgba(255,245,242,0.8); font-weight: 500; margin-bottom: 1.1rem; }
.badge-soon {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: #FF4A2B; color: #fff;
    font-size: 0.76rem; font-weight: 700; padding: 0.36rem 1rem;
    border-radius: 50px; margin-bottom: 1.3rem; letter-spacing: 0.05em;
}
.cursos-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
.curso-prev {
    background: #fff; border-radius: 16px; padding: 1.5rem;
    text-align: left; box-shadow: 0 2px 14px var(--shadow);
    position: relative; overflow: hidden;
}
.curso-prev::after {
    content: 'Próximamente'; position: absolute; inset: 0;
    background: rgba(254,251,243,0.72); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.82rem; color: var(--coffee);
    backdrop-filter: blur(2px);
}
.c-lvl { font-size: 0.7rem; font-weight: 700; color: var(--caramel); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.4rem; }
.curso-prev h4 { font-family: 'Poppins', sans-serif; font-size: 0.93rem; font-weight: 600; color: var(--espresso); margin-bottom: 0.35rem; }
.curso-prev p { font-size: 0.8rem; color: var(--text-light); }
.waitlist-form { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; margin-top: 0.5rem; }
.wl-input {
    flex: 1; min-width: 250px; max-width: 340px;
    padding: 0.86rem 1.5rem; border: 2px solid var(--latte);
    border-radius: 50px; font-family: 'Poppins', sans-serif;
    font-size: 0.92rem; color: var(--text-dark); background: #fff;
    outline: none; transition: border-color 0.25s;
}
.wl-input:focus { border-color: #3B1FCC; }
.wl-input::placeholder { color: var(--text-light); }
.btn-wl {
    background: #C8F135; color: #1A0500; border: none;
    padding: 0.86rem 1.8rem; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.92rem;
    cursor: pointer; transition: all 0.28s;
}
.btn-wl:hover { background: #3B1FCC; color: #C8F135; transform: translateY(-2px); }
#wl-msg { margin-top: 0.7rem; font-size: 0.84rem; font-weight: 500; min-height: 1.2rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--espresso); color: var(--latte); padding: 3.5rem 2rem; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.f-brand h3 { font-size: 1.3rem; color: var(--cream); margin-bottom: 0.7rem; }
.f-brand p { font-size: 0.86rem; opacity: 0.66; line-height: 1.75; max-width: 280px; }
.f-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #C8F135; margin-bottom: 1rem; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.f-col a { text-decoration: none; color: var(--latte); font-size: 0.88rem; opacity: 0.65; transition: opacity 0.22s; }
.f-col a:hover { opacity: 1; }
.footer-bottom { max-width: 1100px; margin: 1.4rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; opacity: 0.42; flex-wrap: wrap; gap: 0.75rem; }

/* ══════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════ */
.testimonios {
    background: #fff;
    padding: 6rem 2rem;
    border-top: 5px solid #FF4A2B;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.testi-card {
    background: var(--cream-light);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 2px 18px rgba(26,5,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.22s, box-shadow 0.22s;
    border: 1px solid rgba(255,74,43,0.2);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(26,5,0,0.13); }
.testi-card.testi-featured { grid-column: span 2; background: #FF4A2B; color: var(--cream); border-color: transparent; }
.testi-stars { color: #FF4A2B; font-size: 1rem; letter-spacing: 3px; }
.testi-featured .testi-stars { color: #C8F135; }
.testi-quote-mark { font-size: 3.5rem; line-height: 1; color: var(--caramel); opacity: 0.25; font-family: 'Playfair Display', serif; height: 2.5rem; overflow: hidden; margin-bottom: -0.5rem; }
.testi-featured .testi-quote-mark { opacity: 0.18; color: var(--latte); }
.testi-text { font-size: 0.92rem; line-height: 1.75; color: var(--text-mid); flex: 1; margin: 0; font-style: italic; }
.testi-featured .testi-text { color: rgba(255,255,255,0.92); font-size: 1rem; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; padding-top: 0.9rem; border-top: 1px solid rgba(255,74,43,0.18); }
.testi-featured .testi-author { border-top-color: rgba(245,230,200,0.18); }
.testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: #FF4A2B; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}
.testi-featured .testi-avatar { background: #FF4A2B; }
.testi-av-j { background: #3B1FCC; }
.testi-av-s { background: #3B1FCC; }
.testi-av-p { background: #FF9966; }
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--espresso); }
.testi-featured .testi-name { color: #ffffff; }
.testi-meta { font-size: 0.76rem; color: var(--text-light); }
.testi-featured .testi-meta { color: var(--latte); opacity: 0.65; }
.testi-cta { text-align: center; margin-top: 2.5rem; }
.testi-cta .btn-outline {
    color: #FF4A2B;
    border-color: #FF4A2B;
}
.testi-cta .btn-outline:hover {
    background: #FF4A2B;
    color: #FFF5F2;
}

@media(max-width: 900px) {
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-card.testi-featured { grid-column: span 2; }
}
@media(max-width: 600px) {
    .testi-grid { grid-template-columns: 1fr; }
    .testi-card.testi-featured { grid-column: span 1; }
}

/* ══════════════════════════════════════
   DIAGNÓSTICO CTA
══════════════════════════════════════ */
.diag-cta { background: #FF4A2B; padding: 4rem 2rem; }
.diag-cta-inner {
    max-width: 1000px; margin: 0 auto;
    display: flex; align-items: center; gap: 2.5rem;
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px; padding: 2.5rem;
}
.diag-cta-icon { flex-shrink: 0; display: flex; align-items: center; }
.diag-cta-text { flex: 1; }
.diag-cta-text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: #FFF5F2; margin-bottom: 0.5rem; }
.diag-cta-text p { font-size: 0.88rem; color: rgba(255,245,242,0.88); line-height: 1.72; }
.diag-cta-btn { white-space: nowrap; flex-shrink: 0; }
@media(max-width: 760px) {
    .diag-cta-inner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1.5rem; }
    .diag-cta-btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.show { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.show { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.show { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width: 960px) {
    .hero { display: flex; flex-direction: column; align-items: stretch; gap: 2rem; padding: 6.5rem 2rem 3rem; text-align: center; }
    .hero-left { width: 100%; }
    .hero-right { order: -1; width: 100%; }
    .hero-img-wrap { width: 100%; perspective: none; }
    .hero-img { width: 100%; display: block; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-img-decoration, .hero-float-1, .hero-float-2, .hero-img-ring { display: none; }
    .about-cards { grid-template-columns: 1fr; }
    .yt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .tab-pane.active { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr; }
    .cursos-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-divider { display: none; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
}
@media(max-width: 600px) {
    nav { padding: 0.85rem 1.25rem; }
    .hero { padding: 5.5rem 1.5rem 3rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    section { padding: 3.5rem 1.25rem; }
    .about-cards, .social-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    /* Hero stats — más pequeños en móvil */
    .hero-stats { gap: 1rem; }
    .h-stat-num { font-size: 1rem; }
    .h-stat-lbl { font-size: 0.62rem; }

    /* YouTube stats cajitas — más compactas en móvil */
    .yt-stat { padding: 0.7rem 0.5rem; }
    .yt-stat-v { font-size: 1.1rem; }
    .yt-stat-l { font-size: 0.68rem; }
    .yt-stats { gap: 0.5rem; }
}

/* ══════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════ */
.mob-nav {
    display: none; position: fixed; inset: 0; z-index: 190;
    background: rgba(26,5,0,0.97);
    flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
}
.mob-nav.open { display: flex; }
.mob-nav a { text-decoration: none; color: var(--cream); font-size: 1.5rem; font-weight: 700; font-family: 'Playfair Display', serif; transition: color 0.2s; }
.mob-nav a:hover { color: var(--caramel); }
.mob-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--cream); font-size: 1.8rem; cursor: pointer; }
