/* ===== RESET ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            /* Semantic color tokens — Calming Lavender + Wellness palette */
            --primary: #8B5CF6;
            --primary-hover: #7C3AED;
            --primary-soft: rgba(139, 92, 246, 0.08);
            --primary-ring: rgba(139, 92, 246, 0.25);

            --secondary: #C4B5FD;
            --secondary-soft: rgba(196, 181, 253, 0.15);

            --accent: #7DD3C0;
            --accent-hover: #5EEAD4;

            --surface: #FAF5FF;
            --surface-warm: #FDF2F8;
            --surface-card: #FFFFFF;
            --surface-elevated: #FFFFFF;

            --text-primary: #1E1B2E;
            --text-secondary: #4A4562;
            --text-muted: #8B83A8;
            --text-on-primary: #FFFFFF;

            --border: #EDE9FE;
            --border-subtle: rgba(139, 92, 246, 0.06);

            --celeste: #89C4E1;
            --celeste-soft: rgba(137, 196, 225, 0.1);
            --rose: #F9A8D4;
            --rose-soft: rgba(249, 168, 212, 0.08);

            /* Shadows — Soft UI Evolution */
            --shadow-xs: 0 1px 2px rgba(139, 92, 246, 0.04);
            --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.06), 0 1px 3px rgba(0,0,0,0.04);
            --shadow-md: 0 8px 24px rgba(139, 92, 246, 0.08), 0 2px 8px rgba(0,0,0,0.04);
            --shadow-lg: 0 16px 48px rgba(139, 92, 246, 0.12), 0 4px 12px rgba(0,0,0,0.04);
            --shadow-xl: 0 24px 64px rgba(139, 92, 246, 0.16), 0 8px 20px rgba(0,0,0,0.06);

            /* Layout tokens */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;

            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

            --container: 1120px;
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 96px;
            --space-5xl: 128px;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-primary);
            background: var(--surface);
            line-height: 1.7;
            font-size: 16px;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
            line-height: 1.2;
            font-weight: 600;
            color: var(--text-primary);
        }

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

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-fast);
            cursor: pointer;
        }
        a:hover { color: var(--primary-hover); }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(250, 245, 255, 0.85);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-base), box-shadow var(--transition-base);
        }
        .nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-sm);
        }

        .nav-inner {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--space-lg);
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-logo {
            font-family: 'Cormorant', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-logo img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }
        .nav-logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: var(--space-xl);
            list-style: none;
        }
        .nav-links a {
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.02em;
            padding: 6px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            transition: width var(--transition-base);
        }
        .nav-links a:hover {
            color: var(--text-primary);
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }

        .nav-social {
            display: flex;
            gap: 12px;
        }
        .nav-social a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-full);
            color: var(--text-muted);
            background: transparent;
            transition: all var(--transition-fast);
        }
        .nav-social a:hover {
            color: var(--primary);
            background: var(--primary-soft);
        }
        .nav-social svg {
            width: 18px;
            height: 18px;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 44px;
            height: 44px;
            padding: 10px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }
        .nav-toggle:hover { background: var(--primary-soft); }
        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 1px;
            transition: all var(--transition-base);
        }
        .nav-toggle span + span { margin-top: 6px; }
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(3px, 3px);
        }
        .nav-toggle.active span:nth-child(2) { opacity: 0; }
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            align-items: center;
            padding-top: 72px;
            background: var(--surface);
            position: relative;
            overflow: hidden;
        }

        /* Decorative orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }
        .hero-orb--1 {
            width: 500px; height: 500px;
            top: -10%; right: -5%;
            background: rgba(139, 92, 246, 0.06);
        }
        .hero-orb--2 {
            width: 400px; height: 400px;
            bottom: -15%; left: -8%;
            background: rgba(137, 196, 225, 0.06);
        }
        .hero-orb--3 {
            width: 300px; height: 300px;
            top: 30%; left: 40%;
            background: rgba(249, 168, 212, 0.04);
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
            align-items: center;
            position: relative;
            z-index: 1;
            padding: var(--space-4xl) 0;
        }

        .hero-content { max-width: 520px; }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--primary);
            margin-bottom: var(--space-lg);
            padding: 6px 16px;
            background: var(--primary-soft);
            border-radius: var(--radius-full);
        }
        .hero-eyebrow svg {
            width: 14px; height: 14px;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: var(--space-sm);
            line-height: 1.05;
        }

        .hero-subtitle {
            font-family: 'Cormorant', serif;
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
            font-weight: 500;
            font-style: italic;
            color: var(--primary);
            margin-bottom: var(--space-lg);
        }

        .hero-text {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: var(--space-xl);
            max-width: 440px;
        }

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

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 440px;
        }

        .hero-photo {
            width: 100%;
            aspect-ratio: 3 / 4;
            border-radius: 200px 200px var(--radius-xl) var(--radius-xl);
            overflow: hidden;
            background: linear-gradient(160deg, var(--secondary-soft) 0%, var(--celeste-soft) 50%, var(--rose-soft) 100%);
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .hero-photo::after {
            content: 'Tu foto';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .hero-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
        }
        .hero-photo:has(img)::after { display: none; }

        /* Floating cards on hero image */
        .hero-float {
            position: absolute;
            background: var(--surface-card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero-float--badge {
            bottom: 60px;
            left: -40px;
        }
        .hero-float--heart {
            top: 80px;
            right: -30px;
        }
        .hero-float-icon {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .hero-float-icon--purple { background: var(--primary-soft); color: var(--primary); }
        .hero-float-icon--rose { background: var(--rose-soft); color: #E84D6D; }
        .hero-float-text {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.3;
        }
        .hero-float-text small {
            display: block;
            font-size: 0.6875rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        /* Decorative ring behind hero image */
        .hero-ring {
            position: absolute;
            top: -20px; left: -20px; right: -20px; bottom: -20px;
            border: 1px solid var(--border);
            border-radius: 220px 220px 44px 44px;
            pointer-events: none;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            padding: 14px 28px;
            border-radius: var(--radius-full);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all var(--transition-base);
            white-space: nowrap;
        }
        .btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

        .btn-primary {
            background: var(--primary);
            color: var(--text-on-primary);
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
        }
        .btn-primary:hover {
            background: var(--primary-hover);
            color: var(--text-on-primary);
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
            transform: translateY(-1px);
        }
        .btn-primary:active { transform: translateY(0); }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border-color: var(--border);
        }
        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-soft);
        }

        .btn-group {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
        }

        /* ===== SECTION SYSTEM ===== */
        .section {
            padding: var(--space-5xl) 0;
        }
        .section-alt {
            background: var(--surface-card);
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--primary);
            margin-bottom: var(--space-md);
        }
        .section-eyebrow::before,
        .section-eyebrow::after {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--secondary);
        }

        .section-header h2 {
            font-size: clamp(2rem, 4.5vw, 3rem);
            font-weight: 700;
            margin-bottom: var(--space-md);
            letter-spacing: -0.01em;
        }

        .section-header p {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ===== BOOK SECTIONS ===== */
        .book-layout {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: var(--space-4xl);
            align-items: center;
        }
        .book-layout--reverse {
            grid-template-columns: 1fr 380px;
        }
        .book-layout--reverse .book-cover { order: 2; }
        .book-layout--reverse .book-info { order: 1; }

        .book-cover {
            position: relative;
        }

        .book-cover-img {
            width: 100%;
            aspect-ratio: 3 / 4;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-xl);
            transition: transform var(--transition-slow);
        }
        .book-cover:hover .book-cover-img {
            transform: translateY(-4px);
        }

        .book-cover-img--libro {
            background: linear-gradient(160deg, #E9D8FD 0%, #C4B5FD 40%, #8B5CF6 100%);
        }
        .book-cover-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .book-cover-img img + .sr-only { position: absolute; }
        .book-cover-img:has(img)::after { display: none; }
        .book-cover-img--diario {
            background: linear-gradient(160deg, #BAE6FD 0%, #89C4E1 40%, #7DD3C0 100%);
        }
        .book-cover-img::after {
            content: 'Portada';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.9375rem;
            color: rgba(255,255,255,0.7);
            font-weight: 500;
        }

        /* Decorative spine */
        .book-cover::before {
            content: '';
            position: absolute;
            top: 4px; bottom: 4px;
            left: -6px;
            width: 6px;
            background: rgba(0,0,0,0.08);
            border-radius: 2px 0 0 2px;
        }

        /* Book shadow */
        .book-cover::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 12%;
            right: 12%;
            height: 32px;
            background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
            filter: blur(4px);
        }

        .book-info h3 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: var(--space-sm);
            letter-spacing: -0.01em;
        }

        .book-tagline {
            font-family: 'Cormorant', serif;
            font-style: italic;
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: var(--space-lg);
        }

        .book-info p {
            color: var(--text-secondary);
            margin-bottom: var(--space-md);
            line-height: 1.75;
        }

        .book-price {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--primary);
            margin-top: var(--space-sm);
        }

        .book-cta {
            margin-top: var(--space-xl);
        }

        /* Reviews */
        .reviews {
            margin-top: var(--space-xl);
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .review {
            padding: var(--space-lg);
            border-radius: var(--radius-md);
            background: var(--surface);
            border: 1px solid var(--border);
            transition: border-color var(--transition-fast);
        }
        .review:hover {
            border-color: var(--secondary);
        }

        /* Reseñas ilustradas: capturas reales compartidas por lectoras, a
           ancho completo debajo de la portada + reseñas de texto */
        .resenas-ilustradas {
            margin-top: var(--space-3xl);
            padding-top: var(--space-3xl);
            border-top: 1px solid var(--border);
        }
        .resenas-ilustradas-titulo {
            text-align: center;
            font-family: 'Cormorant', serif;
            font-style: italic;
            font-size: 1.375rem;
            color: var(--primary);
            margin-bottom: var(--space-xl);
        }

        /* ===== CIENTOS DE PERSONAS (prueba social del libro) ===== */
        .cientos-personas-inner {
            text-align: center;
        }
        .cientos-personas-inner h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            margin-bottom: var(--space-xl);
        }

        /* ===== CARRUSEL "POLAROID" — compartido por reseñas ilustradas y
           cientos-de-personas. Scroll horizontal nativo (sin JS), cada
           tarjeta ligeramente rotada como una foto pinchada en un corcho;
           al pasar el ratón se endereza y se eleva. ===== */
        .resenas-ilustradas-carrusel {
            position: relative;
            margin: 0 calc(var(--space-lg) * -1);
            padding: var(--space-lg) var(--space-lg) var(--space-xl);
            -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
        }
        .resenas-ilustradas-track {
            display: flex;
            gap: var(--space-xl);
            overflow-x: auto;
            scroll-snap-type: x proximity;
            scroll-padding: 0 var(--space-lg);
            padding: var(--space-lg) var(--space-lg);
            scrollbar-width: none;
        }
        .resenas-ilustradas-track::-webkit-scrollbar { display: none; }

        .resena-card {
            flex: 0 0 auto;
            width: 200px;
            background: var(--surface-card);
            padding: 10px 10px 22px;
            border-radius: 6px;
            box-shadow: var(--shadow-lg);
            scroll-snap-align: start;
            transition: transform var(--transition-base), box-shadow var(--transition-base), z-index 0s;
            cursor: pointer;
        }
        .resena-card img {
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            border-radius: 2px;
            display: block;
        }
        .resena-card.rot-a { transform: rotate(-4deg); }
        .resena-card.rot-b { transform: rotate(3deg); }
        .resena-card.rot-c { transform: rotate(-2deg); }
        .resena-card:hover {
            transform: rotate(0deg) scale(1.06) translateY(-6px);
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .resenas-ilustradas-carrusel { margin: 0 calc(var(--space-md) * -1); }
            .resena-card { width: 150px; }
        }

        .review-stars {
            display: flex;
            gap: 2px;
            margin-bottom: var(--space-sm);
        }
        .review-stars svg {
            width: 14px; height: 14px;
            fill: #FBBF24;
        }

        .review blockquote {
            font-family: 'Cormorant', serif;
            font-style: italic;
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: var(--space-sm);
        }

        .review cite {
            font-family: 'Montserrat', sans-serif;
            font-style: normal;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--primary);
        }

        /* ===== ABOUT SECTION ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
            align-items: center;
        }

        .about-photo-wrapper {
            position: relative;
        }

        .about-photo {
            width: 100%;
            aspect-ratio: 4 / 5;
            border-radius: var(--radius-xl);
            overflow: hidden;
            background: linear-gradient(160deg, var(--surface-warm) 0%, var(--secondary-soft) 100%);
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .about-photo::after {
            content: 'Tu foto';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .about-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
        }
        .about-photo:has(img)::after { display: none; }

        /* Decorative accent dot */
        .about-photo-wrapper::before {
            content: '';
            position: absolute;
            top: -16px; right: -16px;
            width: 80px; height: 80px;
            border-radius: 50%;
            background: var(--secondary-soft);
            z-index: -1;
        }

        /* Second photo, "polaroid" style inset in the corner */
        .about-photo-secondary {
            position: absolute;
            bottom: -24px; right: -24px;
            width: 140px; height: 140px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--surface-card);
            padding: 6px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
        }
        .about-photo-secondary img {
            width: 100%; height: 100%;
            object-fit: cover;
            border-radius: calc(var(--radius-lg) - 4px);
            display: block;
        }
        @media (max-width: 1024px) {
            .about-photo-secondary { width: 100px; height: 100px; bottom: -16px; right: -16px; }
        }

        .about-text h3 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: var(--space-lg);
        }
        .about-text p {
            color: var(--text-secondary);
            margin-bottom: var(--space-md);
            line-height: 1.75;
        }

        .about-stats {
            display: flex;
            gap: var(--space-xl);
            margin-top: var(--space-xl);
            padding-top: var(--space-xl);
            border-top: 1px solid var(--border);
        }

        .stat {
            text-align: center;
            flex: 1;
        }
        .stat-number {
            font-family: 'Cormorant', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-top: var(--space-xs);
        }

        /* ===== MEDIA / RADIO SECTION ===== */
        .radio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }

        .radio-card {
            background: var(--surface-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all var(--transition-base);
        }
        .radio-card:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .radio-card-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: linear-gradient(135deg, var(--primary-soft) 0%, var(--celeste-soft) 100%);
            position: relative;
            overflow: hidden;
        }
        .radio-card-img::after {
            content: 'Foto del programa';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.8125rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .radio-card-img img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
        }
        .radio-card-img:has(img)::after { display: none; }

        /* Play icon overlay */
        .radio-card-img .play-icon {
            position: absolute;
            bottom: 12px; right: 12px;
            width: 36px; height: 36px;
            border-radius: var(--radius-full);
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.8);
            transition: all var(--transition-base);
        }
        .radio-card:hover .play-icon {
            opacity: 1;
            transform: scale(1);
        }
        .play-icon svg {
            width: 14px; height: 14px;
            fill: white;
            margin-left: 2px;
        }

        .radio-card-body {
            padding: var(--space-lg);
        }

        .radio-card-body h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: var(--space-sm);
        }

        .radio-card-body p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: var(--space-md);
        }

        .card-link {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }
        .card-link svg {
            width: 14px; height: 14px;
            transition: transform var(--transition-fast);
        }
        .card-link:hover svg {
            transform: translateX(3px);
        }

        /* ===== TALKS SECTION ===== */
        .talks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }

        .talk-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--surface-card);
            border: 1px solid var(--border);
            transition: all var(--transition-base);
        }
        .talk-card:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .talk-video {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: var(--text-primary);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        /* Subtle film grain */
        .talk-video::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, rgba(137,196,225,0.1) 100%);
        }
        .talk-video::after {
            content: 'Foto pendiente';
            position: relative;
            z-index: 1;
            font-size: 0.8125rem;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
        }
        .talk-video img {
            position: absolute;
            inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
        }
        .talk-video:has(img)::after { display: none; }

        .talk-play {
            width: 56px; height: 56px;
            border-radius: var(--radius-full);
            background: rgba(255,255,255,0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-base);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            cursor: pointer;
            position: relative;
            z-index: 1;
        }
        .talk-card:hover .talk-play {
            transform: scale(1.08);
            background: var(--surface-card);
        }
        .talk-play svg {
            width: 20px; height: 20px;
            fill: var(--primary);
            margin-left: 3px;
        }

        .talk-card .card-body {
            padding: var(--space-lg);
        }
        .talk-card h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: var(--space-sm);
        }
        .talk-card p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== NEXT EVENT BANNER ===== */
        .next-event {
            margin-top: var(--space-2xl);
            display: flex;
            align-items: center;
            gap: var(--space-md);
            flex-wrap: wrap;
            background: var(--primary-soft);
            border: 1px solid var(--primary-ring);
            border-radius: var(--radius-lg);
            padding: var(--space-lg) var(--space-xl);
        }
        .next-event-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            border-radius: var(--radius-full);
            background: var(--primary);
            color: var(--text-on-primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .next-event-icon svg { width: 20px; height: 20px; }
        .next-event-text {
            flex: 1;
            font-size: 0.9375rem;
            color: var(--text-secondary);
        }
        .next-event-text strong { color: var(--text-primary); }
        .next-event .card-link { flex-shrink: 0; }

        /* ===== DOWNLOAD SECTION ===== */
        .download {
            position: relative;
            overflow: hidden;
        }

        .download-inner {
            background: var(--primary);
            border-radius: var(--radius-xl);
            padding: var(--space-4xl) var(--space-3xl);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements */
        .download-inner::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 200px; height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
        }
        .download-inner::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -40px;
            width: 250px; height: 250px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
        }

        .download h2 {
            color: var(--text-on-primary);
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            margin-bottom: var(--space-md);
            position: relative;
            z-index: 1;
        }

        .download p {
            color: rgba(255,255,255,0.85);
            font-size: 1.0625rem;
            max-width: 460px;
            margin: 0 auto var(--space-xl);
            position: relative;
            z-index: 1;
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            background: var(--surface-card);
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9375rem;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: var(--radius-full);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
        }
        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.18);
        }
        .btn-download svg {
            width: 18px; height: 18px;
        }
        .btn-download:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none !important;
        }

        .planificador-form {
            position: relative;
            z-index: 1;
        }
        .planificador-fields {
            display: flex;
            gap: var(--space-sm);
            flex-wrap: wrap;
            justify-content: center;
        }
        .planificador-fields input {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9375rem;
            padding: 14px 18px;
            border-radius: var(--radius-full);
            border: none;
            min-width: 200px;
            background: rgba(255,255,255,0.95);
            color: var(--text-primary);
        }
        .planificador-fields input::placeholder { color: var(--text-muted); }
        .planificador-fields input:focus-visible {
            outline: 2px solid var(--surface-card);
            outline-offset: 2px;
        }
        .planificador-status {
            margin-top: var(--space-md);
            font-size: 0.875rem;
            color: rgba(255,255,255,0.9);
            min-height: 1.2em;
        }

        /* ===== GALLERY / AULA VIVA ===== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 240px 240px;
            gap: var(--space-md);
        }

        .gallery-item {
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all var(--transition-base);
        }
        .gallery-item:hover {
            transform: scale(1.02);
        }

        .gallery-item-bg,
        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Placeholder backgrounds */
        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
            background: linear-gradient(160deg, #E9D8FD 0%, #C4B5FD 100%);
        }
        .gallery-item:nth-child(2) { background: linear-gradient(160deg, #BAE6FD 0%, #89C4E1 100%); }
        .gallery-item:nth-child(3) { background: linear-gradient(160deg, #FECDD3 0%, #F9A8D4 100%); }
        .gallery-item:nth-child(4) { background: linear-gradient(160deg, #D9F99D 0%, #BEF264 100%); }
        .gallery-item:nth-child(5) { background: linear-gradient(160deg, #FDE68A 0%, #FCD34D 100%); }
        .gallery-item:nth-child(6) {
            grid-column: span 2;
            background: linear-gradient(160deg, #C7D2FE 0%, #A5B4FC 100%);
        }

        /* Hover overlay */
        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(139, 92, 246, 0);
            transition: background var(--transition-base);
        }
        .gallery-item:hover::after {
            background: rgba(139, 92, 246, 0.08);
        }

        /* Labels */
        .gallery-label {
            position: absolute;
            bottom: 12px; left: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-primary);
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(8px);
            padding: 4px 12px;
            border-radius: var(--radius-full);
            z-index: 1;
            pointer-events: none;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--text-primary);
            color: rgba(255,255,255,0.6);
            padding: var(--space-3xl) 0 var(--space-xl);
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: var(--space-3xl);
            padding-bottom: var(--space-xl);
            margin-bottom: var(--space-xl);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-logo {
            font-family: 'Cormorant', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--surface-card);
            margin-bottom: var(--space-md);
        }

        .footer-brand p {
            font-size: 0.875rem;
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-social {
            display: flex;
            gap: var(--space-md);
            margin-top: var(--space-lg);
        }
        .footer-social a {
            width: 40px; height: 40px;
            border-radius: var(--radius-full);
            background: rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            transition: all var(--transition-fast);
        }
        .footer-social a:hover {
            background: var(--primary);
            color: var(--surface-card);
        }
        .footer-social svg { width: 18px; height: 18px; }

        .footer h5 {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.9);
            margin-bottom: var(--space-lg);
        }

        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover { color: var(--secondary); }

        .footer-bottom {
            text-align: center;
            font-size: 0.8125rem;
            color: rgba(255,255,255,0.3);
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 80ms; }
        .reveal-delay-2 { transition-delay: 160ms; }
        .reveal-delay-3 { transition-delay: 240ms; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
                gap: var(--space-2xl);
                padding: var(--space-3xl) 0;
            }
            .hero-content { max-width: 100%; margin: 0 auto; }
            .hero-text { margin: 0 auto var(--space-xl); }
            .hero-image-wrapper { max-width: 340px; margin: 0 auto; }
            .hero-float--badge { left: -20px; }
            .hero-float--heart { right: -20px; }
            .btn-group { justify-content: center; }

            .book-layout,
            .book-layout--reverse {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }
            .book-layout--reverse .book-cover { order: 0; }
            .book-layout--reverse .book-info { order: 0; }
            .book-cover { max-width: 280px; margin: 0 auto; }
            .book-info { text-align: center; }

            .about-grid {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
                text-align: center;
            }
            .about-photo-wrapper { max-width: 320px; margin: 0 auto; }
            .about-stats { justify-content: center; }

            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-brand p { margin: 0 auto; }
            .footer-social { justify-content: center; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-social { display: none; }
            .nav-toggle { display: block; }

            /* Mobile menu */
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 72px; left: 0; right: 0;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: var(--space-lg) var(--space-lg) var(--space-xl);
                box-shadow: var(--shadow-lg);
                gap: 4px;
                border-bottom: 1px solid var(--border);
            }
            .nav-links.active a {
                padding: 12px var(--space-md);
                border-radius: var(--radius-sm);
                font-size: 0.9375rem;
            }
            .nav-links.active a:hover {
                background: var(--primary-soft);
            }
            .nav-links.active a::after { display: none; }

            /* Mobile social in menu */
            .nav-mobile-social {
                display: flex;
                justify-content: center;
                gap: var(--space-md);
                padding-top: var(--space-md);
                margin-top: var(--space-md);
                border-top: 1px solid var(--border);
            }

            .section { padding: var(--space-3xl) 0; }
            .section-header { margin-bottom: var(--space-2xl); }

            .radio-grid { grid-template-columns: 1fr; }
            .talks-grid { grid-template-columns: 1fr; }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: 180px 180px 180px;
            }
            .gallery-item:nth-child(1) { grid-row: span 1; }
            .gallery-item:nth-child(6) { grid-column: span 2; }

            .download-inner {
                padding: var(--space-3xl) var(--space-lg);
                border-radius: var(--radius-lg);
            }
        }

        @media (max-width: 480px) {
            :root {
                --space-lg: 20px;
            }
            .about-stats { flex-direction: column; gap: var(--space-md); }
            .hero-float { display: none; }
            .hero-ring { display: none; }
        }

        /* ===== BLOG / ARTÍCULOS ===== */
        .article-page {
            padding: calc(72px + var(--space-3xl)) 0 var(--space-4xl);
            max-width: 720px;
            margin: 0 auto;
        }
        .article-page .article-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: var(--space-lg);
        }
        .article-page .article-cover {
            width: 100%;
            border-radius: var(--radius-lg);
            margin-bottom: var(--space-xl);
            box-shadow: var(--shadow-md);
        }
        .article-page .article-meta {
            font-size: 0.8125rem;
            color: var(--text-muted);
            margin-bottom: var(--space-sm);
        }
        .article-page h1 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            margin-bottom: var(--space-lg);
        }
        .article-page .article-body {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .article-page .article-body h2,
        .article-page .article-body h3 { margin: var(--space-xl) 0 var(--space-md); color: var(--text-primary); }
        .article-page .article-body p { margin-bottom: var(--space-md); }
        .article-page .article-body img { border-radius: var(--radius-md); margin: var(--space-lg) 0; }
        .article-page .article-body a { text-decoration: underline; }
        .article-page .article-body blockquote {
            border-left: 3px solid var(--primary);
            padding-left: var(--space-md);
            font-family: 'Cormorant', serif;
            font-style: italic;
            color: var(--text-primary);
            margin: var(--space-lg) 0;
        }

        .article-list-page {
            padding: calc(72px + var(--space-3xl)) 0 var(--space-4xl);
        }
        .article-list-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }
        .article-card {
            background: var(--surface-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all var(--transition-base);
            display: block;
        }
        .article-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-card .article-card-body { padding: var(--space-lg); }
        .article-card h3 { font-size: 1.125rem; margin-bottom: var(--space-sm); color: var(--text-primary); }
        .article-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
        .article-list-empty { text-align: center; color: var(--text-muted); padding: var(--space-4xl) 0; }

        @media (max-width: 768px) {
            .article-list-grid { grid-template-columns: 1fr; }
        }

        /* ===== PLANIFICADOR (descarga de PDFs) ===== */
        .planificador-page { padding: calc(72px + var(--space-3xl)) 0 var(--space-4xl); }
        .mes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-lg);
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }
        .mes-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            background: var(--surface-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: var(--space-xl) var(--space-md);
            text-align: center;
            transition: all var(--transition-base);
        }
        .mes-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--text-primary); }
        .mes-icon { width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; }
        .mes-icon svg { width: 22px; height: 22px; }
        .mes-nombre { font-family: 'Cormorant', serif; font-size: 1.25rem; font-weight: 600; color: var(--text-primary); }
        .mes-descargar { font-size: 0.8125rem; font-weight: 600; color: var(--primary); }
        @media (max-width: 768px) {
            .mes-grid { grid-template-columns: repeat(2, 1fr); }
        }