/* ========================================
   TKOC — The King of Content
   Holo-Style + TKOC Brand Redesign
   ======================================== */

:root {
    /* TKOC Brand gradient (from logo SVG) */
    --grad-start: #d7b8ff;
    --grad-mid: #ad6eff;
    --grad-end: #9a4cff;
    --gradient: linear-gradient(135deg, #d7b8ff 0%, #c496ff 22%, #ad6eff 50%, #9a4cff 100%);
    --gradient-btn: linear-gradient(135deg, #c496ff 0%, #9a4cff 100%);
    --gradient-btn-hover: linear-gradient(135deg, #d7b8ff 0%, #ad6eff 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(154,76,255,0.08) 0%, rgba(215,184,255,0.08) 100%);

    /* Core colors */
    --purple: #9a4cff;
    --purple-dark: #7c3aed;
    --purple-light: #c496ff;
    --purple-lighter: #d7b8ff;
    --purple-bg: #f5f0ff;
    --green: #4ADE80;
    --green-dark: #22C55E;

    /* Neutrals */
    --black: #0f0f14;
    --dark: #1a1a2e;
    --gray-900: #2d2d3d;
    --gray-700: #4a4a5a;
    --gray: #6B7280;
    --gray-400: #9CA3AF;
    --gray-light: #fbfbfb;
    --white: #fbfbfb;

    /* Design tokens */
    --font: 'Poppins', sans-serif;
    --font-display: 'Poppins', sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    --shadow: 0 4px 24px rgba(154, 76, 255, 0.12);
    --shadow-lg: 0 12px 48px rgba(154, 76, 255, 0.18);
    --shadow-glow: 0 0 60px rgba(154, 76, 255, 0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Phosphor Icons — Inline SVG base styles
   ======================================== */

/* Base icon class */
.ph-icon {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    flex-shrink: 0;
}

/* Nav dropdown icons — 18px */
.ph-nav {
    width: 18px;
    height: 18px;
}

/* Feature/section icons — inherits parent font-size via em */
.ph-feature {
    width: 1em;
    height: 1em;
}

/* Inline text icons — flows with text */
.ph-inline {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
}

/* Decorative float icons (index hero) */
.ph-float {
    width: 16px;
    height: 16px;
    color: var(--purple);
}

/* 404 crown */
.ph-crown-404 {
    width: 1em;
    height: 1em;
}

/* 500 crown */
.ph-crown-500 {
    width: 1em;
    height: 1em;
}

/* 404 floating particles */
.ph-particle {
    width: 24px;
    height: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   PRELOADER
   ======================================== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    width: 48px;
    height: 48px;
    animation: preloader-pulse 1.2s ease-in-out infinite;
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: rgba(154, 76, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient-btn);
    border-radius: 4px;
    animation: preloader-fill 0.6s ease-out forwards;
}

@keyframes preloader-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes preloader-fill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ========================================
   CUSTOM CURSOR — Crown
   ======================================== */

/* Default browser cursor — custom cursor removed */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1, h2 {
    font-family: var(--font-display);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); text-align: center; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

.gradient-text {
    color: var(--purple);
}

.highlight-green {
    color: var(--green-dark);
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: var(--purple);
    text-decoration-thickness: 3px;
}

.text-fade {
    display: inline-block;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 15%, rgba(0,0,0,0.03) 95%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 15%, rgba(0,0,0,0.03) 95%);
}

.section-eyebrow {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.btn-gradient {
    background: var(--gradient-btn);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(154, 76, 255, 0.3);
}

.btn-gradient:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(154, 76, 255, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid rgba(154, 76, 255, 0.2);
}

.btn-ghost:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple-light);
    background-clip: padding-box;
}

.btn-outline:hover {
    background: var(--gradient-btn);
    background-clip: padding-box;
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.82rem;
}

/* Gradient border button (Holo style) */
.btn-gradient-border {
    position: relative;
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    z-index: 1;
    box-shadow: none;
    transition: var(--transition);
}

.btn-gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    padding: 2px;
    background: linear-gradient(135deg, #c496ff 0%, #9a4cff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: var(--transition);
}

.btn-gradient-border:hover {
    background: var(--gradient-btn);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(154, 76, 255, 0.3);
}

.btn-gradient-border:hover::before {
    opacity: 0;
    transition: opacity 0s;
}

/* ========================================
   NAVBAR — Combined pill → separates on scroll
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    pointer-events: none;
}

.navbar > * {
    pointer-events: auto;
}

/* Three-group wrapper (logo | links | CTA — each its own pill) */
.nav-bar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: gap 0.5s ease,
                width 0.5s ease,
                justify-content 0s;
}

/* Logo circle — own frosted glass circle */
.nav-logo-circle {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.4s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.nav-logo-circle:hover {
    transform: scale(1.08);
    border-color: rgba(154, 76, 255, 0.2);
    box-shadow: 0 4px 24px rgba(154, 76, 255, 0.15);
}

.logo-img {
    height: 38px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 1px 4px rgba(154, 76, 255, 0.2));
}

/* Nav links — own frosted glass pill */
.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    padding: 0 24px;
    height: 48px;
    opacity: 1;
    max-width: 800px;
    transition: opacity 0.3s ease,
                transform 0.4s ease,
                max-width 0.4s ease,
                padding 0.4s ease,
                height 0.4s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    overflow: visible;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transform: scale(1);
    transform-origin: center center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.nav-links a:hover {
    color: var(--purple);
}

/* Fix dropdown toggle alignment with regular links */
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.nav-dropdown-toggle svg {
    transition: var(--transition);
    vertical-align: middle;
}

/* CTA button — own pill with gradient border */
.nav-cta {
    flex-shrink: 0;
    transition: transform 0.4s ease,
                box-shadow 0.3s ease;
    margin-left: 0;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* CTA group — wrapper for multiple nav buttons */
.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-cta-secondary {
    font-size: 0.82rem;
    padding: 10px 24px;
    color: var(--white);
    background: var(--gradient-btn);
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 24px rgba(154, 76, 255, 0.15);
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
}

/* Match both nav CTA buttons to same size */
.nav-cta-group .btn-gradient-border.btn-nav {
    padding: 10px 24px;
    font-size: 0.82rem;
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
}

.nav-cta-secondary:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(154, 76, 255, 0.3);
}

/* ---- Scrolled state: links hide, logo + CTA spread to edges ---- */
.navbar.scrolled .nav-bar-inner {
    width: 100%;
    justify-content: space-between;
}

.navbar.scrolled .nav-links {
    opacity: 0;
    max-width: 0;
    padding: 0;
    gap: 0;
    height: 0;
    border: none;
    pointer-events: none;
    overflow: hidden;
    box-shadow: none;
    transform: scale(0.9);
    transition: opacity 0.15s ease,
                transform 0.35s ease,
                max-width 0.35s ease 0.05s,
                padding 0.35s ease 0.05s,
                height 0.35s ease 0.05s,
                gap 0.2s ease 0.05s,
                border-color 0.15s ease,
                box-shadow 0.15s ease;
}

/* Scrolled logo & CTA — no scale change, clean transition */
.navbar.scrolled .nav-logo-circle {
    transform: none;
}

.navbar.scrolled .nav-cta {
    transform: none;
}

.navbar.scrolled .nav-cta-group {
    transform: none;
}

/* Hide "Sé creador" button on scroll */
.navbar.scrolled .nav-cta-secondary {
    opacity: 0;
    max-width: 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, max-width 0.3s ease, padding 0.3s ease;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(154, 76, 255, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    list-style: none;
    z-index: 100;
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--purple-bg);
    color: var(--purple);
}

.dropdown-icon {
    font-size: 1.05rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    pointer-events: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Animated floating orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154,76,255,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(215,184,255,0.2) 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74,222,128,0.1) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: -5s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-badge {
    display: inline-block;
    background: transparent;
    color: var(--gray-700);
    font-size: 0.88rem;
    font-weight: 400;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
    border: 1.5px solid rgba(154, 76, 255, 0.18);
    letter-spacing: 0;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--gray-700);
}

.hero-copy {
    color: var(--gray);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
    text-align: center;
}

.hero-copy p {
    margin-bottom: 16px;
}

.hero-copy p:last-child {
    margin-bottom: 0;
}

.hero-copy strong {
    color: var(--gray-700);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* ---- Hero Video ---- */
.hero-video-wrap {
    position: relative;
    margin: 20px auto 0;
    max-width: 680px;
    width: 100%;
}

.hero-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(154,76,255,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-video {
    width: 100%;
    max-width: 680px;
    border-radius: var(--radius-lg);
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========================================
   SCROLL TEXT — Word illumination on scroll
   ======================================== */

.scroll-text-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.scroll-text-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.scroll-text-content {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 40px;
}

.scroll-text-second {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    margin-bottom: 0;
}

.scroll-word {
    color: rgba(15, 15, 20, 0.12);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline;
}

.scroll-word.lit {
    color: var(--black);
}

.scroll-word.lit.scroll-accent {
    color: var(--purple);
}

/* ========================================
   VIDEO SHOWCASE — Carousel (holo style)
   ======================================== */

.showcase {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.showcase h2 {
    margin-bottom: 8px;
}

.showcase .section-eyebrow {
    color: var(--purple);
}

.showcase .section-subtitle {
    color: var(--gray);
}

.showcase-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    flex: 1;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.showcase-item {
    flex: 0 0 220px;
}

.video-placeholder {
    aspect-ratio: 9/16;
    background: var(--gray-light);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.video-placeholder:hover {
    border-color: rgba(154, 76, 255, 0.3);
    box-shadow: 0 0 30px rgba(154, 76, 255, 0.15);
    transform: translateY(-4px);
}

.play-btn {
    width: 48px;
    height: 48px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(154, 76, 255, 0.4);
    transition: var(--transition);
}

.video-placeholder:hover .play-btn {
    transform: scale(1.1);
}

.play-btn-lg {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
}

.video-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--gradient-btn);
    border-color: transparent;
    box-shadow: var(--shadow);
}

/* ========================================
   COMBI COMPLETA — Visual Infographic
   ======================================== */

.combi {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.combi h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 8px;
}

.gradient-bg {
    background: var(--gradient-btn);
}

.green-bg {
    background: var(--green-dark);
}

/* Infographic layout */
.infographic {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.infographic-pillar {
    flex: 1;
    max-width: 380px;
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
    color: var(--white);
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.pillar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.pillar-items {
    border: 1px solid rgba(0,0,0,0.06);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--white);
    padding: 8px 0;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 24px;
    transition: background 0.2s;
}

.pillar-item:hover {
    background: var(--gray-light);
}

.pillar-item-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--white);
    min-width: 28px;
    height: 28px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.infographic-pillar-right .pillar-item-num {
    background: var(--green-dark);
}

.pillar-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.pillar-item small {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.4;
}

/* Center connector */
.infographic-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 8px;
}

.connector-plus,
.connector-equals {
    font-size: 1.8rem;
    font-weight: 800;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-plus {
    background: var(--gradient-btn);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(154,76,255,0.3);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.connector-equals {
    background: var(--green-dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}

.connector-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--purple-light), var(--green));
    border-radius: 2px;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 16px rgba(154,76,255,0.3); transform: scale(1); }
    50% { box-shadow: 0 4px 28px rgba(154,76,255,0.5); transform: scale(1.08); }
}

/* Result */
.infographic-result {
    margin-top: 48px;
    text-align: center;
}

.result-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-bottom: 12px;
}

.result-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.result-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.result-benefit {
    background: var(--purple-bg);
    border-radius: var(--radius-pill);
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--purple);
}

