/* Fuentes locales */
@font-face {
    font-family: 'Satoshi';
    src: url('../Fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../Fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../Fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Page Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animación aplicada al body cuando la página carga */
body {
    animation: fadeIn 0.5s ease-out;
}

/* Splash Screen */
body.splash-active {
    overflow: hidden;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e0dace;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease-out;
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.splash-logo {
    margin-bottom: 2rem;
    animation: scaleIn 0.8s ease-out 0.2s both;
}

.splash-logo img {
    width: 300px;
    height: auto;
    max-width: 90%;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    filter: brightness(0.95);
}

.splash-text {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.splash-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.splash-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

.splash-loader {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.loader {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 3px solid rgba(44, 62, 80, 0.1);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive para Splash Screen */
@media (max-width: 768px) {
    .splash-logo img {
        width: 250px;
        max-width: 85%;
    }
    
    .splash-text h1 {
        font-size: 2rem;
    }
    
    .splash-text p {
        font-size: 1rem;
    }
}

/* Clases para animar elementos cuando aparecen en viewport */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #d4c89a;
    --accent-color: #d4c89a;
    --cream-color: #e0dace;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-color: #e0dace;
    --bg-light: rgba(255, 255, 255, 0.6);
    --border-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Satoshi', sans-serif;
    color: var(--text-color);
    background: #f5efec;
    min-height: 100vh;
    line-height: 1.7;
    padding-top: 0;
}

/* Navbar */
.navbar {
    position: relative;
    width: 100%;
    height: 50vh;
    background-color: transparent;
    border-bottom: none;
    z-index: 1000;
    padding: 4rem 0;
    overflow: hidden;
    transition: var(--transition);
    animation: slideInLeft 0.6s ease-out;
}

.navbar-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.nav-container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 1px;
}

.nav-logo:hover {
    color: var(--accent-color);
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

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

/* Language Selector */
.lang-selector {
    margin-left: auto;
}

.lang-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
}

.lang-link:hover {
    background: rgba(44, 62, 80, 0.2);
    transform: translateY(-2px);
}

.lang-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Sections */
.section {
    padding: 8rem 0;
    min-height: auto;
}

/* Hero Landing - Full Bleed Media */
.hero-landing {
    min-height: 100vh;
    position: relative;
}

.hero-media {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(224, 218, 206, 0.92) 0%, rgba(224, 218, 206, 0.75) 40%, rgba(224, 218, 206, 0.2) 100%); */
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    width: min(119vw, 1646px);
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 8rem;
    align-items: center;
    z-index: 3;
    color: var(--text-color);
}

.hero-copy {
    max-width: 560px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-book {
    display: flex;
    justify-content: center;
    justify-self: center;
    align-self: center;
    animation: scaleIn 0.8s ease-out 0.5s both;
}

.hero-brand {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 999px;
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.hero-secondary {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 4px;
    transition: var(--transition);
}

.hero-secondary:hover {
    color: var(--accent-color);
}

.hero-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
}

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

.hero-book-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}


.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}


/* Book Animation Section */
/* Book Section */
.book-section {
    background-color: #3D505D;
    padding: 0;
    scroll-margin-top: 80px;
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: center;
    margin: 0 auto;
    min-height: 520px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 5rem;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: -2px;
}

.book-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem 4rem 5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-image:hover {
    transform: translateY(-6px);
}

.book-image img {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.book-info {
    padding: 4rem 5rem 4rem 2rem;
}

.book-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.book-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.book-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-weight: 300;
    max-width: 420px;
}

.book-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.book-btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-size: 1rem;
}

.book-btn-primary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.7);
}

.book-btn-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.book-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

/* Book Detail Page */
.book-detail {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.book-detail-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.book-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.book-detail-content {
    padding: 2rem 0;
}

.book-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.book-detail-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-detail-description {
    margin-bottom: 3rem;
}

.book-detail-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.amazon-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.amazon-btn img {
    height: 40px;
    width: auto;
    display: block;
}

.amazon-btn-container {
    display: flex;
    justify-content: center;
    
}

.amazon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Bio Section */
.bio-section {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 8rem 0;
    scroll-margin-top: 80px;
}

.bio-content {
    max-width: 1200px;
    margin: 0 auto;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 5rem;
}

.bio-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.bio-text {
    padding: 2rem 0;
}

.bio-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 300;
}



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

.stat-item h4 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 300;
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
    text-align: left;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Cards */
