/* ============================================
   TABLE OF CONTENTS
   1. DESIGN SYSTEM (Variables CSS)
   2. RESET & BASE
   3. TYPOGRAPHY ELEGANTE
   4. HEADER GLASS + NAVIGATION
   5. FOOTER SOFISTICADO
   6. HERO SECTION (Impactante)
   7. PHILOSOPHY SECTION
   8. FEATURED SERVICES
   9. FEATURED BOOK (Editorial)
   10. ABOUT PAGE
   11. SERVICES PAGE
   12. BOOKS PAGE (Landing editorial)
   13. CONTACT PAGE
   14. ANIMACIONES Y MICROINTERACCIONES
   15. RESPONSIVE (Mobile First)
============================================ */

/* ========== 1. DESIGN SYSTEM ========== */
:root {
    /* Paleta principal - Serenidad y elegancia */
    --paper: #FBF9F4;
    --ivory: #F5F2EB;
    --bone: #EDE8DF;
    --warm-gray: #E3DDD3;
    --charcoal-light: #3D3B37;
    --charcoal: #2C2A27;
    --ink: #1A1917;
    
    /* Toques de color */
    --deep-teal: #1A4A5F;
    --sage: #6B8F7A;
    --dusty-gold: #C9A96E;
    --clay: #B87B5B;
    
    /* Fondos */
    --bg-primary: var(--paper);
    --bg-secondary: var(--ivory);
    --bg-card: #FFFFFF;
    --bg-glass: rgba(251, 249, 244, 0.92);
    
    /* Textos */
    --text-primary: var(--ink);
    --text-secondary: #4A4843;
    --text-tertiary: #7A7770;
    --text-light: #A5A299;
    
    /* Bordes y sombras */
    --border-subtle: 1px solid rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 45px -12px rgba(0, 0, 0, 0.1);
    --shadow-elevated: 0 30px 50px -15px rgba(0, 0, 0, 0.08);
    
    /* Tipografías premium */
    --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, 'Segoe UI', 'Roboto', sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    
    /* Layout */
    --container-width: 1320px;
    --container-padding: 2rem;
    --section-spacing: 7rem;
    --section-spacing-mobile: 4rem;
    
    /* Transiciones */
    --transition-smooth: all 0.5s cubic-bezier(0.2, 0.95, 0.4, 1);
    --transition-fast: all 0.25s ease;
}

/* ========== 2. RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: var(--font-regular);
    font-size: 1rem;
    letter-spacing: -0.01em;
}

::selection {
    background: var(--dusty-gold);
    color: white;
}

/* ========== 3. TYPOGRAPHY ELEGANTE ========== */
h1, h2, h3, h4, .logo-link, .hero-title, .section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: var(--font-light);
    letter-spacing: 0.3px;
}

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

/* ========== 4. HEADER GLASS + NAVIGATION ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: var(--border-subtle);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(251, 249, 244, 0.98);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.2rem var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: -0.1rem;
    position: relative;
    padding-bottom: 2px;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dusty-gold);
    transition: width 0.4s ease;
}

.logo-link:hover::after {
    width: 100%;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sage);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-primary);
}

.btn-cta {
    background: transparent;
    border: 1.5px solid var(--deep-teal);
    padding: 0.6rem 1.6rem;
    border-radius: 40px;
    text-decoration: none;
    color: var(--deep-teal);
    font-size: 0.85rem;
    font-weight: var(--font-semibold);
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.btn-cta:hover {
    background: var(--deep-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 74, 95, 0.2);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-line {
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.nav-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    backdrop-filter: blur(30px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile-container {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.nav-mobile-overlay.active .nav-mobile-container {
    transform: translateY(0);
}

.nav-mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-mobile-link {
    font-size: 2rem;
    font-family: var(--font-serif);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.nav-mobile-link:hover {
    color: var(--deep-teal);
}

.mobile-cta-wrapper {
    margin-top: 2.5rem;
}

.btn-cta-mobile {
    display: inline-block;
    border: 1.5px solid var(--deep-teal);
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    color: var(--deep-teal);
    font-weight: var(--font-semibold);
}

/* ========== 5. FOOTER SOFISTICADO ========== */
.site-footer {
    background: var(--bg-secondary);
    margin-top: var(--section-spacing);
    padding: 4rem 0 1.5rem;
    border-top: var(--border-subtle);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.footer-quote {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 260px;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: var(--font-semibold);
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.footer-nav-list, .footer-contact-list {
    list-style: none;
}

.footer-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 2;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--deep-teal);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.social-link {
    text-decoration: none;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--dusty-gold);
}

.footer-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-input {
    flex: 1;
    background: white;
    border: var(--border-subtle);
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 40px;
    font-family: var(--font-sans);
}

.footer-input:focus {
    outline: none;
    border-color: var(--sage);
}

.footer-btn {
    background: var(--deep-teal);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.footer-btn:hover {
    background: var(--sage);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ========== 6. HERO SECTION ========== */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: var(--font-semibold);
}

.hero-title {
    margin: 1rem 0 2.5rem;
    line-height: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: var(--font-semibold);
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: var(--deep-teal);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(26, 74, 95, 0.2);
}

.btn-primary:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 143, 122, 0.25);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--dusty-gold);
    color: var(--dusty-gold);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--dusty-gold);
    color: white;
    transform: translateY(-2px);
}

.hero-quote-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    border-left: 4px solid var(--dusty-gold);
    box-shadow: var(--shadow-elevated);
}

