Biblioteca
/
estilos_actualizado.css


/* ==========================================================================
   1. RESETEO Y CONFIGURACIÓN GENERAL
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ffffff;            
    font-family: 'Special Elite', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Evita desbordamientos horizontales */
}

/* Contenedores para centrar el contenido */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-width-small {
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Espaciados adaptativos (Desktop por defecto, reducen en móvil) */
.section-padding {
    padding: 100px 0; 
}

/* Fondos sutiles alternativos */
.bg-alt {
    background-color: #080808; 
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px; 
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* Bio Text */
.bio-text {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
}

/* ==========================================================================
   2. BARRA DE NAVEGACIÓN (HEADER)
   ========================================================================== */
.main-header {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    backdrop-filter: blur(8px); /* Efecto glassmorphism elegante */
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #aaaaaa;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px; 
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: #aaaaaa;
    border-bottom: 2px solid #ffffff;
}

/* Botón Hamburguesa Animado */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animaciones del Menú Hamburguesa al activarse */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   3. SECCIÓN DE INICIO (HERO LOGO)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    background-color: #000000;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.hero-main-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.05));
    transition: transform 0.5s ease;
}

.hero-main-logo:hover {
    transform: scale(1.02);
}

/* Separador de Sección Moderno */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2c2c2c, transparent);
}

/* ==========================================================================
   4. TARJETAS Y GRID SISTEMAS
   ========================================================================== */