.card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

/* Animación para secciones */
.section {
    animation: fadeIn 0.8s ease-out;
}

.bio-section .bio-image {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.bio-section .bio-text {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.book-section .book-image {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.book-section .book-info {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

/* Book Detail Page Animations */
.book-detail .book-detail-image {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.book-detail .book-detail-content {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.card-content {
    padding: 2.5rem;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.card-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

/* Merch Section V2 - Diseño Alternativo Editorial */
.merch-section-v2 {
    background-color: #e0dace;
    padding: 0;
    min-height: 100vh;
}

.merch-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Header */
.merch-hero {
    text-align: center;
    margin-bottom: 8rem;
    padding-top: 4rem;
}

.merch-main-title {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 0.9;
}

.merch-hero-text {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* Featured Product */
.merch-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
}

.featured-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    padding: 2rem 0;
}

.featured-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.featured-price-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.featured-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -2px;
}

.featured-btn {
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.featured-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Masonry Grid */
.merch-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.merch-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.merch-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Tamaños de items */
.merch-item-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 350px;
}

.merch-item-medium {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 250px;
}

.merch-item-small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
}

.item-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0dace 100%);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.merch-item:hover .item-image img {
    transform: scale(1.15);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.95) 0%, rgba(44, 62, 80, 0.7) 50%, transparent 100%);
    padding: 1.5rem;
    transform: translateY(0);
    transition: var(--transition);
}

.item-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.item-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -1px;
}

.item-btn {
    padding: 0.6rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.item-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Items pequeños - overlay diferente */
.merch-item-small .item-info {
    text-align: center;
}

.merch-item-small .item-overlay {
    padding: 1.2rem;
}

.merch-item-small .item-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.merch-item-small .item-footer {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.merch-item-small .item-price {
    font-size: 1.3rem;
}

.merch-item-small .item-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
}

/* Footer Info */
.merch-footer-info {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border-top: 2px solid var(--border-color);
}

.footer-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-item strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-item span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Merch page — storefront layout (merch.php) */
.merch-page {
    background: linear-gradient(180deg, #f0ebe4 0%, var(--cream-color) 45%, #d8d0c4 100%);
    padding: 2.5rem 0 5rem;
    min-height: 100vh;
}

.merch-page-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.merch-page-header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 3.5rem;
    padding-top: 1rem;
}

.merch-page-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.merch-page-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.merch-page-lead {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.merch-page-shop-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.15rem;
    transition: var(--transition);
}

.merch-page-shop-link:hover {
    border-bottom-color: var(--primary-color);
    color: #1a252f;
}

.merch-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 720px) {
    .merch-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1.75rem;
    }
}

.merch-product-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(44, 62, 80, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.merch-product-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 48px rgba(44, 62, 80, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.merch-product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: radial-gradient(ellipse 80% 70% at 50% 45%, #faf8f5 0%, #ebe6de 55%, #e0dace 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1.5rem;
}

.merch-product-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(44, 62, 80, 0.12));
    transition: var(--transition);
}

.merch-product-card:hover .merch-product-media img {
    transform: scale(1.04);
}

.merch-product-body {
    padding: 1.35rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.65rem;
}

.merch-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.merch-product-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.merch-product-badge--black {
    background: #2c3e50;
    color: #e8e4dc;
}

.merch-product-badge--white {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid rgba(44, 62, 80, 0.2);
}

.merch-product-type {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.merch-product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.merch-product-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
    flex: 1;
}

.merch-product-footer {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-color);
}

.merch-product-price {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.03em;
}

.merch-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--primary-color);
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.merch-product-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

