/* ============================================
   CLADE 2027 - DISEÑO MODERNO V2
   ============================================ */

:root {
    /* Colores CLADE Vibrantes */
    --color-rosa: #FF006E;
    --color-magenta: #FF4D6D;
    --color-naranja: #FFA500;
    --color-amarillo: #FFD500;
    --color-verde: #CCFF00;
    --color-cian: #00D9FF;
    --color-purpura: #B537F2;

    /* Neutros */
    --color-negro: #0d0d0d;
    --color-blanco: #FFFFFF;
    --color-gris-claro: #F5F5F5;
    --color-gris-oscuro: #1a1a1a;

    /* Tipografía */
    --font-main: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-negro);
    color: var(--color-blanco);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* PRUEBA TEMPORAL: logo 3D */
/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #333;
    backdrop-filter: blur(10px);
}

/* Franja de color a bloques planos, inspirada en el lenguaje visual
   de ADEA/Grafias: rompe la línea del header sin usar fotos ni degradados
   en texto. */
.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    background: linear-gradient(90deg,
        var(--color-rosa) 0 16.66%,
        var(--color-naranja) 16.66% 33.33%,
        var(--color-amarillo) 33.33% 50%,
        var(--color-verde) 50% 66.66%,
        var(--color-cian) 66.66% 83.33%,
        var(--color-purpura) 83.33% 100%);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo-img {
    height: 34px;
    width: auto;
    flex-shrink: 0;
}

.header-logo span,
.header-logo a {
    color: var(--color-cian);
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-logo a:hover {
    color: var(--color-rosa);
}

.header-nav {
    display: flex;
    gap: 40px;
}

.header-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-blanco);
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--color-rosa);
}

.header-lang {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
}

.header-lang a {
    color: #666;
    transition: color 0.2s ease;
}

.header-lang a:hover {
    color: var(--color-blanco);
}

.header-lang .lang-current {
    color: var(--color-blanco);
}

/* ============================================
   HERO SECTION - GRID ASIMÉTRICO
   ============================================ */

.hero {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Manchas de color suaves detrás del hero: suavizan el negro plano
   sin recurrir a fotos ni a degradados sobre texto. */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 55%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.22), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -10%;
    width: 50%;
    height: 65%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.18), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.hero-banner,
.hero-info-bar,
.hero-desc-wrap {
    position: relative;
    z-index: 1;
}

/* Banner full-bleed: rompe el ancho del container para ocupar todo el viewport.
   El PNG ya viene sin ningún fondo propio (se le sacó el recuadro oscuro
   detrás de la placa), así que apoya directo sobre el negro de la página
   sin necesidad de igualar ningún tono. */
.hero-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: var(--color-negro);
    display: flex;
    justify-content: center;
}

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

.hero-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 36px 40px;
    border-bottom: 1px solid #262626;
}

.hero-info-bar-text {
    display: flex;
    align-items: baseline;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-desc-wrap {
    padding: 30px 40px 50px;
}

/* Carrusel full-bleed entre la barra de info y el texto del hero: franja
   de fotos que se desliza continuamente de derecha a izquierda (marquee en CSS puro). */
.hero-carousel-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 34px 0 50px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.hero-carousel-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: hero-carousel-slide 45s linear infinite;
}

.hero-carousel:hover .hero-carousel-track {
    animation-play-state: paused;
}

.hero-carousel-track img {
    height: 100%;
    width: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 14px;
    border-radius: 10px;
}

@keyframes hero-carousel-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 160px;
    }

    .hero-carousel-track {
        animation-duration: 30s;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* BARRA DE INFO + CTA */
.hero-info {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-cian);
}

.hero-year {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-blanco);
}

.hero-dates {
    font-size: 15px;
    font-weight: 600;
    color: #999;
}

/* CTA */
.btn-cta {
    display: inline-block;
    background: var(--color-cian);
    color: var(--color-negro);
    border: none;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.btn-cta:hover {
    background: var(--color-rosa);
    color: var(--color-blanco);
    transform: scale(1.02);
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-rosa);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::after {
    width: 300px;
    height: 300px;
    z-index: -1;
}

/* Highlight tipo marcador: reemplaza los degradados en texto por un
   bloque de color sólido detrás de la frase, más moderno y directo. */
.marker-highlight {
    display: inline;
    background: var(--color-cian);
    color: var(--color-negro);
    padding: 0.15em 0.35em;
    border-radius: 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* DESCRIPCIÓN */
.hero-theme {
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.5;
    max-width: none;
    padding-top: 30px;
    white-space: nowrap;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #777;
    max-width: none;
    white-space: nowrap;
    padding: 14px 0 30px;
}

.hero-desc-accent {
    color: var(--color-blanco);
    font-weight: 600;
}

/* ============================================
   COUNTDOWN
   ============================================ */

.countdown {
    padding: 50px 40px;
    background: var(--color-negro);
    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 220%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 213, 0, 0.10), transparent 65%);
    filter: blur(50px);
    pointer-events: none;
}

