/* 
    LA LIGA DE LA LECTURA - CORE BRANDING 
    Minimalismo Editorial | Volumen Lab 2026
*/

:root {
    --primary: #4f7871;
    --cream: #f4eee8;
    --orange-light: #eda567;
    --terracotta: #d06a44;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

/* 1. RESET & BASICS */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s var(--transition); }

/* 2. TIPOGRAFÍA SUTIL */
.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--terracotta);
}

.sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
}

/* 3. HERO SLIDER (ESTILO APPLE/VOGUE) */
.hero-slider {
    position: relative;
    height: 90vh;
    background-color: var(--primary);
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s var(--transition);
}

.slide.active { opacity: 1; }

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(20%);
}

.slide-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.slide-info h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.slide-info p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.floating-book {
    max-height: 550px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

/* 4. BOTONES MINIMALISTAS */
.btn-minimal {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border: 1px solid var(--white);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.4s var(--transition);
}

.btn-minimal:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-minimal.dark {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

/* 5. BIBLIOTECA (GRID DE NOVEDADES) */
.home-library { padding: 120px 0; }

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.view-all {
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 4px;
}

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

.book-cover {
    aspect-ratio: 2/3;
    background-color: #f0f0f0;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: transform 0.6s var(--transition);
}

.book-cover img { width: 100%; height: 100%; object-fit: cover; }

.book-item:hover .book-cover { transform: translateY(-10px); }

.book-meta h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
}

.book-author {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* 6. AUTORES (TARJETAS DE MUSEO) */
.home-authors { padding: 120px 0; background-color: var(--cream); }

.authors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.author-card {
    position: relative;
    height: 500px;
    background-color: var(--text-dark);
    overflow: hidden;
}

.author-img { width: 100%; height: 100%; opacity: 0.85; transition: 0.8s var(--transition); }
.author-img img { width: 100%; height: 100%; object-fit: cover; }

.author-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}

.author-overlay h3 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 5px; color: white; }
.author-overlay .action { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }

.author-card:hover .author-img { transform: scale(1.05); opacity: 0.6; }

/* 7. NOSOTROS & CLUB */
.home-about { padding: 140px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: center; }

.about-info h2 {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-info h2 em { font-weight: 400; }

.about-info p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 3rem; }

.club-slider { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.club-card {
    position: relative;
    height: 350px;
    background-color: var(--primary);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    overflow: hidden;
}

.club-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
    transition: 0.6s var(--transition);
}

.club-content { position: relative; z-index: 2; }
.club-content h4 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 10px; color: white; }
.club-link { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 1px solid var(--white); }

.club-card:hover .club-bg { transform: scale(1.1); opacity: 0.6; }

/* ANIMACIONES */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .book-grid, .authors-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-grid, .about-grid { grid-template-columns: 1fr; gap: 50px; }
}
/* --- ARCHIVO / BIBLIOTECA COMPLETA --- */

.bg-gallery { background-color: #fafafa; }

.gallery-header { padding: 100px 0 60px; }
.gallery-header h1 { font-family: var(--font-serif); font-size: 5rem; margin: 10px 0 20px; }
.gallery-header p { font-size: 1.1rem; color: var(--text-light); max-width: 500px; }

.gallery-controls {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.search-box input {
    width: 100%;
    max-width: 400px;
    padding: 15px 0;
    border: none;
    background: transparent;
    border-bottom: 1px solid var(--text-dark);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
}

.filter-bar { display: flex; gap: 20px; flex-wrap: wrap; }
.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 0;
    transition: 0.3s var(--transition);
}

.filter-btn.active, .filter-btn:hover { color: var(--terracotta); }

.py-gallery { padding-bottom: 140px; }

/* Grid de Libros Full */
.book-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 60px 40px;
}

.book-item-full { transition: 0.4s var(--transition); }

.book-cover-full {
    aspect-ratio: 2/3;
    background-color: #eee;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.book-cover-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.book-item-full:hover .book-cover-full img { transform: scale(1.08); }

.book-meta-full .genre {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta);
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.book-meta-full h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

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

@media (max-width: 768px) {
    .gallery-header h1 { font-size: 3.5rem; }
    .book-grid-full { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
} 
/* --- FICHA INDIVIDUAL DE LIBRO --- */

.py-detail { padding: 100px 0 140px; }

.book-detail-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 100px;
    align-items: start;
}

/* Columna Visual Sticky */
.sticky-box {
    position: sticky;
    top: 140px;
}

.main-cover {
    background-color: #f9f9f9;
    margin-bottom: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.book-specs {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.spec-item span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 5px;
}

.spec-item strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.w-100 { width: 100%; }

/* Columna de Texto */
.story-header h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    line-height: 1;
    margin: 15px 0 30px;
}

.resena-corta {
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--primary);
    font-weight: 300;
    margin-bottom: 60px;
    font-style: italic;
}