/* ========================================
   PROCESO — Steps with vertical line (holo style)
   ======================================== */

.proceso {
    padding: 60px 0;
    background: var(--gray-light);
}

.proceso h2 {
    margin-bottom: 60px;
}

.proceso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.proceso-steps {
    position: relative;
}

.step-line {
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--purple-lighter), var(--purple), var(--purple-lighter));
    border-radius: 2px;
}

.paso {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
    position: relative;
}

.paso:last-child {
    margin-bottom: 0;
}

.paso-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    min-width: 40px;
    height: 40px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(154, 76, 255, 0.3);
    position: relative;
    z-index: 1;
}

.paso h4 {
    margin-bottom: 6px;
    color: var(--dark);
}

.paso p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.proceso-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-glow {
    position: absolute;
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(154,76,255,0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---- Proceso Visual — Animated Content Collage ---- */
.proceso-visual {
    position: relative;
    width: 380px;
    height: 440px;
    flex-shrink: 0;
}

.pv-glow {
    position: absolute;
    width: 340px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(154,76,255,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

/* Phones */
.pv-phone {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 3px solid #222;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
}

.pv-phone video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main phone — center */
.pv-phone-main {
    width: 180px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border-color: #1a1a1a;
    border-radius: 24px;
    animation: pv-float-main 4s ease-in-out infinite;
}

/* Left phone — smaller, tilted */
.pv-phone-left {
    width: 130px;
    height: 230px;
    top: 55%;
    left: -10px;
    transform: translateY(-50%) rotate(-8deg);
    z-index: 2;
    opacity: 0.85;
    animation: pv-float-left 5s ease-in-out infinite;
}

/* Right phone — smaller, tilted opposite */
.pv-phone-right {
    width: 130px;
    height: 230px;
    top: 40%;
    right: -10px;
    transform: translateY(-50%) rotate(6deg);
    z-index: 2;
    opacity: 0.85;
    animation: pv-float-right 5.5s ease-in-out infinite;
}

/* Floating engagement badges */
.pv-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    z-index: 5;
    white-space: nowrap;
}

.pv-float-heart {
    top: 10px;
    left: 0;
    animation: pv-badge-float 3.5s ease-in-out infinite;
}

.pv-float-heart svg {
    flex-shrink: 0;
}

.pv-float-heart span {
    color: #ff3b5c;
}

.pv-float-views {
    bottom: 40px;
    right: 0;
    animation: pv-badge-float 4s ease-in-out infinite 0.5s;
}

.pv-float-views svg {
    stroke: var(--purple);
    flex-shrink: 0;
}

.pv-float-views span {
    color: var(--purple);
}

.pv-float-fire {
    top: 50%;
    right: 20px;
    padding: 8px 12px;
    font-size: 1.2rem;
    animation: pv-badge-float 3s ease-in-out infinite 1s;
}

.pv-float-comment {
    bottom: 100px;
    left: -15px;
    animation: pv-badge-float 4.5s ease-in-out infinite 0.8s;
}

.pv-float-comment svg {
    stroke: var(--gray-700);
    flex-shrink: 0;
}

/* Animations */
@keyframes pv-float-main {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes pv-float-left {
    0%, 100% { transform: translateY(-50%) rotate(-8deg) translateY(0); }
    50% { transform: translateY(-50%) rotate(-8deg) translateY(-12px); }
}

@keyframes pv-float-right {
    0%, 100% { transform: translateY(-50%) rotate(6deg) translateY(0); }
    50% { transform: translateY(-50%) rotate(6deg) translateY(-10px); }
}

@keyframes pv-badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.phone-mockup {
    max-width: 280px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* ========================================
   RESULTADOS
   ======================================== */

.resultados {
    padding: 60px 0;
    background: var(--white);
    color: var(--black);
}

.resultados h2 {
    margin-bottom: 48px;
    color: var(--black);
}

.resultados .section-eyebrow {
    color: var(--purple);
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.resultado-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(154,76,255,0.08);
    position: relative;
    overflow: hidden;
}

.resultado-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resultado-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(154, 76, 255, 0.2);
    border-color: rgba(154, 76, 255, 0.3);
}

.resultado-card:hover::before {
    opacity: 0.05;
}

.resultado-card > * {
    position: relative;
    z-index: 1;
}

.resultado-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(154, 76, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.resultado-icon-wrap svg {
    stroke: var(--purple);
}

.resultado-card:hover .resultado-icon-wrap {
    background: rgba(154, 76, 255, 0.2);
    transform: scale(1.1);
}

.resultado-metric {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.resultado-quote {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.resultado-plan {
    font-size: 0.78rem;
    color: var(--purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resultados-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.resultados .btn {
    display: block;
    max-width: 400px;
    margin: 0 auto;
}

.resultados .strikethrough {
    text-decoration-color: var(--purple-light);
}

/* ========================================
   DEMO SECTION — Laptop mockup (holo style)
   ======================================== */

.demo-section {
    padding: 60px 0 100px;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: visible;
}

.demo-section h2 {
    margin-bottom: 8px;
}

.demo-section .section-eyebrow {
    color: var(--purple);
}

.laptop-wrapper {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
}

/* Holo glow effect behind the laptop */
.laptop-wrapper::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -100px;
    right: -100px;
    bottom: -80px;
    background: radial-gradient(ellipse at 50% 50%,
        rgba(154, 76, 255, 0.50) 0%,
        rgba(196, 150, 255, 0.35) 25%,
        rgba(215, 184, 255, 0.18) 45%,
        transparent 65%
    );
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 1.2s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    animation: holoRotate 6s ease-in-out infinite;
}

.laptop-wrapper.holo-active::before {
    opacity: 1;
    transform: scale(1);
}

@keyframes holoRotate {
    0%, 100% {
        background: radial-gradient(ellipse at 40% 50%,
            rgba(154, 76, 255, 0.50) 0%,
            rgba(196, 150, 255, 0.35) 25%,
            rgba(215, 184, 255, 0.18) 45%,
            transparent 65%
        );
    }
    33% {
        background: radial-gradient(ellipse at 60% 40%,
            rgba(124, 58, 237, 0.55) 0%,
            rgba(154, 76, 255, 0.38) 25%,
            rgba(196, 150, 255, 0.18) 45%,
            transparent 65%
        );
    }
    66% {
        background: radial-gradient(ellipse at 50% 60%,
            rgba(196, 150, 255, 0.48) 0%,
            rgba(154, 76, 255, 0.32) 25%,
            rgba(215, 184, 255, 0.16) 45%,
            transparent 65%
        );
    }
}

.laptop-frame {
    background: #1a1a2e;
    border-radius: 16px 16px 0 0;
    padding: 12px 12px 0;
    border: 2px solid rgba(0,0,0,0.08);
    border-bottom: none;
}

.laptop-screen {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.demo-video {
    aspect-ratio: 16/9;
    border-radius: 8px 8px 0 0;
}

.laptop-base {
    height: 20px;
    background: linear-gradient(180deg, #2a2a3e 0%, #1c1c2a 100%);
    border-radius: 0 0 16px 16px;
    border: 2px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.04);
    position: relative;
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
}

/* ========================================
   CASOS DE ÉXITO
   ======================================== */

.casos {
    padding: 60px 0;
    background: var(--gray-light);
}

.casos h2 {
    margin-bottom: 48px;
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.caso-card {
    text-align: center;
}

.caso-video {
    margin-bottom: 20px;
}

.caso-card .video-placeholder {
    background: linear-gradient(135deg, var(--purple-bg) 0%, #e8deff 100%);
    border: 1px solid rgba(154, 76, 255, 0.1);
}

.caso-card .play-btn {
    box-shadow: 0 4px 20px rgba(154, 76, 255, 0.25);
}

/* ========================================
   EQUIPO
   ======================================== */

.equipo {
    padding: 60px 0;
    background: var(--white);
}

.equipo h2 {
    margin-bottom: 12px;
}

.equipo-intro {
    max-width: 700px;
}

.equipo-grid {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.equipo-member {
    text-align: center;
    width: 120px;
}

.equipo-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    margin: 0 auto 10px;
    opacity: 0.5;
    transition: var(--transition);
}

.equipo-member:hover .equipo-avatar {
    opacity: 1;
    transform: scale(1.05);
}

.equipo-member h4 {
    font-size: 0.82rem;
    margin-bottom: 2px;
}

.equipo-member p {
    font-size: 0.75rem;
    color: var(--gray);
}

.equipo-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.equipo-details p {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: 16px 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.equipo-details p:hover {
    border-color: rgba(154, 76, 255, 0.15);
    box-shadow: var(--shadow);
}

/* ========================================
   PLANES
   ======================================== */

.planes {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.planes h2 {
    margin-bottom: 12px;
}

.planes .section-subtitle {
    color: var(--gray);
    max-width: 680px;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(154, 76, 255, 0.3);
    box-shadow: 0 12px 40px rgba(154, 76, 255, 0.15);
}

.plan-featured {
    border-color: var(--purple);
    background: var(--white);
    box-shadow: 0 0 40px rgba(154, 76, 255, 0.12);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-btn);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(154, 76, 255, 0.4);
}

.plan-name {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--purple);
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--gray);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 24px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple-light);
    font-weight: 700;
}

.plan-features li:last-child {
    border-bottom: none;
}

.planes .btn-outline {
    border-color: rgba(0,0,0,0.15);
    color: var(--black);
}

.planes .btn-outline:hover {
    background: var(--gradient-btn);
    background-clip: padding-box;
    border-color: transparent;
    color: var(--white);
}

.planes-extra {
    text-align: center;
    margin-top: 40px;
    padding: 28px;
    background: var(--gray-light);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.planes-extra p {
    font-size: 0.85rem;
    color: var(--gray);
}

.planes-extra strong {
    color: var(--black);
}

/* ---- Estrategia block in Planes ---- */
.planes-estrategia {
    margin-top: 48px;
    margin-bottom: 12px;
}

.planes-estrategia-inner {
    text-align: center;
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--purple);
    background: var(--purple-bg);
    position: relative;
}

.planes-estrategia-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple);
    margin-bottom: 16px;
}

.planes-estrategia-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.planes-estrategia-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 16px;
}

.planes-estrategia-note {
    color: var(--gray);
    font-size: 0.88rem;
    font-style: italic;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .planes-estrategia-inner {
        padding: 36px 24px;
    }
}

/* ========================================
   TESTIMONIOS
   ======================================== */

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof {
    padding: 50px 0 0;
    background: var(--white);
    overflow: hidden;
}

/* ---- Header ---- */
.sp-header {
    text-align: center;
    margin-bottom: 28px;
}

.sp-header h2 {
    margin-bottom: 0;
}

/* Brand zone: rating + label + logos */
.brand-zone {
    text-align: center;
    padding-top: 10px;
}

.brand-zone-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray);
    margin: 16px 0 0;
    letter-spacing: 0.02em;
}

/* Google-style inline rating */
.sp-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-light);
    border: 1px solid #e8e8e8;
    border-radius: 100px;
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
}

.sp-rating-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.sp-rating-stars {
    font-size: 1rem;
    letter-spacing: 1px;
    color: #FBBC04;
    line-height: 1;
}

.sp-rating-divider {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1;
}

.sp-rating-text {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 400;
}

/* ---- Testimonial + Phone layout ---- */
.sp-content {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.sp-testimonial {
    flex: 1;
    min-width: 0;
}

.sp-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.sp-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.85;
    font-weight: 300;
    color: #555;
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    letter-spacing: 0.01em;
}

.sp-quote-mark {
    font-family: Georgia, serif;
    font-size: 7rem;
    font-weight: 800;
    line-height: 0;
    position: absolute;
    top: 28px;
    left: -12px;
    color: var(--purple);
    opacity: 0.18;
    pointer-events: none;
    user-select: none;
}

.sp-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(154,76,255,0.2);
    flex-shrink: 0;
}

.sp-person-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--dark);
}