/* Estilos de Tarjetas Comunes (Para unificar la estética) */
.category-card, .book-card, .interview-card {
    background-color: #0c0c0c;
    padding: 40px 30px;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.category-card:hover, .book-card:hover, .interview-card:hover {
    border-color: #444444;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* Literatura Grid (3 columnas) */
.grid-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Libros Grid (4 columnas adaptativas) */
.grid-four-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 por fila para tener un ancho consistente en tus 2 libros */
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.book-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

/* Portadas de libros estandarizadas */
.book-cover {
    width: 210px;
    height: 310px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.8);
    border: 1px solid #222;
    transition: transform 0.4s ease;
}

.book-card:hover .book-cover {
    transform: scale(1.04) rotate(1deg);
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.book-year {
    color: #777777;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Entrevistas Grid (2 columnas) */
.grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.interview-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.interview-header h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.meta-info {
    display: block;
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 20px;
    font-style: italic;
}

.interview-card p {
    color: #aaaaaa;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Botones y Links Estilizados */
.btn-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease, color 0.2s;
}

.btn-link:hover {
    color: #cccccc;
    gap: 12px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: #cccccc;
    transform: translateY(-2px);
}

/* ==========================================================================
   5. AGENDA (TIMELINE) - MODERNIZADA
   ========================================================================== */
.timeline-events {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-item {
    display: flex;
    background-color: #0c0c0c;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.event-item:hover {
    border-color: #333333;
    transform: translateX(5px);
}

.event-date {
    background-color: #ffffff;
    color: #000000;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 110px;
    font-weight: bold;
    text-align: center;
}

.event-date .day { 
    font-size: 2.2rem; 
    line-height: 1;
}

.event-date .month { 
    text-transform: uppercase; 
    font-size: 0.95rem;
    margin-top: 5px;
    letter-spacing: 1px;
}

.event-details {
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-details h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.event-meta {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 12px;
    display: flex;
    gap: 20px;
}

.event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.event-description {
    color: #aaaaaa;
    font-size: 0.95rem;
}

/* ==========================================================================
   6. SECCIÓN SEGUIME (REDES SOCIALES)
   ========================================================================== */
.social-intro {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.social-icons a {
    color: #ffffff;
    font-size: 3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

/* Animaciones individuales elegantes al hacer Hover */
.social-icons a:hover {
    transform: translateY(-8px) scale(1.15);
}

.social-icons a[aria-label="Instagram"]:hover {
    color: #e1306c;
}

.social-icons a[aria-label="Facebook"]:hover {
    color: #1877f2;
}

.social-icons a[aria-label="Spotify"]:hover {
    color: #1db954;
}

.social-icons a[aria-label="YouTube"]:hover {
    color: #ff0000;
}

/* ==========================================================================
   7. FOOTER LIMPIO
   ========================================================================== */
.main-footer {
    border-top: 1px solid #141414;
    background-color: #030303;
    padding: 40px 0;
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: #555555;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover { 
    color: #ffffff; 
}


/* ==========================================================================
   8. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* 💻 NOTEBOOKS & DESKTOPS MEDIANOS (Menos de 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .grid-three-columns {
        gap: 20px;
    }
}

/* 📱 TABLETS (Menos de 992px) */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    /* Literatura pasa a 2 columnas */
    .grid-three-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Entrevistas pasa a 1 columna */
    .grid-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Libros a 1 columna */
    .grid-four-columns {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* 📱 CELULARES (Menos de 768px) */
@media (max-width: 768px) {
    /* Header & Menú Móvil */
    .menu-toggle {
        display: flex; /* Muestra el botón hamburguesa */
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Totalmente oculto a la derecha */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(5, 5, 5, 0.98);
        border-left: 1px solid #1a1a1a;
        padding: 100px 40px 40px 40px;
        transition: right 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }

    .main-nav.is-active {
        right: 0; /* Despliega el menú lateral */
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    /* Hero */
    .hero-section {
        min-height: 70vh;
    }

    .hero-main-logo {
        max-width: 300px;
    }

    /* Literatura */
    .grid-three-columns {
        grid-template-columns: 1fr;
    }

    /* Agenda */
    .event-item {
        flex-direction: column;
    }

    .event-date {
        min-width: 100%;
        padding: 15px;
        flex-direction: row;
        gap: 10px;
    }

    .event-date .day {
        font-size: 1.6rem;
    }

    .event-date .month {
        margin-top: 0;
    }

    .event-details {
        padding: 20px;
        text-align: center;
    }

    .event-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Redes sociales */
    .social-icons {
        gap: 30px;
    }

    .social-icons a {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* 📱 CELULARES CHICOS (Menos de 480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .bio-text {
        font-size: 1.05rem;
    }

    .hero-main-logo {
        max-width: 250px;
    }

    .book-cover {
        width: 180px;
        height: 260px;
    }
}

/* ==========================================================================
   NUEVAS ANIMACIONES Y MICROINTERACCIONES (Hovers y Botones)
   ========================================================================== */

/* --- 1. Botón "Ver más" (btn-link) con línea expansiva y flecha activa --- */
.btn-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: color 0.3s ease;
}

/* Línea sutil que se expande horizontalmente por debajo al hacer hover */
.btn-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Animación de la flecha que se desplaza hacia la derecha */
.btn-link i {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-link:hover i {
    transform: translateX(6px);
}


/* --- 2. Botón "Ver Detalles" (btn-secondary) con efecto de barrido interno --- */
.btn-secondary {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent; /* Inicialmente transparente */
    color: #ffffff;                /* Texto blanco */
    text-decoration: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: bold;
    border: 1px solid #ffffff;     /* Borde blanco */
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;              /* Recorta el fondo que sube */
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease, transform 0.2s ease;
    text-transform: uppercase;
}

/* El fondo blanco que se esconde abajo y sube al hacer hover */
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Color de relleno */
    z-index: -1;
    transition: top 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-secondary:hover {
    color: #000000;            /* El texto pasa a negro para contrastar con el fondo */
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    top: 0; /* Sube por completo el fondo */
}

.btn-secondary:active {
    transform: translateY(0);
}


/* --- 3. Efecto "Reveal" (Aparición de elementos al hacer Scroll) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Esta clase se activa de forma automática mediante el JavaScript */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   SECCIÓN SOBRE NOSOTROS (PERFIL)
   ========================================== */

.perfil-lista {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px; 
  text-align: left; /* Cambialo a 'center' si preferís que el texto quede centrado */
}

/* ==========================================================================
   MEJORAS SUTILES — LITERATURA Y AGENDA
   Pegar al final del archivo CSS
   ========================================================================== */


/* ==========================================================================
   LITERATURA
   ========================================================================== */

#literatura {
    position: relative;
    overflow: hidden;
}

/* Luz ambiental muy suave */
#literatura::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    width: 700px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.045),
        transparent 68%
    );
    transform: translateX(-50%);
    pointer-events: none;
}

#literatura .container {
    position: relative;
    z-index: 1;
}

/* Línea debajo del título */
#literatura .section-title {
    margin-bottom: 65px;
}

#literatura .section-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 18px auto 0;
    background-color: #c4a35a;
}

/* Tarjetas */
#literatura .category-card {
    min-height: 320px;
    padding: 42px 34px 35px;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            transparent 60%
        ),
        #0c0c0c;
    border: 1px solid #202020;
    border-radius: 4px;
}

/* Número editorial de fondo */
#literatura .category-card::before {
    position: absolute;
    top: 7px;
    right: 20px;
    color: rgba(255, 255, 255, 0.035);
    font-family: Georgia, serif;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    transition: color 0.35s ease, transform 0.35s ease;
}

#literatura .category-card:nth-child(1)::before {
    content: "01";
}

#literatura .category-card:nth-child(2)::before {
    content: "02";
}