.story-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    max-width: 700px;
}

/* Mini Card Autor */
.author-mini-card {
    margin-top: 80px;
    padding: 40px;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    gap: 25px;
}

.author-mini-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    filter: grayscale(100%);
}

.mini-info span { font-size: 0.75rem; text-transform: uppercase; color: var(--text-light); }
.mini-info h4 { font-family: var(--font-serif); font-size: 1.5rem; margin: 5px 0; }
.mini-info a { font-size: 0.8rem; font-weight: 600; border-bottom: 1px solid var(--text-dark); }

/* Sugerencias */
.suggestions {
    margin-top: 140px;
    padding-top: 80px;
    border-top: 1px solid #eee;
}

@media (max-width: 1024px) {
    .book-detail-grid { grid-template-columns: 1fr; gap: 60px; }
    .sticky-box { position: relative; top: 0; }
    .story-header h1 { font-size: 3rem; }
}
/* --- PERFIL DE AUTOR --- */

.author-profile-header {
    background-color: var(--cream);
    padding: 120px 0;
    margin-bottom: 80px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.profile-photo {
    aspect-ratio: 1/1;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.profile-info h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    line-height: 1;
    margin: 15px 0 40px;
    color: var(--text-dark);
}

.author-bio {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 650px;
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-photo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .author-bio {
        margin: 0 auto;
    }
    
    .profile-info h1 {
        font-size: 3rem;
    }
}
/* --- ÍNDICE DE AUTORES --- */
.authors-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.author-index-card {
    text-align: center;
    transition: transform 0.4s var(--transition);
}

.author-index-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.author-index-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.6s var(--transition);
}

.author-index-card:hover .author-index-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.author-index-info h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-dark);
}

.author-index-info p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    font-weight: 700;
}
/* --- CLUB DE LECTURA PRO --- */
.reading-week { padding: 120px 0; border-bottom: 1px solid #eee; }
.week-grid { display: grid; grid-template-columns: 450px 1fr; gap: 80px; align-items: center; }
.week-visual img { width: 100%; aspect-ratio: 2/3; object-fit: cover; box-shadow: 0 40px 80px rgba(0,0,0,0.1); }
.excerpt-week { font-size: 1.4rem; line-height: 1.5; color: var(--primary); font-style: italic; margin: 30px 0; }

.reco-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px; 
    margin-top: 50px; 
}
.reco-card { background: var(--white); transition: transform 0.4s var(--transition); }
.reco-card:hover { transform: translateY(-10px); }
.reco-img { aspect-ratio: 4/5; overflow: hidden; background: #f0f0f0; }
.reco-img img { width: 100%; height: 100%; object-fit: cover; }
.reco-body { padding: 25px 0; } /* Padding lateral en 0 para que alinee con la imagen */
.reco-body h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 10px; }
.reco-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

@media (max-width: 992px) {
    .week-grid { grid-template-columns: 1fr; text-align: center; }
    .week-visual { max-width: 350px; margin: 0 auto; }
    .reco-grid { grid-template-columns: 1fr 1fr; }
}
/* --- ARTÍCULO / RESEÑA COMPLETA --- */

.article-container {
    padding-top: 80px;
}

.article-header {
    max-width: 900px; /* Texto más centrado para lectura */
    text-align: center;
    margin-bottom: 80px;
}

.article-header h1 {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1.1;
    margin: 20px 0 40px;
    color: var(--text-dark);
}

.article-lead {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--primary);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 60px;
}

.article-hero-img {
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Hace que la imagen sea Full Width */
    height: 70vh;
    overflow: hidden;
    margin-bottom: 100px;
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    max-width: 750px; /* Ancho ideal para lectura de textos largos */
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 2;
    color: #333;
    padding-bottom: 100px;
}

.article-footer {
    max-width: 750px;
    margin: 0 auto 140px;
    padding-top: 60px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-links {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.share-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--text-dark);
}