.sp-person-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ---- Phone mockup ---- */
.sp-video {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.phone-mockup {
    width: 220px;
    height: 400px;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    border: 4px solid #1a1a1a;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.15),
        0 0 0 1px rgba(0,0,0,0.05);
    position: relative;
}

/* Allow counter badge to overflow outside phone */
.social-proof .phone-mockup {
    overflow: visible;
}

.social-proof .phone-mockup video {
    border-radius: 28px;
    overflow: hidden;
}

.phone-mockup video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

.sp-link:hover {
    color: var(--dark);
}

.sp-link .gradient-text {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---- Views Counter (62M) — overlay badge ---- */
.sp-views-counter {
    position: absolute;
    top: 24px;
    left: -90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    z-index: 2;
}

.sp-views-plus {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple);
    font-family: var(--font-display);
    line-height: 1;
}

.sp-views-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--purple);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    line-height: 1;
}

.sp-views-label {
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* ---- Cases Button ---- */
.sp-cases-wrap {
    text-align: center;
    margin-top: 32px;
}

.sp-cases-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    padding: 8px 22px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.sp-cases-btn:hover {
    color: var(--purple);
    border-color: rgba(154,76,255,0.2);
    background: rgba(154,76,255,0.04);
}

/* ---- Infinite Brand Logo Marquee ---- */
.brand-marquee {
    position: relative;
    width: 100%;
    padding: 28px 0 36px;
    overflow: hidden;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brand-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.brand-marquee-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.45;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.brand-marquee-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(var(--marquee-distance, -50%)); }
}