.hero-quote {
    font-size: 1.3rem;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary);
}

.quote-author {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* ========== 7. PHILOSOPHY SECTION ========== */
.philosophy {
    padding: var(--section-spacing) 0;
}

.philosophy-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.philosophy-text {
    flex: 1.5;
    min-width: 280px;
}

.section-title-light {
    font-size: 2rem;
    font-family: var(--font-serif);
    margin-bottom: 1.2rem;
}

.philosophy-paragraph {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.philosophy-stats {
    flex: 1;
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    font-weight: var(--font-semibold);
    color: var(--deep-teal);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .philosophy-grid {
        gap: 2.5rem;
    }
    
    .section-title-light {
        font-size: 1.75rem;
    }
    
    .philosophy-stats {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .philosophy-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .philosophy-text {
        flex: auto;
        width: 100%;
    }
    
    .section-title-light {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .philosophy-paragraph {
        font-size: 1rem;
        text-align: center;
    }
    
    .philosophy-stats {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding: 1.5rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .philosophy {
        padding: calc(var(--section-spacing) * 0.7) 0;
    }
    
    .section-title-light {
        font-size: 1.35rem;
    }
    
    .philosophy-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .philosophy-stats {
        gap: 1.5rem;
        padding: 1.25rem;
        border-radius: 24px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
}

/* ========== 8. FEATURED SERVICES ========== */
.featured-services {
    background: var(--bg-secondary);
    padding: var(--section-spacing) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 28px;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.service-link {
    text-decoration: none;
    color: var(--deep-teal);
    font-weight: var(--font-medium);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--dusty-gold);
    padding-left: 5px;
}

/* ========== 9. FEATURED BOOK ========== */
.featured-book {
    padding: var(--section-spacing) 0;
}

.book-preview {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.book-cover-art {
    width: 100%;
    max-width: 340px;
    height: 500px;
    margin: 0 auto;
    position: relative;
}

.book-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Efecto de gradiente y brillo similar al fictional-cover */
.book-cover-art::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

/* Efecto de overlay para simular el tono del fictional-cover */
.book-cover-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(214, 207, 184, 0.05), rgba(194, 184, 154, 0.03));
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

.book-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dusty-gold);
    margin-bottom: 1rem;
}

.book-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.book-sub {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.book-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-outline, .btn-ghost {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: var(--transition-fast);
}

.btn-outline {
    border: 1.5px solid var(--deep-teal);
    color: var(--deep-teal);
    margin-right: 1rem;
}

.btn-outline:hover {
    background: var(--deep-teal);
    color: white;
}

.btn-ghost {
    border: 1.5px solid var(--dusty-gold);
    color: var(--dusty-gold);
}

.btn-ghost:hover {
    background: var(--dusty-gold);
    color: white;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .book-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .book-cover-art {
        max-width: 260px;
        height: 420px;
    }
    
    .book-title {
        font-size: 2rem;
    }
}

/* ========== 10. CTA SECTION ========== */
.cta-inspire {
    background: var(--charcoal);
    color: white;
    text-align: center;
    padding: 5rem 0;
    margin-top: var(--section-spacing);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-inspire .btn-primary {
    background: var(--dusty-gold);
    box-shadow: none;
}

.cta-inspire .btn-primary:hover {
    background: var(--sage);
}

/* ========== 14. ANIMACIONES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .philosophy-text, .book-preview, .hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

/* ========== 15. RESPONSIVE ========== */
@media (max-width: 968px) {
    :root {
        --section-spacing: 4rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .book-preview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .philosophy-grid {
        flex-direction: column;
    }
    
    .philosophy-stats {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-desktop, .cta-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-top: 0.1rem;  /* Aumenta este valor */

    }
    
    .hero-quote {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-quote {
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        margin: 0;
    }
    
    .hero-quote-card {
        padding: 1.5rem;
    }
}

/* ========== ABOUT PAGE - ESTILOS ADICIONALES ========== */

/* Page Hero */
.page-hero {
    padding: 9rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.page-hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.page-hero-divider {
    width: 60px;
    height: 2px;
    background: var(--dusty-gold);
    margin: 1.5rem auto;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

/* Bio Intro */
.bio-intro {
    padding: 4rem 0;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.bio-lead {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--deep-teal);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.bio-divider {
    width: 50px;
    height: 1px;
    background: var(--sage);
    margin: 1.5rem 0;
}

.bio-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.bio-quote-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.bio-quote-icon {
    font-size: 4rem;
    font-family: var(--font-serif);
    color: var(--dusty-gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bio-quote {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.bio-quote-author {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Credentials */
.credentials {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.credential-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.credential-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.credential-card h3 {
    font-size: 1.1rem;
    color: var(--dusty-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.credential-title {
    font-weight: var(--font-semibold);
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.credential-desc {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    padding: 5rem 0;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sage);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-year {
    min-width: 100px;
    font-size: 1.2rem;
    font-weight: var(--font-semibold);
    color: var(--deep-teal);
    font-family: var(--font-serif);
}

.timeline-content {
    background: var(--bg-card);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Philosophy Deep */
.philosophy-deep {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.philosophy-deep-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-deep-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.philosophy-deep-divider {
    width: 50px;
    height: 2px;
    background: var(--dusty-gold);
    margin-bottom: 1.5rem;
}

.philosophy-list {
    list-style: none;
    margin-top: 2rem;
}

.philosophy-list li {
    margin-bottom: 1.8rem;
}

.philosophy-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--deep-teal);
    margin-bottom: 0.3rem;
}

.philosophy-list span {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* Visual Symbol */
.philosophy-deep-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-symbol {
    position: relative;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(107, 143, 122, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.symbol-circle {
    width: 180px;
    height: 180px;
    border: 1px solid var(--sage);
    border-radius: 50%;
    position: absolute;
    animation: pulse 4s ease-in-out infinite;
}

.symbol-water {
    font-size: 3rem;
    position: absolute;
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.symbol-earth {
    font-size: 2.5rem;
    position: absolute;
    bottom: 20%;
    right: 10%;
    animation: float 3.5s ease-in-out infinite reverse;
}

.symbol-star {
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 8s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

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

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Invitation */
.invitation {
    padding: 5rem 0;
}

.invitation-card {
    background: linear-gradient(135deg, var(--deep-teal) 0%, #0F3A48 100%);
    border-radius: 32px;
    padding: 3.5rem;
    text-align: center;
    color: white;
}

.invitation-card h2 {
    color: white;
    margin-bottom: 1rem;
}

.invitation-card p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.invitation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.invitation-card .btn-primary {
    background: white;
    color: var(--deep-teal);
}

.invitation-card .btn-primary:hover {
    background: var(--dusty-gold);
    color: white;
}

.invitation-card .btn-secondary {
    border-color: white;
    color: white;
}

.invitation-card .btn-secondary:hover {
    background: white;
    color: var(--deep-teal);
}

/* Responsive about */
@media (max-width: 968px) {
    .bio-grid,
    .philosophy-deep-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 80px;
    }
    
    .timeline-year {
        min-width: 70px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-year {
        margin-bottom: 0.5rem;
    }
    
    .invitation-card {
        padding: 2rem;
    }
    
    .bio-quote {
        font-size: 1rem;
    }
}

/* ========== CONTACT PAGE - ESTILOS ADICIONALES ========== */

/* Welcome section */
.contact-welcome {
    padding: 2rem 0 1rem;
}

.welcome-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: var(--font-serif);
    font-style: italic;
}

/* Contact main grid */
.contact-main {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
}

/* Form card */
.form-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-divider {
    width: 50px;
    height: 2px;
    background: var(--dusty-gold);
    margin: 1rem 0 1rem;
}

.form-subtitle {
    color: var(--text-tertiary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--warm-gray);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(107, 143, 122, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 1rem;
}

.form-note {
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

/* Info card */
.info-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 28px;
    margin-bottom: 2rem;
}

.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.info-divider {
    width: 50px;
    height: 2px;
    background: var(--dusty-gold);
    margin: 1rem 0 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.8rem;
    min-width: 45px;
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--deep-teal);
}

.info-content a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: var(--font-medium);
    transition: var(--transition-fast);
}

.info-content a:hover {
    color: var(--dusty-gold);
}

.info-content p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 0.2rem;
}

/* Social links */
.info-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.info-social h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link-item {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.social-link-item:hover {
    color: var(--dusty-gold);
    transform: translateY(-2px);
}

/* Contact quote */
.contact-quote {
    background: linear-gradient(135deg, var(--deep-teal) 0%, #0F3A48 100%);
    padding: 2rem;
    border-radius: 28px;
    color: white;
}

.contact-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    text-align: center;
    word-wrap: break-word;      /* Evita desbordamientos */
    overflow-wrap: break-word;
    hyphens: auto;              /* Divide palabras largas si es necesario */
    max-width: 90%;
    margin: 0 auto;
}

/* Contenedor para alinear texto y comillas */
.contact-quote blockquote {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.2rem;
}

.quote-mark {
    font-size: 3rem;
    opacity: 0.5;
    line-height: 1;
    margin-right: 0.2rem;
    flex-shrink: 0;            /* Evita que la comilla se encoja */
}

.quote-mark-end {
    font-size: 3rem;
    opacity: 0.5;
    line-height: 1;
    margin-left: 0.2rem;
    flex-shrink: 0;
    align-self: flex-end;
}

/* El texto de la cita */
.contact-quote blockquote {
    font-style: italic;
}

/* Si prefieres mantener la cita como texto fluido sin flex */
/* Alternativa más sencilla y robusta: */
.contact-quote.alternative blockquote {
    display: block;
    text-align: center;
}

.contact-quote.alternative .quote-mark,
.contact-quote.alternative .quote-mark-end {
    font-size: 2.5rem;
    vertical-align: middle;
}

.contact-quote.alternative .quote-mark {
    margin-right: 0.25rem;
}

.contact-quote.alternative .quote-mark-end {
    margin-left: 0.25rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: var(--font-semibold);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid var(--border-subtle);
}

/* Location section */
.location-section {
    padding: 4rem 0;
}

.location-card {
    text-align: center;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 32px;
    box-shadow: var(--shadow-sm);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.location-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.location-regions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.location-regions span {
    background: var(--bg-secondary);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--deep-teal);
}

/* Closing CTA */
.contact-closing {
    padding: 4rem 0 5rem;
}

.closing-card {
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
    padding: 3rem;
    border-radius: 32px;
    color: white;
}

.closing-card h2 {
    color: white;
    margin-bottom: 1rem;
}

.closing-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.closing-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .form-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .location-card,
    .closing-card {
        padding: 2rem;
    }
    
    .location-regions {
        gap: 0.8rem;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
}

/* ========== BOOKS PAGE - ESTILOS PREMIUM ========== */

/* Book Hero */
.book-hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.book-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

/* Portada premium */
.book-cover-premium {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cover-inner {
    background: linear-gradient(145deg, #D6CFB8, #C2B89A);
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.cover-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    z-index: 1;
    border-radius: 16px;
}

.cover-line {
    width: 50px;
    height: 1px;
    background: var(--charcoal);
    margin: 0.5rem 0;
}

.cover-line.top {
    margin-bottom: 1rem;
}

.cover-line.bottom {
    margin-top: 1rem;
}

.cover-title-main {
    font-size: 2rem;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--charcoal);
    position: relative;
    z-index: 2;
}

.cover-divider {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--charcoal-light);
}

.cover-subtitle-main {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal-light);
    max-width: 180px;
    position: relative;
    z-index: 2;
}

.cover-author {
    font-size: 0.8rem;
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--charcoal);
    position: relative;
    z-index: 2;
}

.cover-dust-jacket {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    z-index: 0;
}

.book-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    background: var(--dusty-gold);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: var(--font-semibold);
}

/* Book info */
.book-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dusty-gold);
    margin-bottom: 1rem;
}

.book-main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.book-main-subtitle {
    font-size: 1.2rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.book-description-premium {
    margin: 1.5rem 0;
}

.book-description-premium p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.book-description-secondary {
    font-style: italic;
    color: var(--sage);
}

.book-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
}

.meta-value {
    font-weight: var(--font-medium);
}

.book-actions-premium {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

.book-price-note {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Quote section */
.book-quote-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-decoration {
    font-size: 6rem;
    font-family: var(--font-serif);
    color: var(--dusty-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -2rem;
}

.book-master-quote {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.4;
    color: var(--text-primary);
}

.quote-source {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Topics grid */
.book-topics-section {
    padding: 5rem 0;
}

.topics-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.topic-premium-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.topic-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.topic-number {
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--dusty-gold);
    opacity: 0.5;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.topic-premium-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.topic-premium-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Book structure */
.book-structure {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.structure-header {
    text-align: center;
    margin-bottom: 3rem;
}

.structure-header h2 {
    margin-bottom: 0.5rem;
}

.structure-header p {
    color: var(--text-tertiary);
}

.structure-parts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.part-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.part-card:hover {
    transform: translateY(-5px);
}

.part-letter {
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 0.5rem;
}

.part-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.part-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.part-chapters {
    font-size: 0.75rem;
    color: var(--sage);
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: var(--dusty-gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* Extras */
.book-extras {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.extra-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.extra-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.extra-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.extra-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.extra-status {
    display: inline-block;
    background: var(--bg-secondary);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    color: var(--sage);
}

/* CTA final */
.book-cta-final {
    padding: 5rem 0;
}

.cta-final-card {
    background: linear-gradient(135deg, var(--deep-teal) 0%, #0F3A48 100%);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
}

.cta-final-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-final-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-final-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-final-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 968px) {
    .book-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .book-meta {
        justify-content: center;
    }
    
    .book-actions-premium {
        justify-content: center;
    }
    
    .book-master-quote {
        font-size: 1.2rem;
    }
    
    .quote-decoration {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .book-cover-premium {
        max-width: 280px;
    }
    
    .cover-title-main {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .topics-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .cta-final-card {
        padding: 2rem;
    }
}

/* ========== SERVICES PAGE - ESTILOS PREMIUM ========== */

/* Services intro */
.services-intro {
    padding: 2rem 0 3rem;
}

.intro-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-serif);
    font-style: italic;
}

/* Service detail sections */
.service-detail {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.service-detail.alt-bg {
    background: var(--bg-secondary);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-content {
    direction: ltr;
}

.service-badge {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--dusty-gold);
    margin-bottom: 1rem;
    font-weight: var(--font-semibold);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-detail-divider {
    width: 50px;
    height: 2px;
    background: var(--dusty-gold);
    margin-bottom: 1.5rem;
}

.service-detail-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-topics-list {
    margin: 1.5rem 0;
}

.service-topics-list h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--deep-teal);
}

.service-topics-list ul {
    list-style: none;
    padding-left: 0;
}

.service-topics-list li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-info {
    background: var(--bg-secondary);
    padding: 1.2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-subtle);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

/* Service image / icon */
.service-detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-icon-large {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-detail:hover .service-icon-large {
    transform: scale(1.05);
    box-shadow: var(--shadow-elevated);
}

.service-image-decoration {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed var(--dusty-gold);
    opacity: 0.3;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Comparison grid */
.service-comparison {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.comparison-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.comparison-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comparison-tag {
    display: inline-block;
    background: var(--bg-secondary);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    color: var(--sage);
}

/* Services testimonials */
.services-testimonials {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.testimonials-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.testimonial-service-card:hover {
    transform: translateY(-3px);
}

.testimonial-service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-service-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.testimonial-service-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-service-author span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* Services CTA final */
.services-cta-final {
    padding: 5rem 0;
}

/* Responsive */
@media (max-width: 968px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
    
    .service-detail-content {
        order: 2;
    }
    
    .service-detail-image {
        order: 1;
    }
    
    .service-icon-large {
        width: 180px;
        height: 180px;
        font-size: 5rem;
    }
    
    .service-image-decoration {
        width: 210px;
        height: 210px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 0.2rem;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 3rem 0;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-lead {
        font-size: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section con imagen */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  color: #2c1810;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  display: block;
  font-size: 0.75rem;  /* Cambiado de 1.1rem a 0.75rem */
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #6b4c3a;
  margin-bottom: 25px;
  letter-spacing: 0.3px;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #4a3729;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #2c1810;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #2c1810;
}

.btn-primary:hover {
  background: transparent;
  color: #2c1810;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #2c1810;
  text-decoration: none;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border: 2px solid #2c1810;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #2c1810;
  color: white;
  transform: translateY(-2px);
}

/* Estilos para móvil (hasta 767px) */
@media (max-width: 767px) {
  .hero-container {
    display: flex;
    flex-direction: column; /* Cambiado a column (no reverse) */
    gap: 1.5rem;
    margin-top: 2.5rem;
margin-bottom: 0.5rem;
  }
  
  .hero-image {
    order: -1; /* Esto fuerza la imagen a ir PRIMERO */
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-img {
    width: 70%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
}

/* Estilos para tablet y escritorio (768px y más) */
@media (min-width: 768px) {
  .hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .hero-image {
    order: 0; /* Orden normal */
    flex: 1;
  }
  
  .hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
  }
  
  .hero-content {
    flex: 1;
  }
}
/* Contenedor de la imagen - SIN recuadro ni sombras */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    width: 100%;
  }
}

/* ============================================
   UNIVERSE PAGE STYLES
   Notas de autor, reflexiones y pensamiento vivo
   ============================================ */

/* Manifesto */
.universe-manifesto {
  padding: 3rem 0 2rem 0;
}

.manifesto-card {
  background: linear-gradient(135deg, rgba(245, 240, 235, 0.6) 0%, rgba(255, 252, 245, 0.8) 100%);
  padding: 2.5rem;
  border-radius: 2rem;
  text-align: center;
  border: 1px solid rgba(180, 150, 120, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.manifesto-symbol {
  font-size: 2.5rem;
  color: var(--accent-gold, #b8946e);
  margin-bottom: 1rem;
}

.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text-dark, #2c2418);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-weight: 400;
  font-style: italic;
}

.manifesto-signature {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--accent-gold, #b8946e);
  text-transform: uppercase;
}

/* Featured Reflection */
.featured-reflection {
  padding: 2rem 0 3rem 0;
}

.reflection-large {
  background: var(--primary-dark, #1a2a1f);
  color: white;
  padding: 3rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

.reflection-large::before {
  content: "❝";
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 8rem;
  opacity: 0.1;
  font-family: serif;
  pointer-events: none;
}

.reflection-large-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reflection-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
}

.reflection-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.reflection-large-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  margin: 1rem 0 1.5rem 0;
}

.reflection-large-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Reflections Grid */
.reflections-grid-section {
  padding: 3rem 0;
  background: var(--bg-light, #faf7f2);
}

.reflections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.reflection-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.reflection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reflection-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.reflection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark, #2c2418);
}

.reflection-divider {
  width: 40px;
  height: 2px;
  background: var(--accent-gold, #b8946e);
  margin: 0.75rem 0 1rem 0;
}

.reflection-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-medium, #5a4a3a);
  margin-bottom: 1rem;
}

.reflection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.reflection-tags span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  background: #f0ede8;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  color: var(--text-medium, #5a4a3a);
}

.reflection-read-more {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--accent-gold, #b8946e);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.reflection-read-more:hover {
  color: var(--primary-dark, #1a2a1f);
}

.reflection-full {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.reflection-full p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-medium, #5a4a3a);
  margin-bottom: 0.75rem;
}

/* Micro Reflections */
.micro-reflections {
  padding: 3rem 0;
  background: white;
}

.micro-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.micro-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.micro-header p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-medium, #5a4a3a);
  letter-spacing: 1px;
}

.micro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.micro-card {
  background: var(--bg-light, #faf7f2);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-gold, #b8946e);
}

.micro-card:hover {
  transform: translateX(5px);
  background: #f5f0ea;
}

.micro-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold, #b8946e);
  font-weight: 600;
}

.micro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  color: var(--text-dark, #2c2418);
  font-style: italic;
}

/* Moment Quote */
.moment-quote {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f0ede8 0%, #e8e3dc 100%);
}

.moment-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.moment-symbol {
  font-size: 2rem;
  color: var(--accent-gold, #b8946e);
  margin-bottom: 1rem;
}

.moment-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-dark, #2c2418);
  margin-bottom: 1.5rem;
}

.moment-source {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-medium, #5a4a3a);
}

/* Universe Newsletter */
.universe-newsletter {
  padding: 4rem 0;
  background: var(--primary-dark, #1a2a1f);
}

.newsletter-universe-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.newsletter-universe-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.newsletter-universe-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.newsletter-universe-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.newsletter-universe-form input {
  flex: 1;
  min-width: 250px;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-universe-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-universe-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-universe-form .btn-primary {
  background: var(--accent-gold, #b8946e);
  color: white;
  border-radius: 50px;
  padding: 0.9rem 2rem;
}

.newsletter-universe-form .btn-primary:hover {
  background: #d4aa7a;
}

.newsletter-note {
  font-size: 0.7rem;
  opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .manifesto-text {
    font-size: 1.1rem;
  }
  
  .reflection-large-quote {
    font-size: 1.3rem;
  }
  
  .reflection-large {
    padding: 2rem;
  }
  
  .reflections-grid {
    grid-template-columns: 1fr;
  }
  
  .micro-grid {
    grid-template-columns: 1fr;
  }
  
  .moment-text {
    font-size: 1.2rem;
  }
  
  .newsletter-universe-form {
    flex-direction: column;
  }
  
  .newsletter-universe-form input {
    width: 100%;
  }
  
  .newsletter-universe-form .btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .reflection-large-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .reflection-card {
    padding: 1.5rem;
  }
  
  .micro-card {
    padding: 1.2rem;
  }
}

/* Tu estilo existente corregido */
.credential-card {
  text-align: center;
}

.credential-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.credential-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;  /* ← CRUCIAL: mantiene la forma redonda */
  object-fit: cover;   /* ← CRUCIAL: evita que la imagen se deforme */
  display: block;
}

/* Código responsivo adicional - MANTIENE la forma redonda */
@media (max-width: 480px) {
  .credential-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;  /* ← Mantiene redondo en móvil */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .credential-image img {
    width: 110px;
    height: 110px;
    border-radius: 50%;  /* ← Mantiene redondo */
  }
}

@media (min-width: 1025px) {
  .credential-image img {
    width: 130px;
    height: 130px;
    border-radius: 50%;  /* ← Mantiene redondo en desktop */
  }
}

@media (min-width: 1400px) {
  .credential-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;  /* ← Mantiene redondo en pantallas grandes */
  }
}

/* Efecto hover opcional (no afecta la forma redonda) */
.credential-card:hover .credential-image img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* ============================================
   AUDIO STORIES / VIDEO GALLERY STYLES
   Sección de relatos en audio
   ============================================ */

.audio-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.audio-story-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.audio-story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    overflow: hidden;
    background: var(--charcoal);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: var(--font-medium);
    padding: 1rem 1.2rem 1.2rem;
    margin: 0;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.01em;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

/* Animación sutil al cargar */
.audio-story-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.audio-story-card:nth-child(1) { animation-delay: 0.05s; }
.audio-story-card:nth-child(2) { animation-delay: 0.1s; }
.audio-story-card:nth-child(3) { animation-delay: 0.15s; }
.audio-story-card:nth-child(4) { animation-delay: 0.2s; }
.audio-story-card:nth-child(5) { animation-delay: 0.25s; }
.audio-story-card:nth-child(6) { animation-delay: 0.3s; }

/* Responsive para la galería de videos */
@media (max-width: 768px) {
    .audio-stories-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .video-title {
        font-size: 0.9rem;
        padding: 0.8rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .audio-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
}

/* ========== TWO COLUMN GRID FOR SECTIONS - PREMIUM VERSION ========== */
.two-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Estilo premium para cada sección */
.two-columns-grid .featured-services {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 0 !important;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(2px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Efecto hover elegante */
.two-columns-grid .featured-services:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

/* Degradado sutil en el borde superior */
.two-columns-grid .featured-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dusty-gold), var(--sage), var(--deep-teal));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.two-columns-grid .featured-services:hover::before {
    opacity: 1;
}

/* Contenedor interno con padding */
.two-columns-grid .container {
    width: 100%;
    padding: 2.5rem 2rem;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.two-columns-grid .services-intro {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Estilo del label */
.two-columns-grid .book-label {
    display: inline-block;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dusty-gold);
    font-weight: var(--font-semibold);
    background: rgba(201, 169, 110, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    width: fit-content;
    margin: 0 auto;
}

/* Títulos más elegantes */
.two-columns-grid .section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
}

/* Línea decorativa bajo el título */
.two-columns-grid .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dusty-gold), transparent);
}

/* Texto descriptivo */
.two-columns-grid .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin: 0 auto 0.5rem;
    font-weight: var(--font-light);
}

/* Contenedor de botones */
.two-columns-grid .book-actions-premium {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: auto;
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

/* Botones personalizados */
.two-columns-grid .btn-primary,
.two-columns-grid .btn-secondary {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    border-radius: 40px;
    text-decoration: none;
    font-weight: var(--font-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.two-columns-grid .btn-primary {
    background: linear-gradient(135deg, var(--deep-teal), var(--sage));
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(26, 74, 95, 0.25);
}

.two-columns-grid .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 74, 95, 0.35);
    background: linear-gradient(135deg, var(--sage), var(--deep-teal));
}

.two-columns-grid .btn-secondary {
    background: transparent;
    border: 1.5px solid var(--dusty-gold);
    color: var(--dusty-gold);
}

.two-columns-grid .btn-secondary:hover {
    background: var(--dusty-gold);
    color: white;
    transform: translateY(-2px);
}

/* Estado especial para "Cuento creación" */
.two-columns-grid .extra-status {
    display: inline-flex;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bone));
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-size: 0.85rem;
    color: var(--deep-teal);
    font-weight: var(--font-medium);
    border: 1px solid rgba(26, 74, 95, 0.2);
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
}

/* Decoración de fondo sutil para cada tarjeta */
.two-columns-grid .featured-services:nth-child(1) {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(251, 249, 244, 0.98) 100%);
}

.two-columns-grid .featured-services:nth-child(2) {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 242, 235, 0.98) 100%);
}

/* Icono decorativo flotante (opcional) */
.two-columns-grid .featured-services::after {
    content: '✦';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1rem;
    color: var(--dusty-gold);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.two-columns-grid .featured-services:hover::after {
    opacity: 0.3;
    transform: rotate(90deg);
}

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

/* Tablet */
@media (max-width: 992px) {
    .two-columns-grid {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .two-columns-grid .container {
        padding: 2rem 1.5rem;
    }
    
    .two-columns-grid .section-title {
        font-size: 1.8rem;
    }
    
    .two-columns-grid .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Móvil */
@media (max-width: 768px) {
    .two-columns-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .two-columns-grid .featured-services {
        border-radius: 28px;
    }
    
    .two-columns-grid .container {
        padding: 1.8rem 1.2rem;
    }
    
    .two-columns-grid .section-title {
        font-size: 1.6rem;
    }
    
    .two-columns-grid .section-title::after {
        width: 50px;
    }
    
    .two-columns-grid .section-subtitle {
        font-size: 0.85rem;
    }
    
    .two-columns-grid .book-actions-premium {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .two-columns-grid .btn-primary,
    .two-columns-grid .btn-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .two-columns-grid .featured-services::after {
        display: none;
    }
}

/* Pantallas muy pequeñas */
@media (max-width: 480px) {
    .two-columns-grid .container {
        padding: 1.5rem 1rem;
    }
    
    .two-columns-grid .section-title {
        font-size: 1.4rem;
    }
    
    .two-columns-grid .book-label {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
    
    .two-columns-grid .extra-status {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
}

/* Animación de entrada */
@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.two-columns-grid .featured-services {
    animation: cardFadeUp 0.6s ease forwards;
    opacity: 0;
}

.two-columns-grid .featured-services:nth-child(1) {
    animation-delay: 0.1s;
}

.two-columns-grid .featured-services:nth-child(2) {
    animation-delay: 0.2s;
}

/* ============================================
   BOOK OFFERS SECTION - BOTONES CORPORATIVOS
   ============================================ */

.book-offers-section {
  margin-top: 1.5rem;
  width: 100%;
}

/* Fila de cada oferta */
.offer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.offer-row:last-child {
  border-bottom: none;
}

/* Etiqueta de la izquierda */
.offer-label {
  font-size: 0.75rem;
  font-weight: var(--font-semibold);
  color: var(--text-secondary);
  min-width: 85px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Grupo de botones */
.offer-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

/* Estilo base de cada botón de oferta */
.offer-btn {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 1px solid transparent;
}

.offer-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== COLORES CORPORATIVOS ===== */

/* Amazon - Negro y naranja */
.offer-btn-amazon {
  background: #232F3E;
  color: white;
  border-color: #232F3E;
}

.offer-btn-amazon:hover {
  background: #FF9900;
  border-color: #FF9900;
  color: #232F3E;
}

/* Amazon Audible - Naranja distintivo */
.offer-btn-audible {
  background: #F3A847;
  color: #1A1A1A;
  border-color: #F3A847;
}

.offer-btn-audible:hover {
  background: #FFB84D;
  border-color: #FFB84D;
  color: #1A1A1A;
}

/* Apple Books - Gris/negro elegante */
.offer-btn-apple {
  background: #1A1A1A;
  color: white;
  border-color: #1A1A1A;
}

.offer-btn-apple:hover {
  background: #A2AAAD;
  border-color: #A2AAAD;
  color: #1A1A1A;
}

/* Libro.FM - Azul vibrante */
.offer-btn-librofm {
  background: #1A73E8;
  color: white;
  border-color: #1A73E8;
}

.offer-btn-librofm:hover {
  background: #4285F4;
  border-color: #4285F4;
  color: white;
}

/* Storytel - Rosa/rojo característico */
.offer-btn-storytel {
  background: #E61A5B;
  color: white;
  border-color: #E61A5B;
}

.offer-btn-storytel:hover {
  background: #FF2E6B;
  border-color: #FF2E6B;
  color: white;
}

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

@media (max-width: 768px) {
  .offer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .offer-label {
    min-width: auto;
    font-size: 0.7rem;
  }
  
  .offer-buttons-group {
    width: 100%;
  }
  
  .offer-btn {
    padding: 0.3rem 0.85rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .book-offers-section {
    margin-top: 1rem;
  }
  
  .offer-buttons-group {
    gap: 0.45rem;
  }
  
  .offer-btn {
    padding: 0.25rem 0.7rem;
    font-size: 0.6rem;
  }
  
  .offer-label {
    font-size: 0.65rem;
  }
}

/* ============================================
   BOTONES PARA FONDO OSCURO (CHARCOAL)
   ============================================ */

/* Para la sección "philosophy" con fondo charcoal */
.philosophy .btn-primary {
    background: var(--dusty-gold);
    color: var(--charcoal);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.philosophy .btn-primary:hover {
    background: var(--sage);
    color: white;
    transform: translateY(-2px);
}

.philosophy .btn-secondary {
    background: transparent;
    border: 1.5px solid var(--dusty-gold);
    color: var(--dusty-gold);
}

.philosophy .btn-secondary:hover {
    background: var(--dusty-gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

/* También para el contenedor específico si es necesario */
.philosophy .book-actions-premium {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   POPUP PARA REFLEXIONES COMPLETAS
   ============================================ */

/* Overlay de fondo */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Contenedor del popup */
.popup-container {
  position: relative;
  width: 90%;
  max-width: 750px;
  max-height: 85vh;
  background: var(--bg-primary, #FBF9F4);
  border-radius: 28px;
  box-shadow: var(--shadow-elevated, 0 30px 50px -15px rgba(0, 0, 0, 0.2));
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
  transform: scale(1);
}

/* Botón de cerrar */
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text-tertiary, #7A7770);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast, all 0.25s ease);
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
}

.popup-close:hover {
  color: var(--dusty-gold, #C9A96E);
  transform: rotate(90deg);
}

/* Contenido interno del popup */
.popup-content {
  padding: 2.5rem;
  overflow-y: auto;
  max-height: 85vh;
  scroll-behavior: smooth;
}

/* Estilos del scroll (opcional pero elegante) */
.popup-content::-webkit-scrollbar {
  width: 6px;
}

.popup-content::-webkit-scrollbar-track {
  background: var(--warm-gray, #E3DDD3);
  border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb {
  background: var(--dusty-gold, #C9A96E);
  border-radius: 10px;
}

/* Título dentro del popup */
.popup-content .popup-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--text-primary, #1A1917);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.popup-content .popup-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.popup-content .popup-divider {
  width: 60px;
  height: 2px;
  background: var(--dusty-gold, #C9A96E);
  margin: 1rem 0 1.5rem 0;
}

.popup-content .popup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem 0;
}

.popup-content .popup-tags span {
  background: var(--bg-secondary, #F5F2EB);
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.7rem;
  color: var(--text-secondary, #4A4843);
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.popup-content .popup-text {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary, #4A4843);
  margin-top: 1rem;
}

.popup-content .popup-text p {
  margin-bottom: 1.2rem;
}

.popup-content .popup-text strong {
  color: var(--deep-teal, #1A4A5F);
  font-weight: 600;
}

/* Responsive del popup */
@media (max-width: 768px) {
  .popup-container {
    width: 95%;
    max-height: 90vh;
  }
  
  .popup-content {
    padding: 1.8rem;
  }
  
  .popup-close {
    top: 0.8rem;
    right: 1rem;
    font-size: 1.8rem;
  }
  
  .popup-content .popup-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 1.5rem;
  }
  
  .popup-content .popup-title {
    font-size: 1.5rem;
  }
  
  .popup-content .popup-icon {
    font-size: 2rem;
  }
  
  .popup-content .popup-text {
    font-size: 0.9rem;
  }
}

/* Animación de entrada sutil para el contenido */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-content {
  animation: fadeSlideUp 0.4s ease forwards;
}

/* ESTILOS ESPECÍFICOS PARA BOTONES "Leer reflexión completa" */
.reflection-read-more {
  background: transparent !important;        /* Fondo transparente */
  border: none !important;                   /* Elimina el borde cuadrado */
  cursor: pointer;                           /* Manita al pasar el mouse */
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.85rem;
  color: var(--dusty-gold, #C9A96E);
  font-weight: 500;
  transition: var(--transition-fast, all 0.25s ease);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin-top: 0.5rem;
}

.reflection-read-more:hover {
  color: var(--primary-dark, #1A4A5F);
  transform: translateX(4px);
}

.reflection-read-more:focus {
  outline: none;
  color: var(--sage, #6B8F7A);
}

/* ============================================
   SECCIÓN: MÁS ALLÁ DE LAS PÁGINAS
   ============================================ */

.beyond-pages {
  padding: 5rem 0;
  background: var(--bg-secondary, #F5F2EB);
}

.beyond-pages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.beyond-pages-content {
  order: 1;
}

.beyond-pages-image {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beyond-pages-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg, 0 25px 45px -12px rgba(0, 0, 0, 0.2));
  transition: var(--transition-smooth, all 0.5s ease);
  object-fit: cover;
}

.beyond-pages-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-elevated, 0 30px 50px -15px rgba(0, 0, 0, 0.25));
}

.beyond-pages-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--text-primary, #1A1917);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.beyond-pages-divider {
  width: 60px;
  height: 2px;
  background: var(--dusty-gold, #C9A96E);
  margin-bottom: 1.5rem;
}

.beyond-pages-text {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary, #4A4843);
  margin-bottom: 1.2rem;
}

.beyond-pages-contact {
  margin-top: 2rem;
}

.btn-contact {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1.5px solid var(--dusty-gold, #C9A96E);
  color: var(--dusty-gold, #C9A96E);
  text-decoration: none;
  border-radius: 40px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-fast, all 0.25s ease);
  cursor: pointer;
}

.btn-contact:hover {
  background: var(--dusty-gold, #C9A96E);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

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

/* Tablet y móvil - La imagen queda debajo del texto */
@media (max-width: 768px) {
  .beyond-pages {
    padding: 3rem 0;
  }
  
  .beyond-pages-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .beyond-pages-content {
    order: 1;
    text-align: center;
  }
  
  .beyond-pages-image {
    order: 2;
  }
  
  .beyond-pages-divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .beyond-pages-text {
    text-align: center;
  }
  
  .beyond-pages-image img {
    max-width: 320px;
  }
}

/* Margen izquierdo solo para desktop */
@media (min-width: 769px) {
  .beyond-pages-content {
    margin-left: 3rem; /* Ajusta el valor según necesites */
  }
}

/* Móvil pequeño */
@media (max-width: 480px) {
  .beyond-pages {
    padding: 2.5rem 0;
  }
  
  .beyond-pages-text {
    font-size: 0.9rem;
  }
  
  .beyond-pages-image img {
    max-width: 260px;
  }
  
  .btn-contact {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }
}