@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #f0ebe1;
    --beige-1: #f0ebe1;
    --beige-2: #8f8677;
    --beige-3: #a8a49a;
    --color-secondary: #d4a574;
    --color-accent: #8b6f47;
    --color-dark: #2a2a2a;
    --color-light: #f5f5f5;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-primary);
    background-color: #202020;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-feature-settings: "liga" 1, "clig" 1, "dlig" 1;
    font-variant-ligatures: common-ligatures discretionary-ligatures;
}

/* SVG oculto para el filtro de grano */
.noise-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Capa de grano cinematográfico global */
.film-grain,
body::after {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 999999;
    pointer-events: none;
    background: #ffffff;
    opacity: 0.1;
    mix-blend-mode: overlay;
    filter: url("#film-noise");
    animation: filmGrain 1.4s steps(2) infinite;
    will-change: transform;
}

.film-grain {
    display: none;
}

body::after {
    content: "";
}

@keyframes filmGrain {
    0% {
        transform: translate3d(0, 0, 0);
    }
    20% {
        transform: translate3d(-1.5%, 1%, 0);
    }
    40% {
        transform: translate3d(1%, -1.5%, 0);
    }
    60% {
        transform: translate3d(-1%, -0.5%, 0);
    }
    80% {
        transform: translate3d(1.5%, 0.5%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Typography System:
   - Averia Serif Libre (Light 300): Títulos grandes, subtítulos, párrafos cortos, contenido principal
   - Geist: Títulos pequeños, encabezadillos, info de apoyo
*/

@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 float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Reveal Animations */
.acto,
.pricing-card,
.film,
.participant,
.programa-header,
.ciclo-intro,
.contacto-content {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

body.home {
    position: relative;
}


/* Fondo para página de contacto */
body.contacto-page {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.contacto-page .programa-main {
    position: relative;
    flex: 1;
    z-index: 1;
    padding: 0;
}

body.contacto-page .programa-main::before,
body.contacto-page .programa-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
}

body.contacto-page .programa-main::before {
    background-image: url('images/background/contacto-bg.jpg');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    z-index: -2;
}

body.contacto-page .programa-main::after {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

body.contacto-page .site-footer {
    position: relative;
    z-index: 1;
    background-color: #202020;
    margin-top: 0;
}

/* Fondo para página de entradas */
body.entradas-page {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.entradas-page .programa-main {
    position: relative;
    flex: 1;
    z-index: 1;
    padding: 0;
}

body.entradas-page .programa-main::before,
body.entradas-page .programa-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
}

body.entradas-page .programa-main::before {
    background-image: url('images/background/index-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

body.entradas-page .programa-main::after {
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
    pointer-events: none;
}

body.entradas-page .site-footer {
    position: relative;
    z-index: 1;
    background-color: #202020;
    margin-top: 0;
}

body.entradas-page .programa-header {
    padding-top: 8rem;
    padding-bottom: 0.25rem;
}

body.home > *:not(.top-header) {
    position: relative;
    z-index: 1;
}


.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 1rem 2rem;
    z-index: 100000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.top-header.scrolled {
    background-color: rgba(32, 32, 32, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 2rem;
}

/* Quitar sombra del header en páginas con films-nav */
body.peliculas-page .top-header.scrolled,
body.coloquios-page .top-header.scrolled {
    box-shadow: none;
}


main {
    max-width: 80%;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

body.home main {
    padding: 0;
    max-width: 100%;
}

body.encuentro-page main {
    padding-bottom: 0;
}

body.encuentro-page .programa-main {
    padding-bottom: 0;
}

body.encuentro-page .programa-header {
    margin-bottom: 0;
}

/* H1 base: para subtítulos principales como "Cinco películas / Cinco ejercicios de disolución" */
h1 {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 4rem;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: lowercase;
    animation: fadeInUp 1s ease-out;
}

h1::first-letter {
    text-transform: uppercase;
}

h2 {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 4rem;
    margin-bottom: 2rem;
    text-transform: lowercase;
}

/* Director y año - Averia Serif Libre 2em */
.screening-left-col h2 {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 2em;
    margin: 0 0 1rem 0;
    color: var(--color-primary);
    line-height: 1.3;
    text-transform: none;
}

h3 {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

/* Sistema unificado de cabeceras */
.header-line-1 {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    text-align: left;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
}

.header-line-2 {
    /* Los estilos ya están definidos en h1 */
    line-height: 1.1;
}

/* Excepción para contacto: header-line-2 en negro */
body.contacto-page .header-line-2 {
    color: #252525;
}

/* Ajustar padding del header en contacto */
body.contacto-page .programa-header {
    padding-top: 6rem;
    padding-bottom: 0;
}

/* Header-line-1 en negro en contacto */
body.contacto-page .header-line-1 {
    color: #000000;
}
/* Reducir espacio en cabecera de compra */
body.compra-page .header-line-1 {
    margin-bottom: 0.25rem;
}
.header-line-3 {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    text-align: left;
    margin: 0.5rem 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--beige-3);
    
}
.entradas-page .header-line-3 {
    color: rgba(255,255,255,0.6);
    opacity: 1;
}

.header-line-4 {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    text-align: left;
    margin: 0.5rem 0 2rem 0;
    text-transform: none;
    letter-spacing: 0;
    color: var(--beige-3);
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.hero {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1.2s ease-out;
}

.subtitle {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 2rem;
    animation: fadeInUp 1.4s ease-out;
}

.venue-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    margin: 3rem auto;
    padding: 2rem 4rem;
    max-width: 100%;
    width: 100%;
    animation: fadeInUp 1.6s ease-out;
}

.info-column {
    text-align: left;
}

.info-column h3 {
    font-family: 'Geist', sans-serif;
    font-size: 0.7em;
    font-weight: 400;
    color: var(--color-secondary);
    margin: 0 0 0.3rem 0;
    line-height: 1.6;
    text-transform: uppercase;
}

.info-column h3 a {
    text-decoration: none;
    color: var(--color-secondary);
    transition: var(--transition-smooth);
    text-transform: none;
}

.info-column h3 a:hover {
    color: var(--color-primary);
}

.info-column h3 a[target="_blank"]::after {
    content: ' ↗';
    font-size: 0.9em;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100001;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links-left {
    margin-right: auto;
}

.nav-links-right {
    margin-left: auto;
}

.main-nav a {
    color: var(--beige-2);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a:hover {
    color: var(--color-secondary);
}

.main-nav a.active {
    color: var(--beige-1);
}

.nav-entradas {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--beige-2) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 8px;
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    outline: none;
    text-decoration: none;
    border: 1px solid var(--beige-2);
    transition: all 0.2s ease;
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
}

.nav-entradas .ticket-icon {
    width: 18px;
    height: 18px;
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.nav-entradas:hover {
    background-color: transparent;
    color: var(--color-secondary) !important;
    border-color: var(--color-secondary);
    transform: translateY(-1px);
    outline: none;
}

.nav-entradas:hover .ticket-icon {
    transform: rotate(-10deg) scale(1.1);
}

.nav-entradas.active {
    color: var(--beige-1) !important;
    opacity: 0.8;
}

.nav-entradas-mobile {
    display: none;
}

/* Footer global */
.site-footer {
    background-color: #202020;
    margin-top: 0;
    padding: 3rem 2rem 4rem 2rem;
    border-top: 1px solid #303030;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h4 {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--beige-2);
    margin: 0 0 0.5rem 0;
}

.footer-section h4 a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section h4 a:hover {
    color: var(--color-primary);
}

.footer-section p {
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
    color: var(--beige-3);
}

.footer-section p a {
    color: var(--beige-2);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section p a:hover {
    color: var(--color-secondary);
}

/* En mobile: mostrar flechas siempre */
.footer-section p a[target="_blank"]::after {
    content: ' ↗';
    font-size: 0.9em;
}

.footer-section p a[href^="mailto"]::after {
    content: ' ↗';
    font-size: 0.9em;
}

.footer-section p a[href="#"]::after {
    content: ' →';
    font-size: 0.9em;
}

/* Quitar flecha del link de descarga dossier por defecto */
.footer-dossier-link::after {
    content: '' !important;
}

.footer-dossier-link {
    color: var(--beige-3);
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: 0;
}

.footer-dossier-link:hover {
    color: var(--color-secondary);
}

/* En mobile: mostrar flecha siempre */
.footer-dossier-link::after {
    content: ' ↓' !important;
}

.footer-logo-img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo-desc {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--beige-3);
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    max-width: 280px;
}

/* Footer viejo (para homepage) */
footer:not(.site-footer) {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

footer:not(.site-footer) a {
    color: #f4e7c9;
    text-decoration: none;
    margin: 0 1rem;
    transition: opacity 0.3s;
}

footer:not(.site-footer) a:hover {
    opacity: 0.6;
}

ul {
    list-style-position: inside;
    margin: 1rem 0;
}

li {
    margin-bottom: 0.5rem;
}

/* Programa Page Styles */
.programa-main {
    max-width: 100%;
    padding: 3rem 0;
    margin: 0;
    flex: 1;
}

.programa-main > p,
.programa-main > ul {
    width: 60%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de participantes en 2 columnas */
.film-coloquio-section {
    margin-bottom: 6rem;
}

.film-coloquio-header {
    text-align: left;
    margin-bottom: 3rem;
    margin-left: 3rem;
}

.film-coloquio-date {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: var(--color-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.film-coloquio-title {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 4rem;
    margin: 0;
    padding: 0.75rem 0;
    color: var(--color-primary);
    text-align: left;
    text-transform: none;
    font-style: italic;
    line-height: 0.9;
    animation: none;
}

.film-coloquio-title::first-letter {
    text-transform: uppercase;
}

.participants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 2rem 10rem 0 10rem;
    max-width: 1100px;
    padding: 0;
}

.participant {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(240, 235, 225, 0.18);
}

.participant-photo-large {
    width: 260px;
    height: 260px;
    object-fit: cover;
    filter: grayscale(100%);
}

.participant h2 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.6rem;
}

.participant-occupation {
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.participant-bio {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 620px;
    margin-top: 0;

}

.programa-header {
    text-align: left;
    margin-bottom: 4rem;
    padding: 12rem 0 2rem 0;
    width: 60%;
    max-width: 1600px;
    margin-left: 0;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out;
}

.programa-header h1 {
    margin-bottom: 1rem;
}

.entradas-description {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 2rem;
    line-height: 1.6;
}

.beige-text {
    color: var(--beige-2);
    letter-spacing: 2px;
}

/* El ciclo */
.ciclo-intro {
    width: 60%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.ciclo-intro h2 {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 2rem;
    color: var(--color-primary);
    margin: 0;
    text-transform: none;
}

.ciclo-actos {
    width: 100%;
    max-width: 1600px;
    margin-left: 0;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

.acto {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acto-numero {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--beige-2);
    margin: 0;
}

.acto-titulo {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 3rem;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.1;
    font-style: italic;
}

.acto-descripcion {
    font-family: 'Geist', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--beige-2);
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    orphans: 2;
    widows: 2;
}

.acto-link {
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    color: var(--color-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}

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

.ciclo-cta {
    width: 60%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* Ciclo Hero Section */
.creadora-section {
    width: 100%;
    margin: 0;
    padding: 4rem 0;
    background: rgba(240, 235, 225, 0.03);
}

.creadora-content {
    width: 60%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.creadora-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: grayscale(100%);
}

.creadora-info h3 {
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--beige-2);
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.creadora-info h2 {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: var(--color-primary);
    text-transform: none;
    margin: 0 0 1rem 0;
}

.creadora-info h2::first-letter {
    text-transform: uppercase;
}

.creadora-occupation {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--beige-2);
    margin-bottom: 1rem;
}

.creadora-bio {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--beige-3);
    margin: 0;
}

.creadora-quote {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--beige-2);
    font-style: italic;
    margin: 2rem 0 0 0;
    padding: 0;
    border: none;
}

.creadora-quote cite {
    display: block;
    font-style: normal;
    font-size: 1rem;
    color: var(--beige-3);
    margin-top: 0.5rem;
}

/* Quote Section - Encuentro */
.quote-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    margin: 0;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background/encuentro-quote-bg.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.quote-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0) 0%,
        rgba(32, 32, 32, 0.3) 30%,
        rgba(32, 32, 32, 0.7) 60%,
        #202020 100%);
    z-index: -1;
}

.quote-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
}

.quote-text {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 2rem 0;
    font-style: italic;
}

.quote-author {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--beige-1);
    margin: 0;
    text-align: right;
}

.ciclo-hero {
    width: 60%;
    max-width: 1600px;
    margin: 6rem auto 8rem auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.ciclo-hero-title {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--beige-1);
    margin: 0;
    letter-spacing: -0.5px;
}

.ciclo-hero-dates {
    font-family: 'Geist', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--beige-2);
    margin: 0;
    letter-spacing: 0.5px;
}

.btn-entradas-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 1rem;
    font-weight: 300;
    color: #202020;
    background-color: var(--color-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0;
    border: 1px solid var(--color-primary);
}

.btn-entradas-hero .ticket-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-entradas-hero:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-entradas-hero:hover .ticket-icon {
    transform: rotate(-10deg) scale(1.1);
}

.btn-primary,
.btn-entradas-ciclo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 1rem;
    font-weight: 300;
    color: #202020;
    background-color: var(--color-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0;
    border: 1px solid var(--color-primary);
}

.btn-primary .ticket-icon,
.btn-entradas-ciclo .ticket-icon {
    width: 18px;
    height: 18px;
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.btn-primary:hover,
.btn-entradas-ciclo:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-primary:hover .ticket-icon,
.btn-entradas-ciclo:hover .ticket-icon {
    transform: rotate(-10deg) scale(1.1);
}

.btn-secondary {
    display: inline-flex;
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-secondary);
    background-color: transparent;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0;
    border: 1px solid #353535;
    width: fit-content;
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--beige-2);
    border-color: var(--color-secondary);
}

.btn-secondary .arrow {
    color: var(--color-secondary);
    margin-left: 0.5rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover .arrow {
    color: var(--color-secondary);
    transform: translateX(4px);
}

/* Contacto */
.contacto-content {
    width: 60%;
    max-width: 1600px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contacto-info {
    margin-bottom: 0;
}

.contacto-info h4 {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--beige-1);
    margin-bottom: 0.5rem;
}

.contacto-info p {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 1.5rem;
    margin: 0;
}

.contacto-info a {
    color: #000000;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contacto-info a::after {
    content: ' ↗';
    font-size: 0.9em;
}

.contacto-info a:hover {
    color: var(--color-primary);
}

.pricing-section {
    width: 90%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.aforo-notice {
    text-align: left;
    margin-top: 4rem;
    margin-bottom: 2rem;
    width: 90%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: flex;
    justify-content: flex-start;
    gap: 8rem;
    align-items: flex-start;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.pricing-card h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--beige-1);
}

.pricing-card h2 {
    margin-top: 0;
    margin-bottom: 0;
    align-self: flex-start;
}

.programa-subtitle {
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}


/* Lista de películas (anclas) - Averia Serif Libre */
.films-nav {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    text-align: left;
    margin-top: 0;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
    padding: 1.5rem 5% 1.5rem 10rem;
    font-size: 1.4rem;
    color: var(--color-primary);
    position: sticky;
    top: 70px;
    background: transparent;
    z-index: 100;
    transition: var(--transition-smooth);
}

.films-nav.scrolled {
    background: rgba(32, 32, 32, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    top: 60px;
}

.films-nav a {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    color: var(--beige-2);
    text-decoration: none;
    font-style: italic;
    transition: all 0.3s ease;
    padding: 0 0.3rem;
    white-space: nowrap;
    position: relative;
}

.films-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.films-nav a:hover {
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.films-nav a:hover::after {
    width: 80%;
}

/* Scroll margin para anclas en página de coloquios */
body.coloquios-page .film-coloquio-date {
    scroll-margin-top: 150px;
}

/* Nuevo diseño de Programa */
.film {
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    transition: var(--transition-smooth);
}

.film:nth-child(2) { animation-delay: 0.2s; }
.film:nth-child(3) { animation-delay: 0.3s; }
.film:nth-child(4) { animation-delay: 0.4s; }
.film:nth-child(5) { animation-delay: 0.5s; }
.film:nth-child(6) { animation-delay: 0.6s; }

.film-image-background {
    width: 100vw;
    margin: 0 0 2rem 0;
    margin-left: 0;
    aspect-ratio: 23.33 / 9;
    overflow: hidden;
    position: relative;
    scroll-margin-top: 140px;
}

.film-image-background::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: -2%;
    left: 0;
    right: 0;
    height: 102%;
    background: linear-gradient(to bottom, rgba(32, 32, 32, 0.3) 0%, #202020 100%);
    pointer-events: none;
}

.film-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 0 0 4rem 12rem;
    align-items: start;
    width: 90%;
    max-width: 1600px;
    margin-left: 0;
    margin-right: auto;
    margin-top: -20%;
    position: relative;
    z-index: 1;
}

/* Columna del cartel */
.film-poster {
    width: 210px;  /* 10% más pequeño que 270px */
    height: auto;
}

.film-poster img {
    width: 90%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.film-poster img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Contenedor de info + coloquio */
.film-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Fecha y hora */
.film-date {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: var(--color-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Título de película */
.film-title {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 4rem;
    margin: 0;
    padding: 0.75rem 0;
    color: var(--color-primary);
    text-align: left;
    text-transform: none;
    font-style: italic;
    line-height: 0.9;
    animation: none;
}

.film-title em {
    font-style: italic;
}

/* Director y año */
.film-director {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 2rem;
    margin: 0;
    color: var(--color-primary);
    line-height: 1.3;
    text-transform: none;
}

/* Slogan de película - color beige */
.film-slogan {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-primary);
    font-style: normal;
    margin: 0 0 2rem 0;
    padding-top: 1rem;
    opacity: 1;
    text-align: left;
    text-transform: none;
    margin: 0;
    animation: none;
}

/* Sección de coloquio - en una línea horizontal */
/* Descripción opcional de película */
.film-description {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-primary);
    margin: 0 0 2rem 0;
}

.film-coloquio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

/* Botón de compra de entradas */
.btn-entradas {
    display: inline-block;
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
    background-color: var(--color-secondary);
    padding: 0.8rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-entradas:hover {
    background-color: var(--color-primary);
    color: var(--color-dark);
}

/* "Coloquio con" - Geist, mayúscula, dorado */
.coloquio-with-label {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Lista de participantes - estilo similar a lista de películas */
.participants-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.participants-list li {
    margin-bottom: 0;
}

.participants-list li a {
    display: inline;
    padding: 0;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-secondary);
    font-style: normal;
}

.participants-list li a:hover {
    color: var(--color-primary);
}

/* Separador entre nombres */
.participants-list li:not(:last-child)::after {
    content: ' / ';
    color: var(--color-secondary);
    font-style: normal;
    margin-left: 0.5rem;
}

.participant-photo {
    display: none;
}

/* Ocultar span, usar directamente el texto del link */
.participants-list span {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-style: inherit;
}

/* Separadores "/" en beige 2 */
.separator {
    color: var(--beige-2);
}

/* Información de entradas */
.film-ticket {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--beige-2);
    margin: 0;
    display: none;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.participant {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    margin-bottom: 0;
    padding: 1.5rem 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.participant:nth-child(odd) {
    animation-delay: 0.1s;
}

.participant:nth-child(even) {
    animation-delay: 0.2s;
}

.participant-photo-large {
    width: 220px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
    filter: grayscale(100%);
}

/* Wrapper para alinear horizontalmente "Participa en" + películas */
.participant-films-wrapper {
    display: none;
}

/* "Participa en" - dorado, alineado al final */
.participant-films-title {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.participant-films {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-style: normal;
    margin: 0;
}

.participant-films a {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-style: italic;
}

.participant-films a:hover {
    color: var(--color-primary);
}

.participant-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
}

/* Nombres de participantes - H2 en dorado */
.participant h2 {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 2em;
    color: var(--color-secondary);
    margin-top: 0;
    margin-bottom: 0;
    text-transform: none;
}

/* Ocupación del participante - beige con letter-spacing */
.participant-occupation {
    font-family: 'Geist', sans-serif;
    font-size: 0.8em;
    font-weight: 400;
    color: var(--beige-2);
    margin-top: 8px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Biografía extensa opcional */
.participant-bio {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 12px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing {
    background: transparent;
    padding: 2rem;
    margin-top: 2rem;
}

.pricing p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    transition: var(--transition-smooth);
    position: relative;
}

a:hover {
    color: var(--color-secondary);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--color-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.lightbox-close:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    color: var(--color-primary);
    margin-top: 1rem;
    font-size: 1.2rem;
    font-style: italic;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0;
    animation: fadeInUp 1.8s ease-out;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 300;
    color: var(--beige-2);
    line-height: 1;
}

.countdown-label {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--beige-2);
    opacity: 0.7;
}

.event-live {
    font-size: 2rem;
    color: var(--color-secondary);
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #c0c0c0;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top::after {
    content: 'Volver arriba';
    position: absolute;
    right: 60px;
    white-space: nowrap;
    background-color: rgba(192, 192, 192, 0.9);
    color: #202020;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: Georgia, 'Times New Roman', serif;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.scroll-to-top:hover {
    color: #ffffff;
    transform: translateY(-5px);
}

.scroll-to-top:hover::after {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Respeto a preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .film-grain,
    body::after {
        animation: none;
    }
}

/* Reducir opacidad del grano en móvil */
@media (max-width: 768px) {
    .film-grain,
    body::after {
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .film-grain,
    body::after {
        opacity: 0.06;
    }
}

/* Media queries para cabeceras progresivas */
@media (max-width: 1200px) {
    .programa-header, .pricing-section, .aforo-notice, .contacto-content, .programa-main > p, .programa-main > ul, .ciclo-intro, .ciclo-cta, .ciclo-hero {
        width: 65%;
    }
}

@media (max-width: 1024px) {
    .programa-header, .pricing-section, .aforo-notice, .contacto-content, .programa-main > p, .programa-main > ul, .ciclo-intro, .ciclo-cta, .ciclo-hero {
        width: 70%;
    }
}

@media (max-width: 900px) {
    .programa-header, .pricing-section, .aforo-notice, .contacto-content, .programa-main > p, .programa-main > ul, .ciclo-intro, .ciclo-cta, .ciclo-hero {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .pricing-section, .aforo-notice, .programa-main > p, .programa-main > ul, .ciclo-intro, .ciclo-cta, .ciclo-hero {
        margin-left: 3rem;
    }

    .contacto-content {
        margin-left: 3rem;
    }

    .participants-grid {
        margin-left: 3rem;
    }

    .film-details {
        padding-left: 3rem;
    }

    .programa-header {
        padding: 6rem 0 2rem 0;
    }

    /* Margin left para programa-header en mobile, excepto en home */
    body:not(.home) .programa-header {
        margin-left: 3rem;
    }

    body.contacto-page .programa-main::before {
        background-position: center;
    }

    .contacto-info p {
        font-size: 1.2rem;
    }

    .participant-info {
        margin-right: 2rem;
    }
}

@media (max-width: 1024px) {
    .film-image-background {
        aspect-ratio: 18 / 9;
    }
}

@media (max-width: 900px) {
    .film-image-background {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .film-image-background {
        aspect-ratio: 4 / 3;
    }

    .film-details {
        margin-top: -40%;
    }

    .film-poster {
        width: 129px;  /* 20% más pequeño que 161px */
    }

    .film-poster img {
        width: 60%;
    }

    .film-date {
        font-size: 12px;
    }

    .film-title {
        font-size: 3rem;
    }

    .film-director {
        font-size: 1.5rem;
    }

    .film-slogan {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    main {
        padding: 1rem;
    }

    .top-header {
        padding: 0.75rem 1rem;
    }

    .hamburger {
        display: flex;
    }

    /* Ocultar el botón entradas que está dentro del nav en mobile */
    .nav-links .nav-entradas:not(.nav-entradas-mobile) {
        display: none;
    }

    /* Mostrar el botón entradas fuera del nav en mobile */
    .nav-entradas-mobile {
        display: inline-flex !important;
        margin-left: auto;
        background-color: #000000;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(32, 32, 32, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 5rem 2rem 2rem 2rem;
        transition: left 0.3s ease, box-shadow 0.3s ease;
        z-index: 100000;
        box-shadow: none;
    }

    .main-nav.active {
        left: 0;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links-left,
    .nav-links-right {
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(244, 231, 201, 0.1);
        font-size: 1.1rem;
    }

    /* En mobile, el botón de entradas dentro del nav se comporta como link normal */
    .nav-links-left .nav-entradas {
        background-color: transparent;
        color: var(--beige-2) !important;
        padding: 1rem 0 !important;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(244, 231, 201, 0.1);
        font-weight: 500;
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .nav-links-left .nav-entradas:hover {
        background-color: transparent;
        color: var(--color-secondary) !important;
        transform: none;
    }

    .programa-header h1 {
        font-size: 2.5rem;
    }

    .ciclo-hero {
        margin: 4rem auto 6rem 10%;
        gap: 1.5rem;
    }

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

    .ciclo-hero-dates {
        font-size: 12px;
    }

    .btn-entradas-hero {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }

    .btn-entradas-hero .ticket-icon {
        width: 18px;
        height: 18px;
    }

    .screening-card {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .screening-card.screening-left {
        flex-direction: column;
    }

    .screening-card.screening-right,
    .screening-card.screening-left {
        margin-left: auto;
        margin-right: auto;
    }

    .screening-image img {
        width: 220px;
        height: 220px;
    }

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

    .venue-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .info-column {
        text-align: left;
    }

    .info-column h3 {
        font-size: 12px;
    }

    .countdown {
        gap: 1rem;
        padding: 0;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 12px;
    }

    .lightbox-close {
        top: -30px;
        font-size: 30px;
    }

    .film-image-background {
        width: 100%;
    }

    .el-ciclo-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .ciclo-actos {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 80%;
        margin-left: 0;
    }

    .acto-titulo {
        font-size: 2.5rem;
    }

    .film-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 3rem;
    }

    .film-poster {
        width: 100%;
        max-width: 250px;
        margin: 0;
    }

    .screening-right-col {
        padding-left: 0;
        padding-top: 2rem;
    }

    .screening-left-col h1 {
        font-size: 3.2rem;
    }

    .screening-left-col h2 {
        font-size: 1.8em;
    }

    .screening-image-overlay h1 {
        font-size: 3rem;
    }

    .screening-image-overlay h2 {
        font-size: 1.5rem;
    }

    .screening-desc {
        font-size: 1.2rem;
    }

    .participant-photo {
        width: 40px;
        height: 40px;
    }

    .participants-list span {
        font-size: 1.1rem;
    }

    .films-nav {
        padding: 1rem 10% 1.5rem 10%;
        font-size: 1.2rem;
        top: 60px;
    }

    .participant {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1.5rem;
    }

    .participant-photo-large {
        width: 100%;
        max-width: 220px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    /* Responsive para la sección de Isabel - consistente con .participant */
    .creadora-content {
        grid-template-columns: 1fr;
        width: 80%;
        gap: 2rem;
    }

    .creadora-photo img {
        width: 100%;
        max-width: 220px;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .scroll-to-top::after {
        right: 55px;
        font-size: 12px;
        padding: 0.4rem 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .footer-section {
        gap: 0.5rem;
    }

    .participants-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-left: 3rem;
    }

    .programa-header {
        width: 90%;
    }

    .entradas-description {
        text-align: left;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-card {
        text-align: left;
    }

    .pricing-card h2 {
        font-size: 4rem;
    }
}

/* Desktop: mostrar flechas solo en hover */
@media (min-width: 769px) {
    .footer-section p a[target="_blank"]::after,
    .footer-section p a[href^="mailto"]::after,
    .footer-section p a[href="#"]::after {
        content: '';
    }

    .footer-section p a[target="_blank"]:hover::after {
        content: ' ↗';
    }

    .footer-section p a[href^="mailto"]:hover::after {
        content: ' ↗';
    }

    .footer-section p a[href="#"]:hover::after {
        content: ' →';
    }

    .footer-dossier-link::after {
        content: '' !important;
    }

    .footer-dossier-link:hover::after {
        content: ' ↓' !important;
    }

    /* Padding left para headers en desktop */
    .programa-header {
        padding-left: 10rem;
    }

    /* Colores de navegación en contacto solo para desktop */
    body.contacto-page .main-nav a.active {
        color: #000000;
    }

    body.contacto-page .main-nav a {
        color: var(--beige-1);
    }

    /* Margin left para film-coloquio-header en desktop */
    .film-coloquio-header {
        margin-left: 10rem;
    }

    /* Padding left y right para ciclo-actos en desktop */
    .ciclo-actos {
        padding-left: 10rem;
        padding-right: 10rem;
    }

    /* Botón entradas con fondo negro en contacto para desktop */
    body.contacto-page .nav-entradas {
        background-color: rgba(0, 0, 0, 0.5);
    }

    /* Padding left y right para programa-main en contacto para desktop */
    body.contacto-page .programa-main {
        padding-left: 25rem;
        padding-right: 10rem;
    }

    /* Quitar padding-left del header en contacto para desktop */
    body.contacto-page .programa-header {
        padding-left: 0;
    }
}


/* ========================================
   NUEVO HERO SECTION - Homepage Redesign
   ======================================== */

.hero-new {
    min-height: 92vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8rem 2rem 2rem;
    position: relative;
    animation: fadeIn 1.2s ease-out;
    background-image: url('images/background/index-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -2rem;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-main-content {
    flex: 1;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding-left: 8rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-logo {
    width: 20%;
    max-width: 200px;
    height: auto;
    margin: 0;
    animation: fadeInUp 1s ease-out;
}

.hero-small-text {
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--beige-2);
    text-transform: lowercase;
    letter-spacing: 1px;
    margin: 0;
    animation: fadeInUp 1s ease-out;
}

.hero-presenta-text {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--beige-2);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 1rem 0 0.5rem 0;
    animation: fadeInUp 1.1s ease-out;
}

.hero-large-text {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-primary);
    text-transform: lowercase;
    margin: 0;
    animation: fadeInUp 1.2s ease-out;
}

.hero-large-text::first-letter {
    text-transform: uppercase;
}

.hero-subtitle-text {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--beige-3);
    letter-spacing: 1px;
    margin: 1rem 0 0 0;
    animation: fadeInUp 1.3s ease-out;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

.btn-cta {
    font-family: 'Averia Serif Libre', Georgia, serif;
    font-weight: 300;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    outline: none;
}

.btn-cta-primary {
    background-color: transparent;
    color: var(--beige-2);
    border: 1px solid var(--beige-2);
}

.btn-cta-primary:hover {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--beige-2);
    border: none;
}

.btn-cta-secondary:hover {
    background-color: transparent;
    color: var(--color-secondary);
    transform: translateY(-1px);
}

.hero-info-below {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
    animation: fadeInUp 1.8s ease-out;
}

.info-item {
    text-align: left;
}

.info-item h4 {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--beige-3);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-family: 'Geist', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--beige-2);
    margin: 0.25rem 0;
    line-height: 1.6;
}

.info-item a {
    color: var(--beige-2);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-item a:hover {
    color: var(--color-primary);
}

.info-item a[target="_blank"]::after {
    content: ' ↗';
    font-size: 0.85em;
}

.countdown-new {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
    animation: fadeIn 2s ease-out;
}

.countdown-new .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.countdown-new .countdown-number {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--beige-2);
    line-height: 1;
}

.countdown-new .countdown-label {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--beige-2);
    opacity: 0.7;
}

.countdown-new .event-live {
    font-size: 1.2rem;
    color: var(--color-secondary);
    text-align: left;
}

/* Sección El Ciclo migrada */
.el-ciclo-section {
    scroll-margin-top: -100px;
}

/* Asegurar smooth scroll en toda la página */
html {
    scroll-behavior: smooth;
}

/* Responsive para el nuevo Hero */
@media (max-width: 1200px) {
    .hero-large-text {
        font-size: 4rem;
    }

    .hero-main-content {
        max-width: 90%;
        padding-left: 5rem;
    }

    .hero-info-below {
        flex-direction: column;
    }

    .hero-new {
        padding-top: 7rem;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        width: 70%;
    }

    .hero-large-text {
        font-size: 2.5rem;
    }

    .hero-small-text {
        font-size: 12px;
    }

    .hero-presenta-text {
        font-size: 12px;
    }

    .btn-cta {
        padding: 0.5rem 1.2rem;
        font-size: 12px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-main-content {
        padding-left: 2rem;
    }

    .hero-new {
        padding: 8rem 1.5rem 2rem;
        background-position: right center;
    }

    .countdown-new {
        gap: 0.8rem;
    }

    .countdown-new .countdown-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-large-text {
        font-size: 2rem;
    }

    .hero-small-text {
        font-size: 12px;
    }

    .hero-presenta-text {
        font-size: 12px;
    }
}

/* Responsive styles for quote section */
@media (max-width: 768px) {
    .quote-section {
        min-height: 80vh;
        padding: 4rem 2rem;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .quote-author {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .quote-section {
        min-height: 70vh;
        padding: 3rem 1.5rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .quote-author {
        font-size: 0.9rem;
    }
}


/* COLOQUIOS - diseño vertical limpio */
body.coloquios-page .participants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100% - 4rem);
    margin: 2rem auto 5rem auto;
    max-width: 1050px;
}

body.coloquios-page .participant {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(240, 235, 225, 0.18);
}

body.coloquios-page .participant {
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
}

body.coloquios-page .participant-photo-large {
    width: 260px;
    height: 260px;
    object-fit: cover;
}

body.coloquios-page .participant h2 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

body.coloquios-page .participant-occupation {
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 1.8px;
    margin-bottom: 0.8rem;
}

body.coloquios-page .participant-bio {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 520px;
    margin-top: 0.6rem;
}

body.coloquios-page .participant h2 {
    font-size: 2rem;
    line-height: 1.1;
}

body.coloquios-page .participant-bio {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 520px;
}

/* COLOQUIOS - ajuste móvil definitivo */
@media (max-width: 768px) {
    body.coloquios-page .film-coloquio-title {
    font-size: 2.8rem;
    line-height: 0.95;
}
    body.coloquios-page .participants-grid {
        width: calc(100% - 2rem);
        margin: 2rem auto 4rem auto;
        max-width: 100%;
    }

    body.coloquios-page .participant {
        display: block;
        padding: 2.5rem 0;
    }

    body.coloquios-page .participant-photo-large {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1 / 1;
        display: block;
        margin: 0 auto 1.5rem auto;
    }

    body.coloquios-page .participant-info {
        width: 100%;
        margin-right: 0;
    }

    body.coloquios-page .participant h2 {
        font-size: 2.2rem;
        line-height: 1.05;
        margin-bottom: 0.75rem;
    }

    body.coloquios-page .participant-occupation {
        font-size: 0.75rem;
        line-height: 1.4;
        letter-spacing: 1.4px;
        margin-bottom: 1rem;
    }

    body.coloquios-page .participant-bio {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
        margin-top: 0;
    }
}
/* Corrección nombres propios Isabel y Paula */
 .creadora-info h2 {
    text-transform: none !important;
}

/* ===== ENTRADAS ===== */
.entradas-grid {
    max-width: 1100px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 110px 20px;
    padding: 0 40px;
}

.entrada-card {
    text-align: center;
}

.entrada-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.entrada-card h4 {
    margin: 8px 0 2px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entrada-card p {
    margin: 2px 0;
    font-size: 0.9rem;
}

    
.entrada-fecha {
    color: var(--color-secondary);
}



.entrada-precio {
    font-size: 0.9rem;
    margin: 0;
}

.entrada-boton {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.5);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.entrada-boton:hover {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .entradas-grid {
        grid-template-columns: 1fr;
    }
}
.entrada-compra {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.entrada-boton {
    margin: 0;
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* ===== COMPRA ===== */

.compra-main {
    padding: 0.5rem 2rem 0.3rem;
}

.compra-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.compra-poster img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 2rem;
}
.compra-submit{
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 12px 24px;
    display: inline-block;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}
.compra-sumit:hover{
    background: rgba(255,255,255,0.8);
}

.compra-info {
    max-width: 560px;
}

.compra-info .header-line-1,
.compra-info .header-line-2 {
    margin-left: 0;
}

.compra-lugar,
.compra-incluye {
    font-size: 1rem;
    line-height: 1.5;
    margin: 1rem 0;
}

.compra-form {
    margin-top: 0.75rem;
    display: grid;
    gap: 1rem;
}

.compra-form label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compra-form input,
.compra-form select {
    padding: 0.6rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
}

.compra-total {
    margin-top: 0.4rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(240,235,225,0.18);
    padding-top: 0.4rem;
    color: var(--color-secondary);
}

.compra-nota {
    font-size: 0.85rem;
    opacity: 0.7;
}
.compra-form selesct option {
    background: #1a1a1a;
    color: var(--color-secundary);
}
   
 .compra-submit{
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 12px 24px;
    display: inline-block;
    width: auto;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
 }    
    .compra-sumit:hover {
        background: rgba(255,255,255,0.1);
    }
 /* Ajuste específico para carteles más grandes */
body.compra-page img[src*="rashomon"] {
    width: 280px;
    height: auto;
}

body.compra-page img[src*="Abono"] {
    width: 280px;
    height: auto;
}  
/* ===== COMPRA EN MÓVIL ===== */
@media (max-width: 700px) {
  .compra-main {
    padding: 1rem 1rem 2rem;
  }

  .compra-wrapper {
    display: block;
    max-width: 100%;
  }

  .compra-poster {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .compra-poster img {
    max-width: 220px;
    width: 70%;
    height: auto;
    margin: 0 auto;
  }

  .compra-info {
    max-width: 100%;
  }

  .compra-info .header-line-2 {
    font-size: 3rem;
    line-height: 1;
  }

  .compra-form {
    margin-top: 1rem;
    gap: 0.8rem;
  }

  .compra-form input,
  .compra-form select,
  .compra-submit {
    width: 100%;
    box-sizing: border-box;
  }

  .compra-total {
    margin-top: 0.8rem;
  }

  .compra-nota {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}
/* ===== ENTRADAS EN MÓVIL ===== */
@media (max-width: 700px) {
  .entradas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
    margin: 3rem auto;
  }

  .entrada-card {
    text-align: center;
  }

  .entrada-card img {
    width: 75%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
  }

  .entrada-card h4 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
  }

  .entrada-card p {
    font-size: 1rem;
  }

  .entrada-compra {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  body.entradas-page .entradas-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    padding: 0 1.5rem !important;
    margin: 3rem auto !important;
  }

  body.entradas-page .entrada-card {
    text-align: center !important;
    background: transparent !important;
    padding: 0 !important;
  }

  body.entradas-page .entrada-card img {
    width: 50% !important;
    max-width: 170px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 1rem !important;
  }

  body.entradas-page .entrada-compra {
    justify-content: center !important;
    flex-wrap: wrap !important;
    background: transparent !important;
  }
}