/* ========================================
   LIBRO
   ======================================== */

.libro {
    padding: 60px 0;
    background: var(--gray-light);
}

.libro h2 {
    margin-bottom: 48px;
}

.libro-content {
    display: flex;
    align-items: center;
    gap: 56px;
    max-width: 900px;
    margin: 0 auto;
}

.libro-img {
    flex-shrink: 0;
    width: 300px;
}

.libro-cover-wrap {
    position: relative;
    transition: var(--transition-slow);
}

.libro-cover-wrap:hover {
    transform: translateY(-8px) scale(1.02);
}

.libro-cover {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    /* Remove black background via blend mode */
    mix-blend-mode: multiply;
    transition: var(--transition-slow);
    filter: drop-shadow(0 8px 24px rgba(154, 76, 255, 0.18));
}

.libro-cover-wrap:hover .libro-cover {
    filter: drop-shadow(0 16px 40px rgba(154, 76, 255, 0.28));
}

/* Fallback placeholder when image is missing */
.libro-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #f5f0ff 0%, #e8deff 40%, #d7b8ff 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(154, 76, 255, 0.15);
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.libro-placeholder span {
    font-size: 3rem;
}

.libro-placeholder p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.4;
}

.libro-info {
    flex: 1;
}

.libro-text {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.7;
    text-align: left;
}