/* YouTube Hero Section */
.youtube-hero {
    background: linear-gradient(135deg, rgba(224, 218, 206, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.youtube-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.youtube-hero-text {
    padding-right: 2rem;
}

.youtube-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.youtube-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.youtube-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.youtube-subscribe-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #FF0000;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-subscribe-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.youtube-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #000;
}

.youtube-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Videos Section */
.videos-section {
    margin-bottom: 6rem;
}

/* Videos Carousel */
.videos-carousel-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.videos-carousel {
    overflow: hidden;
    position: relative;
    /* padding: 0 3rem; */
}

.videos-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.videos-carousel-track:active {
    cursor: grabbing;
}

.video-card-carousel {
    min-width: 320px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.video-card-carousel:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}


/* Scrollbar Personalizado */
.carousel-scrollbar-container {
    margin: 2rem auto 0;
    max-width: 600px;
    padding: 0 3rem;
}

.carousel-scrollbar-track {
    width: 100%;
    height: 8px;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.carousel-scrollbar-thumb {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.3s ease, left 0.3s ease;
    min-width: 50px;
}

.carousel-scrollbar-track:hover .carousel-scrollbar-thumb {
    background: var(--accent-color);
}

/* Mantener grid para responsive (fallback) */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0dace 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 1;
}

.video-card:hover .video-thumbnail::before {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    position: relative;
    z-index: 3;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FF0000;
    transition: var(--transition);
    transform: scale(1);
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.podcast-episodes-section {
    margin-bottom: 4rem;
}

/* Podcast Section */
.podcast-section {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 4rem 0 8rem;
}

.podcast-header {
    text-align: center;
    margin-bottom: 5rem;
}

.podcast-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 1rem;
}

.podcast-episodes {
    max-width: 900px;
    margin: 0 auto 6rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.episode-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.episode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.episode-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.3;
    flex-shrink: 0;
    width: 60px;
}

.episode-content {
    flex-grow: 1;
}

.episode-header {
    margin-bottom: 1rem;
}

.episode-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.episode-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.episode-date,
.episode-duration {
    display: flex;
    align-items: center;
}

.episode-date::before {
    content: '📅';
    margin-right: 0.5rem;
}

.episode-duration::before {
    content: '⏱';
    margin-right: 0.5rem;
}

.episode-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.episode-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.episode-btn-primary {
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.episode-btn-primary:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.episode-btn-secondary {
    padding: 0.9rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.episode-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.podcast-platforms {
    text-align: center;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.platforms-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platform-link {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.platform-link:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.platform-link.platform-youtube {
    background: #FF0000;
    color: #fff;
    border-color: #FF0000;
}

.platform-link.platform-youtube:hover {
    background: #cc0000;
    border-color: #cc0000;
    color: #fff;
}

/* Footer */
.footer {
    background-color: rgba(224, 218, 206, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem 0;
    text-align: center;
    color: var(--text-color);
    margin-top: 6rem;
}



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

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
    .container {
        padding-top:15rem ;
    }

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .video-card-carousel {
        min-width: 260px;
        max-width: 260px;
    }

    .videos-carousel {
        padding: 0 0.5rem;
    }

    .carousel-scrollbar-container {
        padding: 0 0.5rem;
    }

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

    .youtube-hero-subtitle {
        font-size: 1rem;
    }

    .amazon-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .merch-page-inner{
        padding-top: 4rem;
    }

    
    
}

@media (max-width: 420px) {
    .navbar{
        padding-top: 12rem;
    }
}

/* Tablets y móviles grandes (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding-top:15rem;
    }

    .video-card-carousel {
        min-width: 300px;
        max-width: 300px;
    }

    .videos-carousel {
        padding: 0 1.5rem;
    }

    .amazon-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .navbar{
        padding: 0;
    }

    .merch-page-inner{
        padding-top: 4rem;
    }
}

/* Tablets grandes (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding-top:12rem;
        max-width: 1000px;
    }

    .hero-overlay {
        width: min(90vw, 1400px);
        gap: 4rem;
    }

    .videos-carousel {
        padding: 0 2rem;
    }

    .video-card-carousel {
        min-width: 300px;
        max-width: 300px;
    }

    .youtube-hero-content {
        gap: 2rem;
    }

    .amazon-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .navbar{
        padding: 0;
    }

    .merch-page-inner{
        padding-top: 4rem;
    }
}

/* Pantallas medianas (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 2.5rem;
    }

    .hero-overlay {
        width: min(95vw, 1500px);
        gap: 6rem;
    }

    .amazon-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }


}

/* Pantallas grandes (1201px - 1440px) */
@media (min-width: 1201px) and (max-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-overlay {
        width: min(119vw, 1646px);
    }

    
}

/* Pantallas muy grandes (más de 1440px) */
@media (min-width: 1441px) {
    .container {
        max-width: 1600px;
    }

    .hero-overlay {
        width: min(119vw, 1646px);
    }

    .amazon-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }
}

/* Responsive - Móviles y tablets (hasta 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Barra compacta: 50vh + overflow:hidden recortaba el menú position:fixed (solo se veía el vídeo) */
    .navbar {
        height: auto;
        min-height: 3.75rem;
        padding: 0;
        padding-top: env(safe-area-inset-top, 0);
        overflow: visible;
    }

    .navbar-video {
        min-height: 8rem;
    }

    .nav-container {
        padding: 0.75rem 1.5rem;
        min-height: 3.75rem;
        align-items: center;
    }

    .lang-selector {
        margin-left: 0;
        margin-top: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: calc(3.75rem + env(safe-area-inset-top, 0px));
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        max-width: 100vw;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        padding-bottom: max(2rem, env(safe-area-inset-bottom, 0));
        border-bottom: 1px solid var(--border-color);
        z-index: 1100;
        max-height: min(85vh, calc(100vh - 3.75rem - env(safe-area-inset-top, 0px)));
        max-height: min(85vh, calc(100dvh - 3.75rem - env(safe-area-inset-top, 0px)));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:focus-visible {
        color: var(--accent-color);
    }

    .nav-menu .lang-link {
        color: var(--primary-color);
        background: rgba(44, 62, 80, 0.1);
    }

    .nav-menu .lang-link:hover {
        color: var(--primary-color);
        background: rgba(44, 62, 80, 0.18);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-media {
        min-height: 100vh;
    }

    .hero-media::after {
        background: linear-gradient(180deg, rgba(224, 218, 206, 0.95) 0%, rgba(224, 218, 206, 0.7) 50%, rgba(224, 218, 206, 0.35) 100%);
    }

    .image-slider {
        height: 100vh;
        min-height: 500px;
    }

    .hero-overlay {
        position: absolute;
        gap: 0;
        top: auto;
        bottom: 8%;
        left: 1.5rem;
        right: 1.5rem;
        transform: none;
        max-width: 100%;
        width: auto;
        grid-template-columns: 1fr;
    }

    .hero-brand {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

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

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

    .hero-actions {
        width: 100%;
    }

    .hero-book {
        display: none; /* Ocultar libro en responsive */
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bio-highlight {
        padding: 2rem;
    }

    .bio-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section {
        padding: 5rem 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .book-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .book-subtitle {
        font-size: 1rem;
    }

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

    .book-actions {
        flex-direction: column;
        gap: 1rem;
    }

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

    .book-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .book-detail-title {
        font-size: 2rem;
    }

    .book-detail-subtitle {
        font-size: 1rem;
    }

    .amazon-btn {
        width: 100%;
        text-align: center;
    }

    /* Responsive para Merch V2 */
    .merch-wrapper {
        padding: 4rem 1.5rem;
    }

    .merch-hero {
        margin-bottom: 4rem;
        padding-top: 2rem;
    }

    .merch-main-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .merch-hero-text {
        font-size: 1.1rem;
    }

    .merch-featured {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
        margin-bottom: 4rem;
    }

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

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

    .featured-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .merch-masonry {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .merch-item-large,
    .merch-item-medium,
    .merch-item-small {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 400px;
    }

    .item-info h3 {
        font-size: 1.5rem;
    }

    .merch-footer-info {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .merch-page {
        padding: 1.5rem 0 3.5rem;
    }

    .merch-page-header {
        margin-bottom: 2.5rem;
    }

    .merch-page-lead {
        font-size: 1rem;
    }

    .merch-product-grid {
        gap: 1.25rem;
    }

    .merch-product-media {
        aspect-ratio: 1;
        padding: 1.25rem 1rem;
    }

    /* Responsive para YouTube Hero */
    .youtube-hero {
        padding: 4rem 0;
    }

    .youtube-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .youtube-hero-text {
        padding-right: 0;
        text-align: center;
    }

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

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

    /* Responsive para Videos */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .videos-carousel {
        padding: 0 1rem;
    }

    .video-card-carousel {
        min-width: 280px;
        max-width: 280px;
    }

    .carousel-scrollbar-container {
        padding: 0 1rem;
    }

    .video-thumbnail {
        height: 180px;
    }

    /* Responsive para Podcast */
    .podcast-header {
        margin-bottom: 3rem;
    }

    .podcast-subtitle {
        font-size: 1rem;
    }

    .podcast-episodes {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .episode-card {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .episode-number {
        font-size: 2.5rem;
        width: auto;
    }

    .episode-title {
        font-size: 1.4rem;
    }

    .episode-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .episode-actions {
        flex-direction: column;
    }

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

    .platforms-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .platform-link {
        width: 100%;
        text-align: center;
    }

    .amazon-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }
}