.countdown-label,
.countdown-grid {
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 30px;
}

.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.countdown-unit {
    min-width: 90px;
}

.countdown-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: var(--color-cian);
}

.countdown-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin-top: 8px;
}

.countdown-sep {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .countdown-grid {
        gap: 10px;
    }

    .countdown-unit {
        min-width: 60px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .countdown-sep {
        font-size: 28px;
    }
}

/* ============================================
   DATOS SECTION
   ============================================ */

.datos {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--color-blanco);
    border-top: 1px solid #333;
}

.datos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.dato {
    text-align: center;
}

.dato-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-rosa);
}

.dato-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ============================================
   INSCRIPCIÓN SECTION
   ============================================ */

.inscripcion {
    padding: 80px 40px;
    background: var(--color-negro);
    border-top: 1px solid #333;
}

.inscripcion-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

/* Tabla de aranceles */
.tarifas {
    max-width: 1200px;
    margin: 70px auto 0;
}

.tarifas-table-wrap {
    overflow-x: auto;
    border: 1px solid #262626;
    border-radius: 12px;
}

.tarifas-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 14px;
}

.tarifas-table th,
.tarifas-table td {
    padding: 16px 20px;
    text-align: left;
    white-space: nowrap;
}

.tarifas-table thead th {
    background: #111;
    color: var(--color-cian);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #262626;
}

.tarifas-table tbody td {
    color: #ccc;
    border-top: 1px solid #1a1a1a;
}

.tarifas-table tbody td:first-child {
    font-weight: 700;
    color: var(--color-blanco);
}

.tarifas-table tbody tr:hover td {
    background: #111;
}

@media (max-width: 768px) {
    .tarifas {
        margin-top: 50px;
    }

    .tarifas-table th,
    .tarifas-table td {
        padding: 12px 16px;
        font-size: 13px;
    }
}

.inscripcion-text h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    white-space: nowrap;
}

.inscripcion-text .accent {
    display: inline;
    background: var(--color-cian);
    color: var(--color-negro);
    padding: 0.1em 0.3em;
    border-radius: 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.inscripcion-text p {
    font-size: 16px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-negro);
    color: var(--color-blanco);
    padding: 60px 40px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--color-purpura) 0 16.66%,
        var(--color-cian) 16.66% 33.33%,
        var(--color-verde) 33.33% 50%,
        var(--color-amarillo) 50% 66.66%,
        var(--color-naranja) 66.66% 83.33%,
        var(--color-rosa) 83.33% 100%);
}

.footer-content,
.footer-orgs,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
    text-align: center;
}

.footer-links {
    font-size: 14px;
}

.footer-links a {
    color: var(--color-blanco);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-rosa);
}

.footer-orgs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #262626;
}

.footer-org-logo {
    height: 50px;
    width: auto;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* ============================================
   PÁGINAS INTERNAS (Sede, Comité, Noticias)
   ============================================ */

.page-hero {
    padding: 160px 40px 60px;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--color-negro) 100%);
    border-bottom: 1px solid #262626;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -8%;
    width: 45%;
    height: 90%;
    background: radial-gradient(circle, rgba(181, 55, 242, 0.20), transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.16), transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

.page-hero-eyebrow,
.page-hero-title,
.page-hero-desc {
    position: relative;
    z-index: 1;
}

.page-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-cian);
    margin-bottom: 14px;
}

.page-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    max-width: none;
    white-space: nowrap;
}

.page-hero-title .accent {
    display: inline;
    background: var(--color-cian);
    color: var(--color-negro);
    padding: 0.05em 0.3em;
    border-radius: 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.page-hero-desc {
    margin-top: 20px;
    font-size: 17px;
    color: #999;
    max-width: none;
    white-space: nowrap;
    line-height: 1.6;
}

.section {
    padding: 70px 40px;
    border-top: 1px solid #1a1a1a;
}

.section-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-rosa);
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 36px;
    max-width: 640px;
}