#literatura .category-card:nth-child(3)::before {
    content: "03";
}

/* Detalle lateral */
#literatura .category-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 0;
    background-color: #c4a35a;
    transition: height 0.4s ease;
}

#literatura .category-card:hover {
    border-color: #3b3b3b;
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
}

#literatura .category-card:hover::before {
    color: rgba(196, 163, 90, 0.09);
    transform: translateY(-4px);
}

#literatura .category-card:hover::after {
    height: 100%;
}

/* Icono */
#literatura .card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2d2d2d;
    border-radius: 50%;
    font-size: 1.35rem;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

#literatura .category-card:hover .card-icon {
    color: #111111;
    background-color: #c4a35a;
    border-color: #c4a35a;
    transform: rotate(-5deg);
}

/* Título y texto */
#literatura .category-card h3 {
    position: relative;
    margin-bottom: 17px;
    font-size: 1.45rem;
}

#literatura .category-card p {
    margin-bottom: 26px;
    color: #b6b6b6;
    line-height: 1.75;
}

/* Empuja el enlace al final para alinear las tarjetas */
#literatura .btn-link {
    width: max-content;
    margin-top: auto;
}


/* ==========================================================================
   AGENDA
   ========================================================================== */

#agenda {
    position: relative;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.035),
            transparent 40%
        ),
        #000000;
}

#agenda .section-title {
    margin-bottom: 65px;
}

#agenda .section-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 18px auto 0;
    background-color: #c4a35a;
}

#agenda .timeline-events {
    max-width: 900px;
    gap: 28px;
}

/* Tarjeta completa */
#agenda .event-item {
    position: relative;
    min-height: 190px;
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.025),
            transparent 55%
        ),
        #0c0c0c;
    border: 1px solid #252525;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
}

/* Línea de acento inferior */
#agenda .event-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #c4a35a;
    transition: width 0.45s ease;
}

#agenda .event-item:hover {
    border-color: #444444;
    transform: translateX(7px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
}

#agenda .event-item:hover::after {
    width: 100%;
}

/* Fecha menos fuerte que el blanco puro */
#agenda .event-date {
    min-width: 145px;
    padding: 28px;
    position: relative;
    background-color: #f0f0ec;
    color: #080808;
}

/* Detalle pequeño dentro de la fecha */
#agenda .event-date::after {
    content: "";
    position: absolute;
    bottom: 24px;
    width: 28px;
    height: 2px;
    background-color: #c4a35a;
}

#agenda .event-date .day {
    font-family: Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
}

