:root {
    --bg-dark: #000000;
    --text-main: #F5F5F7;
    --text-sec: #86868B;
    --orange: #FF9F0A;
    --purple: #BF5AF2;
    --pink: #FF375F;
    --cyan: #64D2FF;
    --blue: #0A84FF;
    --green: #32D74B;
    --yellow: #FFD60A;
    --glass-bg: rgba(28, 28, 30, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 60px rgba(10,132,255,0.3);
}

html {
    scroll-behavior: smooth;
    /* FIX: evitar overflow horizontal que causa zoom-out en movil */
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', sans-serif;
    /* FIX: overflow-x hidden en body tambien para que el zoom no escape */
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
a:hover { opacity: 0.7; }

/* ── Background orbs ── */
.liquid-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    animation: drift 30s infinite alternate ease-in-out;
    opacity: 0.6;
}
.orb-1 { width: 60vw; height: 60vw; background: rgba(10,132,255,0.12); top: -20%; left: -10%; }
.orb-2 { width: 50vw; height: 50vw; background: rgba(191,90,242,0.08); bottom: -10%; right: -10%; animation-delay: -7s; }
.orb-3 { width: 70vw; height: 70vw; background: rgba(255,159,10,0.10); top: 30%; left: 20%; animation-delay: -15s; }

@keyframes drift {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(100px,80px) scale(1.1); }
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 200;
    padding: 1rem 2rem;
    transition: all 0.5s cubic-bezier(0.28,0.11,0.32,1);
}
.navbar.scrolled {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 2rem;
}
.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}
.logo-img {
    height: 28px; width: auto;
    filter: grayscale(1) brightness(200%);
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-sec);
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-appstore {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
}
.btn-appstore:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px) scale(1.05);
    opacity: 1;
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    cursor: pointer;
    /* FIX: touch-action none elimina el delay de 300ms en iOS */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transition: background 0.2s;
    padding: 0;
}
.hamburger:active { background: rgba(255,255,255,0.18); }
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.25s ease;
    pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu Overlay ── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}
.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.5rem;
    padding: 2rem;
}
.mobile-link {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: -0.03em;
    padding: 0.75rem 2rem;
    border-radius: 16px;
    transition: color 0.15s, background 0.15s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    text-align: center;
}
.mobile-link:hover, .mobile-link:active {
    color: #fff;
    background: rgba(255,255,255,0.06);
    opacity: 1;
}
.plus-mobile-link {
    background: linear-gradient(135deg, rgba(255,159,10,0.15), rgba(255,214,10,0.15));
    border: 1px solid rgba(255,159,10,0.3);
    color: var(--orange);
}
.plus-mobile-link:hover {
    background: linear-gradient(135deg, rgba(255,159,10,0.25), rgba(255,214,10,0.25));
}
.mobile-download-btn {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #000;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s, opacity 0.15s;
}
.mobile-download-btn:active { transform: scale(0.97); opacity: 0.9; }

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    background: #fff;
    color: #000;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
    opacity: 1;
}
.btn-primary.large { font-size: 1.25rem; padding: 1.5rem 3.5rem; }

.glow-button { position: relative; overflow: hidden; }
.glow-button::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
.glow-button:hover::after { opacity: 1; }

/* ── Sections ── */
.section, .hero, footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Hero ── */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 14rem;
    min-height: 100vh;
}
.hero-content { max-width: 1000px; margin: 0 auto; }
.hero-title {
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.05em;
}
.text-gradient {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--text-sec);
    max-width: 850px;
    margin: 2rem auto 4rem;
    font-weight: 500;
}
.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    position: relative;
}

/* ── Carousel ── */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.9);
    background: #000;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25,1,0.5,1);
}
.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.carousel-image {
    max-width: 100%;
    height: auto;
    max-height: 65vh;
    display: block;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(40,40,40,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 10;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.carousel-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* Carousel dots */
.carousel-dots {
    display: flex;
    gap: 8px;
    margin-top: 1.5rem;
    justify-content: center;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s;
    touch-action: manipulation;
}
.carousel-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}

.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 70%; height: 70%;
    background: radial-gradient(circle, var(--blue) 0%, transparent 60%);
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

/* ── Sections common ── */
.section { padding: 3rem 2rem; }

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}
.section-body {
    font-size: 1.4rem;
    color: var(--text-sec);
    line-height: 1.6;
}

/* ── What-is / Split layout ── */
.split-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4rem;
    width: 100%;
}
.split-layout > div { flex: 1; }