.libro-info .btn {
    display: inline-flex;
    margin-top: 16px;
}

/* ========================================
   YA HAS VISTO NUESTRO TRABAJO
   ======================================== */

.ya-visto {
    padding: 60px 0 50px;
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.ya-visto::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(154,76,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ya-visto-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.ya-visto h2 {
    margin-bottom: 8px;
}

.ya-visto-sub {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Video Carousel — Horizontal scroll like service pages */
.ya-visto-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 max(20px, calc((100vw - 1200px) / 2));
    margin-bottom: 32px;
}

.ya-visto-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.ya-visto-slide {
    min-width: 280px;
    width: 280px;
    height: 410px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-bg) 0%, #e8deff 100%);
    position: relative;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.ya-visto-slide:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(154, 76, 255, 0.18);
}

.ya-visto-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.ya-visto-nav {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.ya-visto-btn {
    width: 50px;
    height: 50px;
    border-radius: 40px;
    border: none;
    background: rgb(230, 230, 231);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    font-size: 1.1rem;
    color: var(--dark);
}

.ya-visto-btn:hover {
    background: var(--purple);
    color: var(--white);
}

.ya-visto-btn:hover svg {
    stroke: var(--white);
}

.ya-visto-bottom {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.ya-visto-line {
    width: 48px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    margin: 0 auto 24px;
}

.ya-visto-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ========================================
   FAQ
   ======================================== */

.faq {
    padding: 60px 0;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq .section-eyebrow {
    text-align: center;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.06);
}

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

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--purple);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
}

/* ========================================
   CTA FINAL
   ======================================== */

.cta-final {
    padding: 70px 0;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final h2 {
    margin-bottom: 20px;
}

.cta-final p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--gray-light);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    color: var(--gray-700);
}