#agenda .event-date .month {
    margin-top: 8px;
    font-size: 0.82rem;
    letter-spacing: 2px;
}

/* Contenido */
#agenda .event-details {
    flex: 1;
    padding: 38px 42px;
}

#agenda .event-details h3 {
    margin-bottom: 10px;
    font-size: 1.55rem;
    transition: color 0.3s ease;
}

#agenda .event-item:hover .event-details h3 {
    color: #c4a35a;
}

#agenda .event-meta {
    margin-bottom: 19px;
    color: #8d8d8d;
}

#agenda .event-meta i {
    color: #c4a35a;
}

#agenda .event-description {
    max-width: 600px;
    color: #b5b5b5;
    line-height: 1.75;
}


/* ==========================================================================
   RESPONSIVE PARA LAS MEJORAS
   ========================================================================== */

@media (max-width: 768px) {

    #literatura .section-title,
    #agenda .section-title {
        margin-bottom: 45px;
    }

    #literatura .category-card {
        min-height: auto;
        padding: 34px 28px;
    }

    #literatura .category-card::before {
        font-size: 4.5rem;
    }

    #agenda .event-item {
        min-height: auto;
    }

    #agenda .event-date {
        min-width: 100%;
        min-height: 85px;
        padding: 18px;
    }

    #agenda .event-date::after {
        display: none;
    }

    #agenda .event-details {
        padding: 28px 24px;
    }

    #agenda .event-item:hover {
        transform: translateY(-4px);
    }
}

/* ==========================================================================
   MEJORAS SUTILES — SECCIÓN LIBROS
   ========================================================================== */

#libros {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.035),
            transparent 42%
        ),
        #000000;
}

#libros .section-title {
    margin-bottom: 65px;
}

#libros .section-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 18px auto 0;
    background-color: #c4a35a;
}

/* Contenedor de los libros */
#libros .grid-four-columns {
    max-width: 900px;
    gap: 34px;
}

/* Tarjeta */
#libros .book-card {
    min-height: 570px;
    padding: 34px 30px 32px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            transparent 62%
        ),
        #0b0b0b;
    border: 1px solid #252525;
    border-radius: 5px;
    overflow: hidden;
}

/* Número editorial */
#libros .book-card::before {
    position: absolute;
    top: 10px;
    right: 18px;
    color: rgba(255, 255, 255, 0.035);
    font-family: Georgia, serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    transition: color 0.35s ease, transform 0.35s ease;
}

#libros .book-card:nth-child(1)::before {
    content: "01";
}

#libros .book-card:nth-child(2)::before {
    content: "02";
}

/* Línea lateral */
#libros .book-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 0;
    background-color: #c4a35a;
    transition: height 0.4s ease;
}

#libros .book-card:hover {
    transform: translateY(-8px);
    border-color: #424242;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.48);
}

#libros .book-card:hover::before {
    color: rgba(196, 163, 90, 0.1);
    transform: translateY(-4px);
}

#libros .book-card:hover::after {
    height: 100%;
}

/* Portada */
#libros .book-cover {
    width: 220px;
    height: 320px;
    margin-bottom: 28px;
    border-radius: 3px;
    border: 1px solid #323232;
    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.7),
        0 0 0 8px rgba(255, 255, 255, 0.018);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

#libros .book-card:hover .book-cover {
    transform: translateY(-5px) scale(1.025);
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.78),
        0 0 0 8px rgba(196, 163, 90, 0.035);
}

/* Información */
#libros .book-info {
    width: 100%;
}

#libros .book-info h4 {
    min-height: 58px;
    margin-bottom: 8px;
    font-size: 1.25rem;
    line-height: 1.4;
}

#libros .book-year {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 16px;
    color: #8f8f8f;
    letter-spacing: 1px;
}

#libros .book-year::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 34px;
    height: 1px;
    background-color: #3b3b3b;
    transform: translateX(-50%);
}