.section-title--wide {
    max-width: none;
}

.presentacion-tagline {
    font-size: 18px;
    color: #999;
    line-height: 1.6;
    margin: 18px 0 34px;
    max-width: none;
}

.presentacion-tagline strong {
    color: var(--color-blanco);
    font-weight: 600;
}

.presentacion-lead {
    position: relative;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-blanco);
    padding-left: 26px;
    border-left: 3px solid var(--color-cian);
    margin-bottom: 44px;
}

.presentacion-lead strong {
    color: var(--color-cian);
    font-weight: 700;
}

.presentacion-cols {
    columns: 2;
    column-gap: 60px;
    position: relative;
}

.presentacion-cols p {
    font-size: 16px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 22px;
    break-inside: avoid;
}

.presentacion-cols em {
    color: #ccc;
    font-style: italic;
}

@media (min-width: 1600px) {
    .presentacion-cols {
        columns: 3;
    }
}

/* Tarjetas de información genéricas (sede, alojamiento, etc.) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: #111;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.3s ease;
}

.info-card:hover {
    border-color: var(--color-rosa);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.12);
}

.info-card-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-cian);
    margin-bottom: 10px;
}

.info-card-logo {
    height: 40px;
    width: auto;
    margin-bottom: 18px;
}

.info-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card-text {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

.doc-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-cian);
    transition: color 0.2s ease;
}

.doc-download::after {
    content: '↓';
    font-size: 14px;
}

.doc-download:hover {
    color: var(--color-rosa);
}

.icon-youtube {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Bloque de links a video (playlists de YouTube) */
.video-links {
    margin-top: 28px;
    text-align: center;
}

.video-links-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-blanco);
    margin-top: 24px;
}

.video-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 32px;
}

.video-card {
    display: block;
    width: 320px;
    max-width: 100%;
    text-decoration: none;
    text-align: left;
}

.video-card-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
    border: 1px solid #262626;
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-card:hover .video-card-thumb img {
    transform: scale(1.06);
}

.video-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video-card-play svg {
    width: 52px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.video-card-label {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-cian);
    transition: color 0.2s ease;
}

.video-card:hover .video-card-label {
    color: var(--color-rosa);
}

.video-card-label svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.map-placeholder {
    background: #111;
    border: 1px solid #262626;
    border-radius: 12px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    max-width: 1400px;
    margin: 0 auto 40px;
}

/* Grillas de comité / noticias */
.people-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.person-avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid #262626;
    margin-bottom: 16px;
    overflow: hidden;
}

.person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-name {
    font-size: 16px;
    font-weight: 700;
}

.person-role {
    font-size: 13px;
    color: var(--color-cian);
    font-weight: 600;
    margin-top: 4px;
}

.person-bio {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-top: 12px;
}

/* Galería de ediciones anteriores (bento grid) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 16px 14px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-blanco);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 520px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Franja de fotos en la home (teaser hacia la galería de Noticias) */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.photo-strip-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.photo-strip-item:hover img {
    transform: scale(1.06);
}

.photo-strip-more {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
}

@media (max-width: 768px) {
    .photo-strip {
        grid-template-columns: 1fr;
    }
}

/* Estado vacío (sin contenido publicado todavía) */
.empty-state {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    border: 1px dashed #333;
    border-radius: 16px;
}

.empty-state-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15), transparent 70%);
    border: 1px solid rgba(255, 0, 110, 0.35);
}

.empty-state-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.empty-state-text {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

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

@media (max-width: 1024px) {
    .hero-year {
        font-size: 32px;
    }

    .hero-theme {
        font-size: 20px;
    }

    .hero-desc,
    .inscripcion-text h2,
    .page-hero-desc {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .page-hero-title {
        white-space: normal;
        font-size: 38px;
    }

    .hero-info-bar {
        padding: 24px 20px;
    }

    .hero-info-bar-text {
        gap: 16px;
    }

    .hero-desc-wrap {
        padding: 30px 20px 40px;
    }

    .presentacion-lead {
        font-size: 19px;
        padding-left: 16px;
    }

    .presentacion-cols {
        columns: 1;
    }

    .hero-theme {
        font-size: 18px;
        white-space: normal;
    }

    .hero-desc {
        white-space: normal;
    }

    .inscripcion-text h2 {
        white-space: normal;
    }
}