@media (max-width: 768px) {
    .article-header h1 { font-size: 3rem; }
    .article-lead { font-size: 1.2rem; }
    .article-hero-img { height: 50vh; }
    .article-footer { flex-direction: column; gap: 40px; text-align: center; }
}
/* --- HISTORIAL DE RECOMENDACIONES --- */

.reco-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px 40px;
}

.reco-item-full {
    transition: transform 0.4s var(--transition);
}

.reco-item-full:hover {
    transform: translateY(-8px);
}

.reco-cover-box {
    position: relative;
    aspect-ratio: 16/9; /* Formato más cinematográfico para recomendaciones */
    overflow: hidden;
    margin-bottom: 25px;
    background: #eee;
}

.reco-cover-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.reco-item-full:hover .reco-cover-box img {
    transform: scale(1.05);
}

.cat-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reco-meta-box .date {
    font-size: 0.75rem;
    color: var(--terracotta);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.reco-meta-box h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.reco-meta-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}
.btn-minimal {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border: 1px solid var(--white);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em; /* Un poco más de aire para que se vea premium */
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap; /* Evita que el texto del botón se parta en dos líneas */
}
.slide-video-container {
    width: 100%;
    max-width: 560px;
    align-self: center;
    justify-self: center;
}
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Proporción 16:9 */
    height: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-radius: 8px;
}
.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* --- CONTENEDOR MAESTRO DEL SLIDER --- */
.hero-slider-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000; /* Evita flasheos blancos en las transiciones */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.8s;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 5s ease-out;
}

.hero-slider .slide.active .slide-bg img {
    transform: scale(1.03); /* Efecto zoom sutil continuo mientras está activo */
}

/* --- REINICIO Y MAQUETACIÓN DE LAS FLECHAS TRANSPARENTES --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important; /* Quita el gris culero de HTML */
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.4); /* Inicialmente sutil */
    font-size: 2.5rem;
    font-family: inherit;
    cursor: pointer;
    z-index: 10; /* Obliga a estar arriba de las capas del slide */
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-appearance: none; /* Adiós estilos de Safari/Chrome */
    appearance: none;
}

.slider-arrow:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.prev-arrow { 
    left: 40px; 
}
.next-arrow { 
    right: 40px; 
}

.prev-arrow:hover { transform: translateY(-50%) translateX(-6px); }
.next-arrow:hover { transform: translateY(-50%) translateX(6px); }

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

.slider-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #fff;
    transform: scale(1.4);
}

/* Ocultar flechas en móviles para no estorbar el espacio táctil */
@media (max-width: 768px) {
    .slider-arrow { display: none; }
    .slider-dots { bottom: 30px; }
}
/* --- ENTORNO MAESTRO DEL SLIDER CLUB EN HOME --- */
.club-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 380px;
    height: 100%;
}

.club-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.club-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
    z-index: 1;
    box-sizing: border-box;
}

/* Esta es la regla dorada que el script activa */
.club-card.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

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

.club-content-grid {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Capa de legibilidad */
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 40px;
    align-items: center;
    box-sizing: border-box;
    gap: 25px;
}

.club-text-side { 
    color: #ffffff; 
}

.club-text-side h4 { 
    font-size: 1.5rem; 
    margin: 0 0 15px 0; 
    font-weight: 600; 
    line-height: 1.3; 
    font-family: 'Playfair Display', serif;
}

.club-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 3px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.club-link:hover {
    opacity: 0.8;
}

.club-visual-side { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
}

.club-floating-img {
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
    animation: floatingCardEffect 4s ease-in-out infinite;
}

.club-video-box { 
    width: 100%; 
    max-width: 260px; 
    border-radius: 6px; 
    overflow: hidden; 
    box-shadow: 0 12px 24px rgba(0,0,0,0.5); 
}

.club-video-box iframe { 
    width: 100%; 
    height: 145px; 
    border: 0; 
    display: block; 
}

/* PUNTOS DE CONTROL INFERIORES */
.club-slider-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.club-dot { 
    width: 7px; 
    height: 7px; 
    border-radius: 50%; 
    background: rgba(0,0,0,0.2); 
    cursor: pointer; 
    transition: all 0.3s; 
}

.club-dot.active { 
    background: #4f7871; 
    transform: scale(1.3); 
}

@keyframes floatingCardEffect {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .club-content-grid { grid-template-columns: 1fr; padding: 30px; text-align: center; }
    .club-visual-side { order: -1; }
    .club-floating-img { max-height: 180px; }
}