.footer-glow {
    display: none;
}

.footer-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(154,76,255,0.08) 0%, transparent 70%);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.footer-email {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    display: block;
    transition: var(--transition);
    letter-spacing: -0.02em;
}

.footer-email:hover {
    color: var(--purple-light);
}

.footer-talk {
    font-size: 0.85rem;
    color: var(--purple);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 64px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--purple);
    transform: translateX(4px);
}

.footer-social {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

/* Creative social pills */
.social-pill {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 20px !important;
    border-radius: var(--radius-pill) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-bottom: 0 !important;
    position: relative;
    overflow: hidden;
}

.social-pill svg {
    flex-shrink: 0;
    transition: var(--transition);
}

.social-instagram {
    background: rgba(225,48,108,0.08);
    color: #E1306C !important;
    border: 1px solid rgba(225,48,108,0.2);
}

.social-instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: var(--white) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(225,48,108,0.3);
    border-color: transparent !important;
}

.social-linkedin {
    background: rgba(10,102,194,0.08);
    color: #5BA3E0 !important;
    border: 1px solid rgba(10,102,194,0.2);
}

.social-linkedin:hover {
    background: #0A66C2 !important;
    color: var(--white) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(10,102,194,0.3);
    border-color: transparent !important;
}

.social-tiktok {
    background: rgba(0,0,0,0.04);
    color: var(--black) !important;
    border: 1px solid rgba(0,0,0,0.08);
}