/* Botón */
#libros .btn-secondary {
    min-width: 145px;
    padding: 12px 22px;
    border-color: #8e8e8e;
}

#libros .btn-secondary:hover {
    border-color: #c4a35a;
}

/* Responsive */
@media (max-width: 992px) {

    #libros .grid-four-columns {
        max-width: 430px;
    }

    #libros .book-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {

    #libros .section-title {
        margin-bottom: 45px;
    }

    #libros .book-card {
        padding: 28px 22px;
    }

    #libros .book-cover {
        width: 190px;
        height: 280px;
    }

    #libros .book-card::before {
        font-size: 4rem;
    }
}

/* ==========================================================================
   MEJORA DEL HERO / INICIO
   ========================================================================== */

#inicio.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 120px 24px 70px;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.045),
            transparent 34%
        ),
        #000000;
}

/* Líneas decorativas */
#inicio.hero-section::before,
#inicio.hero-section::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22)
    );
}

#inicio.hero-section::before {
    left: 4%;
}

#inicio.hero-section::after {
    right: 4%;
    transform: rotate(180deg);
}

#inicio .hero-content {
    width: 100%;
    max-width: 680px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Etiqueta superior */
#inicio .hero-etiqueta {
    margin-bottom: 28px;
    color: #c4a35a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Logo */
#inicio .hero-main-logo {
    width: 100%;
    max-width: 390px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter:
        drop-shadow(0 18px 30px rgba(0, 0, 0, 0.75))
        drop-shadow(0 0 18px rgba(255, 255, 255, 0.035));
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

#inicio .hero-main-logo:hover {
    transform: scale(1.025);
    filter:
        drop-shadow(0 22px 35px rgba(0, 0, 0, 0.85))
        drop-shadow(0 0 25px rgba(196, 163, 90, 0.07));
}

/* Frase */
#inicio .hero-frase {
    max-width: 500px;
    margin: 30px auto 0;
    color: #bdbdbd;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.5;
}

/* Botón */
#inicio .hero-boton {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    padding: 12px 0;
    border-bottom: 1px solid #c4a35a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

#inicio .hero-boton:hover {
    color: #c4a35a;
    gap: 18px;
}

#inicio .hero-boton i {
    animation: flechaHero 1.7s ease-in-out infinite;
}

@keyframes flechaHero {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* Textos laterales */
#inicio .hero-lateral {
    position: absolute;
    top: 50%;
    color: #4f4f4f;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

#inicio .hero-lateral-izquierda {
    left: 28px;
    transform: translateY(-50%) rotate(180deg);
}

#inicio .hero-lateral-derecha {
    right: 28px;
    transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 768px) {

    #inicio.hero-section {
        min-height: 85vh;
        padding-top: 110px;
    }

    #inicio.hero-section::before,
    #inicio.hero-section::after {
        display: none;
    }

    #inicio .hero-content {
        padding: 20px;
    }

    #inicio .hero-main-logo {
        max-width: 300px;
    }

    #inicio .hero-frase {
        font-size: 1.3rem;
    }

    #inicio .hero-lateral {
        display: none;
    }
}

@media (max-width: 480px) {

    #inicio .hero-etiqueta {
        font-size: 0.62rem;
        letter-spacing: 2.5px;
    }

    #inicio .hero-main-logo {
        max-width: 250px;
    }

    #inicio .hero-frase {
        font-size: 1.15rem;
    }
}

/*==================================================
SOBRE NOSOTROS
==================================================*/

#sobre-nosotros{
    position:relative;
    overflow:hidden;
}

#sobre-nosotros::before{
    content:"";
    position:absolute;
    top:-180px;
    left:50%;
    width:700px;
    height:350px;
    background:radial-gradient(circle,
    rgba(255,255,255,.04),
    transparent 70%);
    transform:translateX(-50%);
}

.about-tag{
    display:block;
    text-align:center;
    margin-bottom:15px;
    color:#c4a35a;
    letter-spacing:4px;
    font-size:.75rem;
    text-transform:uppercase;
}