.label-premium {
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* FIX: showcase-wrapper delimita la imagen para que no desborde en movil */
.showcase-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    /* Fijar altura maxima para que no sea gigante */
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20,20,22,0.5);
}
.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.premium-shadow { box-shadow: 0 40px 80px rgba(0,0,0,0.8); }

/* ── Bento Grid ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}
.item-large { grid-column: span 2; min-height: 500px; }

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25,1,0.5,1);
}
.glass-card:hover {
    transform: translateY(-10px) scale(0.99);
    border-color: rgba(255,255,255,0.2);
}
.bento-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.bento-gradient-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
    transition: background 0.4s ease;
}
.glass-card:hover .bento-gradient-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.3));
}
.bento-overlay {
    z-index: 10;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bento-overlay h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.bento-overlay p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.watch-tile { min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; }
.watch-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 0;
}
.watch-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    transition: background 0.4s ease;
    z-index: 5;
}
.watch-tile:hover .watch-bg { transform: scale(1.05); }
.watch-tile:hover .watch-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4)); }

.dark-mode-tile {
    min-height: 350px;
    background: linear-gradient(135deg, #111, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

/* ── BUSGO!+ HERO BANNER ── */
.plus {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.plus-hero {
    position: relative;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    padding: 5rem 4rem;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Gradiente naranja-amarillo vibrante */
    background: linear-gradient(135deg,
        rgba(255, 100, 0, 0.85) 0%,
        rgba(255, 159, 10, 0.9) 35%,
        rgba(255, 214, 10, 0.85) 65%,
        rgba(255, 200, 0, 0.8) 100%
    );
    box-shadow: 0 0 80px rgba(255,159,10,0.4), 0 30px 60px rgba(0,0,0,0.5);
}
.plus-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,60,0,0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,230,0,0.5) 0%, transparent 50%);
    z-index: 0;
    animation: plusPulse 4s ease-in-out infinite alternate;
}
@keyframes plusPulse {
    0%   { opacity: 0.7; }
    100% { opacity: 1; }
}
.plus-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
}
.plus-badge-large {
    display: inline-block;
    padding: 0.4rem 1.4rem;
    background: rgba(0,0,0,0.25);
    border: 1.5px solid rgba(0,0,0,0.2);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}
.plus-main-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #000;
    line-height: 1.05;
}
.plus-gradient-text {
    background: linear-gradient(135deg, #000 0%, rgba(0,0,0,0.6) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plus-main-sub {
    font-size: 1.2rem;
    color: rgba(0,0,0,0.7);
    max-width: 500px;
    line-height: 1.5;
}
.btn-plus-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem;
    background: #000;
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.btn-plus-cta:hover {
    background: #222;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    opacity: 1;
}

/* ── Plus features grid ── */
.plus-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}
.plus-feat-card {
    background: rgba(28,28,30,0.6);
    border: 1px solid rgba(255,159,10,0.2);
    border-radius: 28px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
}
.plus-feat-card:hover {
    border-color: rgba(255,159,10,0.5);
    background: rgba(255,159,10,0.06);
    transform: translateY(-4px);
}
.plus-feat-icon {
    font-size: 2rem;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(255,159,10,0.15), rgba(255,214,10,0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plus-feat-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.plus-feat-card p {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.5;
}

/* ── Pricing cards ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}
.pricing-card {
    background: rgba(28,28,30,0.7);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}
.pricing-popular {
    border-color: rgba(255,159,10,0.5);
    background: rgba(255,159,10,0.06);
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255,159,10,0.15);
}
.pricing-popular:hover { transform: scale(1.03) translateY(-6px); }
.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-period {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-sec);
    text-transform: uppercase;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-currency {
    font-size: 0.9rem;
    color: var(--text-sec);
    font-weight: 500;
}
.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.4;
}
.pricing-btn {
    margin-top: 0.5rem;
    padding: 0.85rem 2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    text-align: center;
    display: block;
}
.pricing-btn:hover { background: rgba(255,255,255,0.15); opacity: 1; }
.pricing-btn-highlight {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #000;
    border: none;
    font-weight: 800;
}
.pricing-btn-highlight:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    opacity: 1;
}

/* ── Comparison Table ── */
.glass-table {
    padding: 4rem 3rem;
    background: rgba(20,20,22,0.9);
    border-radius: 40px;
    width: 100%;
    border: 1px solid var(--glass-border);
}
.table-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
}
table { width: 100%; border-spacing: 0 10px; border-collapse: separate; }
th {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-sec);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
td {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.plus-col { color: var(--yellow); font-weight: 900; font-size: 1.1rem; }
.dot-check-plus { color: var(--yellow); font-size: 1.4rem; font-weight: 900; }

/* ── Utilities ── */
.text-orange { color: var(--orange); }
.text-purple { color: var(--purple); }
.text-cyan   { color: var(--cyan); }
.label-blue  { color: var(--blue); font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; }
.label-orange { color: var(--orange); font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; }
.label-white { font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,0.6); }
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}
.section-subtitle { font-size: 1.2rem; color: var(--text-sec); max-width: 600px; margin: 0 auto; }
.flex-center { display: flex; justify-content: center; width: 100%; }
.overflow-hidden { overflow: hidden; }
.contact-section { margin-bottom: 6rem; }
.divider { height: 1px; width: 120px; background: rgba(255,255,255,0.2); margin: 3rem auto; }