.social-tiktok:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
    border-color: transparent !important;
}

.social-pill:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-legal a {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--purple-light);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) saturate(0);
}

/* ========================================
   PREMIUM POLISH
   ======================================== */

/* Refined section spacing */
section {
    position: relative;
}

/* Subtle section dividers — removed */

/* Premium card hover lifts */
.plan-card,
.resultado-card,
.caso-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover,
.resultado-card:hover {
    box-shadow: 0 16px 48px rgba(154,76,255,0.12);
}

/* Smoother CTA section — kept white */

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Directional reveal animations */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="down"] { transform: translateY(-40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Magnetic button hover effect */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease;
}

/* Smooth section transitions */
section {
    will-change: transform;
}

/* Enhanced card tilt effect */
.resultado-card,
.plan-card,
.caso-card {
    will-change: transform;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    .planes-grid,
    .resultados-grid,
    .casos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .planes-grid .plan-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
        justify-content: center;
    }

    /* On mobile: restore pill for logo + hamburger */
    .nav-bar-inner {
        width: 100%;
        justify-content: space-between;
        padding: 6px 6px;
        position: relative;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(0, 0, 0, 0.07);
        border-radius: var(--radius-pill);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    }

    .nav-logo-circle {
        width: 42px;
        height: 42px;
        min-width: 42px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
    }

    .logo-img {
        height: 28px;
    }

    /* ---- MOBILE MENU — Fullscreen overlay ---- */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        border: none;
        border-radius: 0;
        padding: 100px 36px 32px;
        box-shadow: none;
        max-width: none;
        opacity: 0;
        overflow-y: auto;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.35s ease, transform 0.35s ease;
        z-index: 998;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navbar.scrolled .nav-links {
        max-width: none;
        height: 100vh;
        height: 100dvh;
        border: none;
        box-shadow: none;
    }

    .navbar.scrolled .nav-links:not(.active) {
        opacity: 0;
        pointer-events: none;
    }

    .navbar.scrolled .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(154, 76, 255, 0.08);
        flex-direction: column;
        align-items: center;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links > li > a,
    .nav-links > li > .nav-dropdown-toggle {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--black);
        padding: 16px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .nav-links > li > a:hover,
    .nav-links > li > .nav-dropdown-toggle:hover {
        color: var(--purple);
    }

    /* Hide original CTA on mobile (cloned into menu via JS) */
    .nav-bar-inner .nav-cta {
        display: none !important;
    }

    .nav-bar-inner .nav-cta-group {
        display: none !important;
    }

    /* Dropdown submenus */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: linear-gradient(135deg, rgba(154, 76, 255, 0.04) 0%, rgba(215, 184, 255, 0.06) 100%);
        backdrop-filter: none;
        border: none;
        border-radius: 16px;
        box-shadow: none;
        padding: 4px 0 12px 0;
        min-width: 0;
        width: 100%;
        display: none;
        opacity: 1;
        margin-bottom: 8px;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.open:hover .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu li {
        border-bottom: none;
    }

    .nav-dropdown-menu a {
        padding: 12px 16px;
        font-size: 0.92rem;
        font-weight: 400;
        color: var(--gray-700);
        border-radius: 12px;
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    .nav-dropdown-menu a:hover {
        background: rgba(154, 76, 255, 0.06);
        color: var(--purple);
    }

    .dropdown-icon {
        font-size: 1.1rem;
    }

    /* Hamburger button */
    .hamburger {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: transparent;
        border: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        z-index: 999;
        position: relative;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .scroll-text-section {
        padding: 80px 0;
    }

    .scroll-text-content {
        font-size: 1.4rem;
    }

    .scroll-text-second {
        font-size: 1.1rem;
    }

    /* Libro responsive */
    .libro-content {
        flex-direction: column;
        text-align: center;
    }

    .libro-img {
        width: 240px;
    }

    .libro-text {
        text-align: center;
    }

    .libro-info .btn {
        display: block;
        text-align: center;
    }

    .hero {
        padding: 130px 0 60px;
    }

    /* Infographic responsive */
    .infographic {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .infographic-pillar {
        max-width: 100%;
        width: 100%;
    }

    .infographic-connector {
        flex-direction: row;
        padding: 16px 0;
    }

    .connector-line {
        width: 40px;
        height: 2px;
    }

    .proceso-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proceso-image {
        order: -1;
    }

    .proceso-visual {
        order: -1;
        width: 320px;
        height: 380px;
        margin: 0 auto;
    }

    .pv-phone-left,
    .pv-phone-right {
        width: 110px;
        height: 195px;
    }

    .pv-phone-main {
        width: 155px;
        height: 275px;
    }

    .resultados-grid,
    .casos-grid,
    .planes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .planes-grid .plan-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .equipo-details {
        grid-template-columns: 1fr;
    }

    .sp-header h2 {
        font-size: 2rem;
    }

    .sp-rating {
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 16px;
        gap: 4px 8px;
    }

    .sp-rating-divider {
        display: none;
    }

    .sp-rating-text {
        width: 100%;
        text-align: center;
        font-size: 0.75rem;
    }

    .sp-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 48px;
    }

    .sp-person {
        justify-content: center;
    }

    .sp-quote {
        font-size: 0.95rem;
    }

    .sp-quote-mark {
        position: static;
        display: block;
        font-size: 3rem;
        margin-bottom: -8px;
    }

    .phone-mockup {
        width: 230px;
        height: 410px;
    }

    .brand-zone-label {
        font-size: 0.75rem;
    }

    .result-benefits {
        gap: 8px;
    }

    .result-benefit {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .ya-visto-sub {
        font-size: 1rem;
    }

    .ya-visto-slide {
        min-width: 220px;
        width: 220px;
        height: 320px;
    }

    .ya-visto-nav {
        justify-content: center;
    }

    .brand-marquee-track img {
        height: 30px;
    }

    .brand-marquee-track {
        gap: 40px;
    }

    .showcase-item {
        flex: 0 0 180px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-social {
        text-align: left;
        align-items: flex-start;
    }

    .footer-social a {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-email {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }

    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 10px 12px;
    }

    .nav-logo-circle {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .logo-img {
        height: 26px;
    }

    .libro-img {
        width: 180px;
    }

    .hero {
        padding: 120px 0 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }


    .equipo-grid {
        gap: 16px;
    }

    .equipo-member {
        width: 90px;
    }

    .equipo-avatar {
        width: 60px;
        height: 60px;
    }

    .showcase-item {
        flex: 0 0 160px;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================================
   PRENSA / PRESS SECTION
   ======================================== */

.prensa {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.prensa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.prensa-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 16px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.25s ease;
}

.prensa-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(154, 76, 255, 0.1);
    border-color: rgba(154, 76, 255, 0.2);
}

.prensa-logo {
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.3s ease;
}

.prensa-card:hover .prensa-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.prensa-title {
    font-family: var(--font);
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .prensa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .prensa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .prensa-card {
        padding: 20px 12px 18px;
    }
    .prensa-logo {
        height: 22px;
        max-width: 110px;
    }
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(154, 76, 255, 0.08);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner-text {
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--gray-700);
    line-height: 1.6;
    flex: 1;
}

.cookie-banner-text a {
    color: var(--purple);
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-btn);
    color: #fff;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(154, 76, 255, 0.3);
}

.cookie-btn-reject {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--gray-700);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--gray-400);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-btn-reject:hover {
    border-color: var(--gray-700);
    color: var(--black);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   SCROLL-TO-TOP BUTTON (mobile only)
   ======================================== */

.scroll-top-btn {
    display: none;
}

.nav-links .nav-cta-li,
.nav-links .nav-cta-li-secondary {
    display: none;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        display: flex;
        position: fixed;
        bottom: 24px;
        right: 20px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gradient-btn);
        color: #fff;
        border: none;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(154, 76, 255, 0.35);
        cursor: pointer;
        z-index: 990;
        opacity: 0;
        transform: translateY(20px) scale(0.8);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .scroll-top-btn.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .scroll-top-btn:active {
        transform: translateY(0) scale(0.92);
        box-shadow: 0 2px 12px rgba(154, 76, 255, 0.4);
    }

    /* Mobile CTA inside menu */
    .nav-cta-li {
        display: flex !important;
        list-style: none;
        padding-top: 12px;
        border-bottom: none !important;
        justify-content: center;
    }

    .nav-cta-mobile {
        display: flex !important;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        align-items: center;
        font-family: var(--font);
        font-size: 1.05rem;
        padding: 16px 32px;
        border-radius: var(--radius-pill);
        background: var(--gradient-btn);
        color: #fff !important;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        box-shadow: 0 4px 20px rgba(154, 76, 255, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-cta-mobile:active {
        transform: scale(0.97);
        box-shadow: 0 2px 12px rgba(154, 76, 255, 0.4);
    }

    /* Mobile "Sé creador" button — different design than desktop */
    .nav-cta-secondary-mobile {
        display: flex !important;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        align-items: center;
        font-family: var(--font);
        font-size: 1.05rem;
        padding: 16px 32px;
        border-radius: var(--radius-pill);
        background: transparent;
        color: var(--purple) !important;
        border: 2px solid var(--purple);
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .nav-cta-secondary-mobile:active {
        transform: scale(0.97);
        background: rgba(154, 76, 255, 0.08);
    }

    .nav-cta-li-secondary {
        display: flex !important;
        list-style: none;
        margin-top: auto;
        padding-top: 24px;
        border-bottom: none !important;
        justify-content: center;
    }
}