#sobre-nosotros .section-title{
    margin-bottom:60px;
}

#sobre-nosotros .section-title::after{
    content:"";
    display:block;
    width:55px;
    height:2px;
    background:#c4a35a;
    margin:18px auto 0;
}

.about-box{
    max-width:950px;
    margin:auto;
}

.about-box>.bio-text{
    max-width:760px;
    margin:auto;
    margin-bottom:30px;
    text-align:center;
    color:#bdbdbd;
    font-size:1.15rem;
    line-height:1.9;
}

.about-grid{
    margin-top:65px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.about-item{
    background:#0d0d0d;
    border:1px solid #232323;
    padding:32px;
    transition:.35s;
    position:relative;
}

.about-item:hover{
    transform:translateY(-6px);
    border-color:#444;
}

.about-item span{
    position:absolute;
    top:15px;
    right:18px;
    font-size:3rem;
    color:rgba(255,255,255,.04);
    font-family:Georgia;
}

.about-item h3{
    margin-bottom:14px;
    font-size:1.2rem;
}

.about-item p{
    color:#b6b6b6;
    line-height:1.8;
}

@media(max-width:768px){

.about-grid{
grid-template-columns:1fr;
}

.about-item{
padding:26px;
}

}

/* ==========================================================================
   MEJORA FINAL — CONTACTO Y FOOTER
   ========================================================================== */

#contacto {
    position: relative;
    overflow: hidden;
    padding: 110px 0 95px;
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 255, 255, 0.045),
            transparent 38%
        ),
        #080808;
}

/* detalle decorativo suave */
#contacto::before,
#contacto::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.16)
    );
}

#contacto::before {
    left: 5%;
}

#contacto::after {
    right: 5%;
    transform: rotate(180deg);
}

/* título */
#contacto .section-title {
    margin-bottom: 22px;
}

#contacto .section-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 18px auto 0;
    background: #c4a35a;
}

/* texto */
#contacto .social-intro {
    max-width: 700px;
    margin: 0 auto 38px;
    color: #a8a8a8;
    font-size: 1rem;
    line-height: 1.8;
}

/* redes */
#contacto .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

#contacto .social-icons a {
    width: 64px;
    height: 64px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2c2c2c;
    border-radius: 50%;
    background: #0d0d0d;
    color: #ffffff;
    font-size: 1.7rem;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

#contacto .social-icons a:hover {
    transform: translateY(-7px);
    border-color: #c4a35a;
    background-color: #141414;
}

/* colores por red */
#contacto .social-icons a[aria-label="Instagram"]:hover {
    color: #e1306c;
}

#contacto .social-icons a[aria-label="Facebook"]:hover {
    color: #1877f2;
}

#contacto .social-icons a[aria-label="Spotify"]:hover {
    color: #1db954;
}

#contacto .social-icons a[aria-label="YouTube"]:hover {
    color: #ff0000;
}


/* FOOTER */

.main-footer {
    border-top: 1px solid #181818;
    background: #020202;
    padding: 28px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-copy {
    color: #666666;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    position: relative;
    color: #666666;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

.social-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #c4a35a;
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.social-links a:hover::after {
    width: 100%;
}


/* RESPONSIVE */

@media (max-width: 768px) {

    #contacto {
        padding: 85px 0 75px;
    }

    #contacto::before,
    #contacto::after {
        display: none;
    }

    #contacto .social-icons {
        gap: 18px;
    }

    #contacto .social-icons a {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.about-link {
    display: inline-block;
    margin-top: 18px;
    color: #d6b56d;
    font-family: "Special Elite", monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.about-link::after {
    content: " →";
}

.about-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* ========================================
   REVISTA EL CARRO DE TESPIS
======================================== */

#carro-de-tespis {
    background: #050505;
}