/* Footer */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.2rem; }
.footer-img { height: 24px; filter: grayscale(1) brightness(200%); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-sec); font-size: 0.9rem; }
.copyright { color: var(--text-sec); font-size: 0.8rem; }

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2,0.8,0.2,1);
}
.fade-up  { transform: translateY(60px) scale(0.98); filter: blur(10px); }
.scale-up { transform: scale(0.9) translateY(40px); filter: blur(15px); }
.fade-scale { transform: scale(0.9); filter: blur(15px); }
.reveal.active { opacity: 1; transform: translate(0,0) scale(1); filter: blur(0); }

/* Helpers */
.center-content { display: flex; align-items: center; justify-content: center; }
.relative  { position: relative; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.z-10 { z-index: 10; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mt-12 { margin-top: 4rem; }
.p-8   { padding: 2.5rem; }
.opacity-80 { opacity: 0.8; }
.opacity-70 { opacity: 0.7; }
.font-bold  { font-weight: 700; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.image-card { min-height: 350px; }

/* ═══════════════════════════════════
   RESPONSIVE - TABLET (<=900px)
═══════════════════════════════════ */
@media (max-width: 900px) {
    /* Mostrar hamburguesa, ocultar nav-links */
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }

    /* Plus features y pricing a 2 columnas */
    .plus-features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-popular { transform: none; }
    .pricing-popular:hover { transform: translateY(-6px); }

    .split-layout { gap: 2.5rem; }
    .bento-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .item-large { grid-column: span 1; }

    .glass-table { padding: 2.5rem 1.5rem; }
    .footer-content { flex-direction: column; justify-content: center; text-align: center; }
    .footer-links { justify-content: center; }

    /* Reducir animaciones de entrada */
    .fade-up  { transform: translateY(30px) scale(0.99); filter: blur(4px); }
    .scale-up { transform: scale(0.95) translateY(20px); filter: blur(6px); }
    /* Desactivar hover lift en touch */
    .glass-card:hover { transform: none; }
}

/* ═══════════════════════════════════
   RESPONSIVE - MOVIL (<=600px)
═══════════════════════════════════ */
@media (max-width: 600px) {
    .hero { padding-top: 8rem; min-height: auto; padding-bottom: 3rem; }
    .hero-subtitle { margin: 1.5rem auto 2.5rem; }

    /* FIX: carousel en movil no desborda */
    .carousel-container { border-radius: 24px; max-width: 100%; }
    .carousel-image { max-height: 55vw; }

    /* FIX: showcase imagen no gigante */
    .showcase-wrapper { max-height: 260px; border-radius: 16px; }

    .plus-hero { padding: 3rem 1.5rem; min-height: auto; border-radius: 28px; }
    .plus-main-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

    .plus-features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 2rem 1.5rem; }

    .glass-table { padding: 1.75rem 1rem; border-radius: 24px; }
    .table-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
    th, td { padding: 0.9rem 0.75rem; font-size: 0.85rem; }

    .section { padding: 2.5rem 1.25rem; }
    .bento-overlay h3 { font-size: 1.5rem; }
    .bento-overlay p { font-size: 1rem; }
    .item-large { min-height: 320px; }
    .watch-tile { min-height: 300px; }
    .dark-mode-tile { min-height: 260px; padding: 2rem; }
    .image-card { min-height: 260px; }
    .p-8 { padding: 1.5rem; }

    .mobile-link { font-size: 1.6rem; }

    footer { padding: 2rem 1.25rem; }
}