.revista-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1050px;
    margin: 55px auto 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.revista-imagen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 45px;
    background: #090909;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.revista-imagen img {
    display: block;
    width: 100%;
    max-width: 470px;
    height: auto;
}

.revista-contenido {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}

.revista-numero {
    display: inline-block;
    margin-bottom: 20px;
    color: #d6b56d;
    font-family: "Special Elite", monospace;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.revista-contenido h3 {
    margin: 0 0 25px;
    color: #ffffff;
    font-family: "Special Elite", monospace;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
}

.revista-contenido p {
    margin: 0 0 18px;
    color: #d0d0d0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    line-height: 1.75;
}

.revista-link {
    align-self: flex-start;
    display: inline-block;
    margin-top: 15px;
    padding: 13px 22px;
    color: #d6b56d;
    border: 1px solid rgba(214, 181, 109, 0.65);
    font-family: "Special Elite", monospace;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.revista-link::after {
    content: " →";
}

.revista-link:hover {
    color: #050505;
    background: #d6b56d;
    transform: translateY(-3px);
}


/* TABLET */

@media (max-width: 850px) {

    .revista-box {
        grid-template-columns: 1fr;
    }

    .revista-imagen {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .revista-box {
        margin-top: 40px;
    }

    .revista-imagen {
        padding: 30px 20px;
    }

    .revista-contenido {
        padding: 38px 25px;
    }

    .revista-contenido h3 {
        font-size: 1.8rem;
    }

    .revista-contenido p {
        font-size: 1.05rem;
    }

    .revista-link {
        width: 100%;
        text-align: center;
    }

}

/* ==========================================
   ENTREVISTAS
========================================== */

#entrevistas {
    overflow: hidden;
}

#entrevistas .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.encabezado-entrevistas {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.encabezado-entrevistas .section-title {
    margin-bottom: 18px;
}

.encabezado-entrevistas .section-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 18px auto 0;
    background: #c4a35a;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #b5b5b5;
    font-size: 1rem;
    line-height: 1.8;
}

.carrusel-entrevistas {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

#entrevistas .interview-card {
    width: 100%;
    min-width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

#entrevistas .video-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111111;
    text-decoration: none;
}

#entrevistas .video-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sombra-video {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.76),
        rgba(0, 0, 0, 0.04) 62%
    );
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    font-size: 1.35rem;
    transform: translate(-50%, -50%);
}

.play-button i {
    margin-left: 4px;
}

.plataforma-video {
    position: absolute;
    left: 20px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(15, 15, 15, 0.76);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plataforma-video i {
    color: #ff0000;
}

.contenido-video {
    min-height: 260px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

#entrevistas .meta-info {
    display: block;
    color: #c4a35a;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contenido-video h3 {
    margin: 14px 0 16px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.25;
}

#entrevistas .contenido-video p {
    margin-bottom: 24px;
    color: #cfcfcf;
    font-size: 0.92rem;
    line-height: 1.7;
}

.btn-video {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: auto;
    padding: 13px 0;
    border-bottom: 1px solid #c4a35a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
}

.controles-carrusel,
.indicacion-deslizar {
    display: none !important;
}


/* TABLET Y CELULAR */

@media (max-width: 800px) {

    #entrevistas .container {
        padding: 0 20px;
    }

    .encabezado-entrevistas {
        margin-bottom: 35px;
    }

    .carrusel-entrevistas {
        max-width: 560px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contenido-video {
        min-height: auto;
    }

}


@media (max-width: 480px) {

    #entrevistas .container {
        padding: 0 16px;
    }

    .section-subtitle {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .carrusel-entrevistas {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    #entrevistas .interview-card {
        width: 100%;
        max-width: 100%;
    }

    .contenido-video {
        padding: 20px 18px;
    }

    .contenido-video h3 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    #entrevistas .contenido-video p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .play-button {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }

    .plataforma-video {
        left: 14px;
        bottom: 12px;
        padding: 6px 10px;
        font-size: 0.68rem;
    }

}
