/* ==========================================================
   Arena Cavancha 2026 — Custom Styles
   ========================================================== */

/* ----------------------------------------------------------
   Base
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 160%;
    color: #16171d;
    background: #fff;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    margin: 0 0 .5em;
}

p { margin-bottom: 30px; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

/* ----------------------------------------------------------
   Header
---------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 6px -6px rgba(0,0,0,.1);
    transition: background .3s, border-color .3s, box-shadow .3s;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 30px 0;
    column-gap: 56px;
}

/* Logo — fijado en el centro exacto del viewport */
.site-logo-link { text-decoration: none; justify-self: center; flex-shrink: 0; }
.site-logo-img  { height: 52px; width: auto; display: block; }

/* Nav izquierda — items se alinean a la derecha (hacia el logo) */
.nav-left {
    justify-self: end;
    display: flex;
    align-items: center;
}

/* Nav derecha + Instagram — items se alinean a la izquierda (desde el logo) */
.nav-right {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    gap: 80px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-menu-list--left  { justify-content: flex-end; }
.nav-menu-list--right { justify-content: flex-start; }

.nav-menu-list li a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #16171d;
    transition: opacity .2s;
    white-space: nowrap;
}
.nav-menu-list li a:hover { opacity: .55; }
.nav-menu-list li { list-style: none; }

/* Instagram icon in header */
.header-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16171d;
    margin-left: 80px;
    transition: opacity .2s;
    flex-shrink: 0;
}
.header-instagram:hover { opacity: .55; }

.btn-tickets-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #16171d;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 100px;
    white-space: nowrap;
    transition: opacity .2s;
}
.btn-tickets-header:hover { opacity: .8; color: #fff; }

.btn-icon-header {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: none;
    background: #16171d;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: opacity .2s;
    flex-shrink: 0;
}
.btn-icon-header:hover { opacity: .7; }

/* Mobile icons */
.header-mobile-ctas { gap: 4px; }
.btn-icon-mobile {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #16171d;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: opacity .2s;
    text-decoration: none;
}
.btn-icon-mobile:hover { opacity: .6; }

/* Hamburger */
.btn-hamburger {
    width: 40px; height: 40px;
    border: none; background: transparent;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #16171d;
    padding: 0;
}

/* Transparent header — only when .header-transparent class is present on body */
body.header-transparent .site-header {
    background: transparent;
    border-color: transparent;
}
body.header-transparent .site-logo-img { filter: brightness(0) invert(1); }
body.header-transparent .nav-menu-list li a { color: #fff; }
body.header-transparent .header-instagram { color: #fff; }
body.header-transparent .btn-icon-mobile,
body.header-transparent .btn-hamburger { color: #fff; }

/* Scrolled: restaurar a blanco */
.site-header.scrolled {
    background: #fff !important;
    border-color: rgba(0,0,0,.08) !important;
}
.site-header.scrolled .site-logo-img { filter: none !important; }
.site-header.scrolled .nav-menu-list li a { color: #16171d !important; }
.site-header.scrolled .header-instagram { color: #16171d !important; }
.site-header.scrolled .btn-icon-mobile,
.site-header.scrolled .btn-hamburger { color: #16171d !important; }

/* ----------------------------------------------------------
   Mobile menu overlay
---------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.btn-menu-close {
    background: none; border: none; cursor: pointer;
    color: #16171d; padding: 8px;
    display: flex; align-items: center; justify-content: center;
}

.mobile-menu-list {
    list-style: none;
    margin: 0; padding: 0;
}
.mobile-menu-list li { border-bottom: 1px solid #f0f0f0; }
.mobile-menu-list li a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #16171d;
    padding: 20px 0;
    transition: opacity .2s;
}
.mobile-menu-list li a:hover { opacity: .6; }

.btn-tickets-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #16171d;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 100px;
    margin-top: 40px;
    align-self: flex-start;
    transition: opacity .2s;
}
.btn-tickets-mobile:hover { opacity: .8; color: #fff; }

/* ----------------------------------------------------------
   Site content offset
---------------------------------------------------------- */
.site-content { padding-top: 112px; }/* 30px top + ~52px logo + 30px bottom */
body.header-transparent .site-content { padding-top: 0; }

/* ----------------------------------------------------------
   Footer
---------------------------------------------------------- */
.site-footer {
    background: #fff;
    overflow: hidden;
}

.footer-dark {
    background: #16171d;
    color: #fff;
    padding: 48px 0;
}

/* Minimal 3-column footer layout */
.footer-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 40px;
}

.footer-minimal-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-logo-img {
    height: 88px;
    width: auto;
    display: block;
}
.footer-logo-secondary {
    border-left: 1px solid rgba(255,255,255,.2);
    padding-left: 24px;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
}

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,.8);
    transition: color .2s;
}
.footer-links li a:hover { color: #fff; }

.footer-minimal-social {
    display: flex;
    justify-content: flex-end;
}

.footer-social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-social-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}
.footer-social-icon:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Footer responsive */
@media (max-width: 768px) {
    .footer-minimal {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-minimal-logos { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer-minimal { grid-template-columns: 1fr; }
    .footer-minimal-logos { grid-column: auto; }
}

/* ----------------------------------------------------------
   Alianzas
---------------------------------------------------------- */
.section-alianzas {
    background: #fff;
    padding: 0 0 48px;
    overflow: hidden;
}
.alianzas-wave {
    line-height: 0;
    margin-bottom: 40px;
}
.alianzas-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}
.alianzas-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.alianzas-titulo {
    font-family: 'Epilogue', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #16171d;
    margin: 0;
    flex-shrink: 0;
    line-height: 1;
}
.alianzas-row {
    display: flex;
    align-items: center;
    gap: 56px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}
.alianza-item { display: block; flex-shrink: 0; }
.alianza-logo {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: .6;
    transition: filter .2s, opacity .2s;
}
.alianza-logo:hover { filter: none; opacity: 1; }

/* ----------------------------------------------------------
   Single Post (Noticia)
---------------------------------------------------------- */
body.single-post,
body.single-evento-page,
body.archive-noticias,
body.archive-eventos { background: #eaeaea; }

body.single-post .site-content,
body.single-evento-page .site-content,
body.archive-noticias .site-content,
body.archive-eventos .site-content { background: #eaeaea; }

/* ----------------------------------------------------------
   Archive (Noticias + Eventos)
---------------------------------------------------------- */
.archive-header {
    padding: 48px 0 32px;
}
.archive-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #16171d;
    margin: 0 0 8px;
}
.archive-desc {
    font-size: 16px;
    color: #555;
    margin: 0;
}
.archive-body {
    padding: 0 0 80px;
}

/* Igual altura en grid de cards */
.archive-body .row { align-items: stretch; }
.archive-body .col-lg-4,
.archive-body .col-md-6 { display: flex; }
.archive-body .related-card { width: 100%; }

/* Paginación */
.archive-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.archive-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #16171d;
    background: #fff;
    transition: background .2s, color .2s;
    text-decoration: none;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
    background: #16171d;
    color: #fff;
}
.archive-pagination .page-numbers.dots {
    background: transparent;
    width: auto;
}
.archive-empty {
    font-size: 16px;
    color: #888;
    padding: 40px 0;
}

@media (max-width: 576px) {
    .archive-title { font-size: 32px; }
    .archive-header { padding: 32px 0 24px; }
}

/* Volver + back link */
.noticia-back-bar { padding: 24px 0 0; }

/* Hero (constrained, not full viewport width) */
.noticia-hero-wrap { padding: 16px 0 0; }
.noticia-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 20px 20px 0 0;
}

/* Wave */
.noticia-wave {
    line-height: 0;
    margin-top: -1px;
    background: #eaeaea;
}
.noticia-wave svg { display: block; width: 100%; height: auto; }

/* White body area */
.noticia-body {
    background: #fff;
    padding: 56px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient blobs */
.noticia-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: .35;
}
.noticia-blob--left {
    width: 560px; height: 520px;
    left: -180px; top: 60px;
    background: radial-gradient(circle, #f58f22 0%, #ffe000 60%, transparent 100%);
}
.noticia-blob--right {
    width: 640px; height: 560px;
    right: -200px; top: 240px;
    background: radial-gradient(circle, #94c11f 0%, #12a19a 60%, transparent 100%);
}
.noticia-blob--top-right {
    width: 480px; height: 420px;
    right: 0; top: -60px;
    background: radial-gradient(circle, #0030e4 0%, #1cbbee 50%, transparent 80%);
    opacity: .2;
}
.noticia-body .container-xl { position: relative; z-index: 1; }

/* Title */
.noticia-titulo {
    font-family: 'Epilogue', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #16171d;
    text-align: center;
    margin-bottom: 16px;
}
.noticia-date {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #888;
    text-align: center;
    margin-bottom: 40px;
}

/* Category badge */
.noticia-cat-badge {
    display: inline-block;
    background: #f0f0f0;
    color: #444;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 24px;
}

/* Article content */
.noticia-content {
    font-size: 16px;
    line-height: 160%;
    color: #333;
}
.noticia-content p { margin-bottom: 30px; }
.noticia-content h2 { font-size: 28px; margin: 40px 0 15px; }
.noticia-content h3 { font-size: 22px; margin: 30px 0 12px; }
.noticia-content img { border-radius: 16px; margin: 30px auto; }

/* Tags */
.noticia-tags { margin-top: 32px; }
.noticia-tags a {
    display: inline-block;
    border: 1px solid #ddd;
    color: #555;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    margin: 4px;
    transition: background .2s;
}
.noticia-tags a:hover { background: #f0f0f0; }

/* Galería slider dentro de noticia */
/* Shared post/evento gallery */
.post-gallery-wrap { margin: 48px 0 0; }
.swiper-post-gallery .swiper-slide { overflow: hidden; border-radius: 20px; }
.post-gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.swiper-post-gallery .swiper-slide:hover .post-gallery-img { transform: scale(1.03); }
.post-gallery-wrap .swiper-pagination { position: relative; margin-top: 20px; }
.post-gallery-wrap .swiper-pagination-bullet { background: #16171d; opacity: .3; }
.post-gallery-wrap .swiper-pagination-bullet-active { opacity: 1; }

/* Wave invertida antes de "Te puede interesar" */
.noticia-related-wave {
    line-height: 0;
    background: #fff;
}
.noticia-related-wave svg { display: block; width: 100%; }

/* ----------------------------------------------------------
   Te puede interesar — Noticia (new card design)
---------------------------------------------------------- */
.section-related-noticia {
    background: #f4f4f4;
    padding: 56px 0 80px;
}

.section-related-noticia .related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.related-nav-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.related-ver-todo {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #16171d;
    transition: opacity .2s;
}
.related-ver-todo:hover { opacity: .6; }

.btn-related-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #16171d;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: background .2s;
}
.btn-related-arrow:hover { background: #16171d; color: #fff; }

/* Swiper related (noticia + evento) — igual altura */
.swiper-related-noticia,
.swiper-related-evento { overflow: hidden; }

.swiper-related-noticia .swiper-wrapper,
.swiper-related-evento .swiper-wrapper { align-items: stretch; }

.swiper-related-noticia .swiper-slide,
.swiper-related-evento .swiper-slide { height: auto; }

/* Related card — igual altura en todos los slides */
.related-card {
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.related-card-img-wrap {
    display: block;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}
.related-card-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.related-card-img-wrap:hover .related-card-img { transform: scale(1.04); }

.related-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1; /* ocupa el espacio restante para igualar alturas */
}

.related-card-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin-bottom: 12px;
    flex: 1; /* empuja el footer de la card hacia abajo */
}
.related-card-title a { color: #000; transition: opacity .2s; }
.related-card-title a:hover { opacity: .65; }

.related-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    flex-shrink: 0;
}
.related-card-meta svg { flex-shrink: 0; color: #555; }

.related-card-divider {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 16px 0;
    flex-shrink: 0;
}
.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #16171d;
    transition: opacity .2s;
    flex-shrink: 0;
}
.related-card-link:hover { opacity: .6; }

/* Responsive noticia */
/* noticia responsive — see main Responsive section below */

/* ---- (old single-hero kept for other templates) ---- */
.single-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 360px;
    overflow: hidden;
}
.single-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.1) 60%, rgba(0,0,0,0) 100%);
}

.single-article-wrap {
    padding: 64px 0 80px;
}

.single-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.single-category {
    background: #f0f0f0;
    color: #444;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 100px;
}
.single-date {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.single-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #16171d;
    margin-bottom: 30px;
    text-align: center;
}

.single-content {
    font-size: 16px;
    line-height: 160%;
    color: #333;
}
.single-content p { margin-bottom: 30px; }
.single-content h2 { font-size: 28px; margin: 40px 0 15px; }
.single-content h3 { font-size: 22px; margin: 30px 0 12px; }
.single-content img { border-radius: 20px; margin: 30px auto; }

.single-tags { margin-top: 32px; }
.single-tags a {
    display: inline-block;
    border: 1px solid #ddd;
    color: #555;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    margin: 4px;
    transition: background .2s;
}
.single-tags a:hover { background: #f0f0f0; }

/* ----------------------------------------------------------
   Volver a eventos
---------------------------------------------------------- */
.evento-back-bar {
    padding: 20px 0 0;
}
.btn-volver {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color .2s;
}
.btn-volver:hover { color: #16171d; }

/* ----------------------------------------------------------
   Single Evento
---------------------------------------------------------- */
.evento-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 400px;
    overflow: hidden;
}
.evento-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.evento-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%);
}

.evento-wrap { padding: 56px 0 80px; }

/* Sidebar */
.evento-sidebar { padding-right: 24px; }

.btn-evento-ticket {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #16171d;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 100px;
    margin-bottom: 12px;
    transition: opacity .2s;
}
.btn-evento-ticket:hover { opacity: .8; color: #fff; }

.btn-agregar-calendario {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    color: #16171d;
    border: 1.5px solid #16171d;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.btn-agregar-calendario:hover { background: #16171d; color: #fff; }

.evento-datos { list-style: none; margin: 0 0 32px; padding: 0; }
.evento-dato {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #16171d;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}
.evento-dato svg { flex-shrink: 0; color: #888; }

.evento-como-llegar-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
}
.evento-mapa-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.evento-mapa-embed iframe {
    display: block;
    width: 100%;
}

/* Evento content */
.evento-content { padding-top: 8px; }

.evento-categoria-badge {
    display: inline-block;
    background: #fdd14c;
    color: #16171d;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.evento-titulo-single {
    font-family: 'Epilogue', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #16171d;
    margin-bottom: 20px;
}

.evento-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 24px;
}

.evento-body {
    font-size: 16px;
    line-height: 160%;
    color: #444;
    margin-bottom: 40px;
}
.evento-body p { margin-bottom: 30px; }

/* Organizan */
.evento-organizan { margin-top: 40px; }
.evento-seccion-titulo {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}
.evento-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.evento-org-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 20px;
    transition: box-shadow .2s;
}
.evento-org-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.evento-org-logo { max-height: 48px; width: auto; }

/* Galería swiper */
/* .evento-galeria-wrap superseded by .post-gallery-wrap */

/* ----------------------------------------------------------
   Related (Te puede interesar)
---------------------------------------------------------- */
.section-related {
    background: #f7f7f7;
    padding: 64px 0;
}

.related-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
}
.related-title {
    font-size: 48px;
    font-weight: 700;
}
.related-ver-mas {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #555;
    border-bottom: 1px solid #ccc;
    transition: color .2s;
}
.related-ver-mas:hover { color: #16171d; }

/* Card evento */
.card-evento { overflow: hidden; }
.card-evento-thumb-wrap { display: block; overflow: hidden; border-radius: 6px; margin-bottom: 14px; }
.card-evento-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.card-evento-thumb-wrap:hover .card-evento-thumb { transform: scale(1.04); }
.card-evento-body { padding: 0; }
.evento-fecha { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: #888; margin-bottom: 6px; }
.evento-titulo { font-size: 18px; font-weight: 700; line-height: 1.3; }
.evento-titulo a { color: #16171d; transition: opacity .2s; }
.evento-titulo a:hover { opacity: .65; }
.evento-lugar { font-size: 13px; color: #aaa; margin-top: 4px; }

/* Card noticia */
.card-noticia { overflow: hidden; }
.card-noticia-thumb-wrap { display: block; overflow: hidden; border-radius: 6px; margin-bottom: 14px; }
.card-noticia-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.card-noticia-thumb-wrap:hover .card-noticia-thumb { transform: scale(1.04); }
.card-noticia-body {}
.card-noticia-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #888; display: block; margin-bottom: 8px; }
.card-noticia-title { font-size: 17px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.card-noticia-title a { color: #16171d; transition: opacity .2s; }
.card-noticia-title a:hover { opacity: .65; }
.card-noticia-date { font-size: 12px; color: #aaa; }

/* ----------------------------------------------------------
   Quiénes Somos
---------------------------------------------------------- */

/* Hero */
body.page-quienes-somos { background: #fff; }
body.page-iquique {
    background: url('http://arenacavancha.cl/cms/wp-content/uploads/2026/01/quienes-somos-2-scaled.png') center top / cover no-repeat fixed;
}
.qs-hero {
    position: relative;
    min-height: 560px;
    background-color: #16171d;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    padding: 120px 0 120px;
    overflow: hidden;
}
.qs-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.qs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 100%);
    z-index: 1;
}
.qs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.qs-hero-titulo {
    font-family: 'Epilogue', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.05;
}
.qs-hero-subtitulo {
    font-size: 24px;
    color: rgba(255,255,255,.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Waves */
.qs-wave-up,
.qs-wave-down,
.qs-wave-dark { line-height: 0; margin-top: -1px; }
.qs-wave-up svg,
.qs-wave-down svg,
.qs-wave-dark svg { display: block; width: 100%; height: 90px; }

/* Hero wave — overlaps up into the dark hero for a smooth transition */
.qs-wave-hero {
    line-height: 0;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}
.qs-wave-hero svg { display: block; width: 100%; height: 120px; }

/* Sections */
.qs-section { padding: 80px 0; }
.qs-alianza  { background: #eaeaea; padding: 60px 0 80px; }
.qs-porque   { background: #eaeaea; padding: 60px 0 80px; }

/* Typography */
.qs-section-titulo {
    font-family: 'Epilogue', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #16171d;
    margin-bottom: 20px;
    line-height: 1.15;
}
.qs-body-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}
.qs-body-text p { margin-bottom: 16px; }
.qs-text-grande {
    font-size: 20px;
    line-height: 1.6;
    color: #16171d;
    font-weight: 500;
}

/* Images */
.qs-img-rounded {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

/* 3-image grid (alianza) */
.qs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* 4-image 2x2 grid (anfitrión) */
.qs-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* 4-image horizontal row (¿por qué?) */
.qs-grid-4-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.qs-grid-img-wrap { overflow: hidden; border-radius: 16px; }
.qs-grid-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.qs-grid-img-wrap:hover .qs-grid-img { transform: scale(1.04); }

/* Partner logos */
.qs-logos-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,.1);
}
.qs-logo-item { display: block; }
.qs-logo-img  { max-height: 70px; width: auto; opacity: .75; transition: opacity .2s; }
.qs-logo-img:hover { opacity: 1; }
.qs-logo-nombre { font-size: 14px; font-weight: 600; color: #555; }

/* Closing text */
.qs-cierre { background: #fff; padding: 80px 0 0; }
.qs-cierre-texto {
    font-family: 'Epilogue', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.55;
    color: #16171d;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

/* ¿Por qué? header */
.qs-porque-header { max-width: 640px; }

/* Feature cards */
.qs-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;
}
.qs-feature-icon {
    color: #16171d;
    margin-bottom: 16px;
}
.qs-feature-titulo {
    font-family: 'Epilogue', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #16171d;
    margin-bottom: 10px;
}
.qs-feature-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* CTA final */
.qs-cta {
    background: #16171d;
    padding: 80px 0;
    text-align: center;
}
.qs-cta-texto {
    font-family: 'Epilogue', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.55;
}
.qs-cta-botones {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-qs-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #16171d;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    transition: background .2s, color .2s;
}
.btn-qs-primary:hover { background: #f0f0f0; color: #16171d; }
.btn-qs-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,.5);
    transition: border-color .2s, background .2s;
}
.btn-qs-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* Quiénes Somos Responsive */
@media (max-width: 991px) {
    .qs-hero-titulo { font-size: 52px; }
    .qs-hero-subtitulo { font-size: 20px; }
    .qs-hero { min-height: 420px; }
    .qs-grid-4-row { grid-template-columns: repeat(2, 1fr); }
    .qs-section-titulo { font-size: 30px; }
}
@media (max-width: 768px) {
    .qs-hero-titulo { font-size: 40px; }
    .qs-hero-subtitulo { font-size: 18px; }
    .qs-hero { min-height: 340px; padding: 100px 0 60px; }
    .qs-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .qs-grid-4 { gap: 8px; }
    .qs-cierre-texto { font-size: 20px; }
    .qs-cta-texto { font-size: 20px; }
    .qs-logos-row { gap: 24px; }
    .qs-section { padding: 56px 0; }
    .qs-alianza { padding: 48px 0 60px; }
    .qs-porque { padding: 48px 0 60px; }
}
@media (max-width: 576px) {
    .qs-hero-titulo { font-size: 32px; }
    .qs-hero-subtitulo { font-size: 16px; }
    .qs-hero { min-height: 280px; }
    .qs-grid-3 { grid-template-columns: 1fr; }
    .qs-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .qs-grid-4-row { grid-template-columns: repeat(2, 1fr); }
    .qs-section-titulo { font-size: 26px; }
    .qs-cierre-texto { font-size: 18px; }
    .qs-cta-texto { font-size: 18px; }
    .qs-cta { padding: 56px 0; }
    .qs-section { padding: 40px 0; }
    .qs-alianza { padding: 32px 0 40px; }
    .qs-porque { padding: 32px 0 40px; }
    .qs-text-grande { font-size: 17px; }
    .qs-logos-row { gap: 16px; }
    .qs-feature-card { padding: 24px 20px; }
    .btn-qs-primary, .btn-qs-secondary { width: 100%; justify-content: center; }
}

/* ----------------------------------------------------------
   Responsive
---------------------------------------------------------- */

/* ---- Tablet landscape & small desktop (≤ 991px) ---- */
@media (max-width: 991px) {
    /* Header */
    .site-content { padding-top: 100px; }
    body.header-transparent .site-content { padding-top: 0; }
    .header-inner { grid-template-columns: auto 1fr; column-gap: 0; }
    .site-logo-link { justify-self: start; }
    .header-mobile-ctas { justify-self: end; }
    .site-logo-img { height: 44px; }

    /* Single noticia */
    .noticia-titulo { font-size: 34px; }
    .noticia-hero-img { height: 320px; }
    .noticia-blob { display: none; }

    /* Single evento */
    .evento-titulo-single { font-size: 34px; }
    .evento-sidebar { padding-right: 0; margin-bottom: 40px; }

    /* Archive */
    .archive-title { font-size: 36px; }

    /* Alianzas */
    .alianzas-titulo { font-size: 36px; }
    .alianzas-row { gap: 48px; }

    /* Related */
    .section-related-noticia { padding: 48px 0 60px; }
}

/* ---- Tablet portrait (≤ 768px) ---- */
@media (max-width: 768px) {
    /* Header */
    .site-content { padding-top: 90px; }
    .header-inner { padding: 20px 0; }
    .site-logo-img { height: 38px; }

    /* Sections padding */
    .noticia-body { padding: 48px 0 60px; }
    .section-related-noticia { padding: 40px 0 56px; }
    .section-alianzas { padding: 0 0 40px; }

    /* Alianzas: stack vertically */
    .alianzas-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .alianzas-titulo { font-size: 32px; }
    .alianzas-row { gap: 32px; justify-content: flex-start; }
    .alianza-logo { max-height: 80px; }

    /* Footer logos: stack */
    .footer-minimal-logos { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-logo-secondary { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding-top: 16px; }
    .footer-logo-img { height: 64px; }

    /* Gallery */
    .post-gallery-img { height: 220px; }

    /* Related header */
    .related-header { flex-wrap: wrap; gap: 12px; }
}

/* ---- Mobile (≤ 576px) ---- */
@media (max-width: 576px) {
    /* Header */
    .site-content { padding-top: 84px; }
    .header-inner { padding: 16px 0; }
    .site-logo-img { height: 34px; }

    /* Single noticia */
    .noticia-titulo { font-size: 26px; }
    .noticia-hero-img { height: 200px; border-radius: 12px 12px 0 0; }
    .noticia-date { font-size: 13px; }
    .noticia-body { padding: 36px 0 48px; }

    /* Single evento */
    .evento-titulo-single { font-size: 26px; }
    .evento-categoria-badge { font-size: 12px; }

    /* Archive */
    .archive-header { padding: 32px 0 20px; }
    .archive-title { font-size: 28px; }
    .archive-body { padding: 0 0 48px; }

    /* Alianzas */
    .alianzas-titulo { font-size: 26px; }
    .alianzas-row { gap: 20px; }
    .alianza-logo { max-height: 60px; }

    /* Footer */
    .footer-dark { padding: 36px 0; }
    .footer-minimal { gap: 28px; }
    .footer-logo-img { height: 52px; }
    .footer-col-title { font-size: 11px; }
    .footer-links li a { font-size: 14px; }
    .footer-social-icon { width: 32px; height: 32px; }

    /* Related */
    .related-title { font-size: 22px; }
    .related-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .section-related-noticia { padding: 32px 0 48px; }

    /* Gallery */
    .post-gallery-img { height: 180px; }

    /* Evento sidebar */
    .evento-dato { font-size: 14px; }
    .btn-evento-ticket, .btn-agregar-calendario { padding: 12px 16px; font-size: 14px; }
}

/* ---- Small phones (≤ 400px) ---- */
@media (max-width: 400px) {
    .noticia-titulo { font-size: 22px; }
    .evento-titulo-single { font-size: 22px; }
    .archive-title { font-size: 24px; }
    .alianzas-titulo { font-size: 22px; }
    .noticia-hero-img { height: 170px; }
    .post-gallery-img { height: 160px; }
}

/* ==========================================================
   HOME PAGE
   ========================================================== */

body.home-page { background: #fff; }

/* ----------------------------------------------------------
   Hero
---------------------------------------------------------- */
.hp-hero-section {
	padding: 0;
	background: #16171d;
	overflow: hidden;
}

.hp-hero-card {
	position: relative;
	min-height: 600px;
	background-color: #16171d;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Video background */
.hp-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hp-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(22,23,29,.92) 0%, rgba(22,23,29,.45) 50%, rgba(22,23,29,.10) 100%);
}

.hp-hero-blob {
	position: absolute;
	left: -60px;
	bottom: -60px;
	width: 480px;
	height: 360px;
	background: linear-gradient(135deg, #0030e4 0%, #1cbbee 50%, #e309ab 100%);
	border-radius: 60% 40% 55% 45%;
	opacity: .18;
	filter: blur(72px);
	pointer-events: none;
	z-index: 0;
}

.hp-hero-content {
	position: relative;
	z-index: 2;
	padding: 48px 48px 48px;
	max-width: 90%;
	width: 100%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.hp-hero-subtitulo {
	font-size: 24px;
	font-weight: 400;
	color: rgba(255,255,255,.85);
	max-width: 600px;
	margin: 0 auto;
}

.hp-hero-titulo {
	font-family: 'Epilogue', sans-serif;
	font-size: 52px;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 16px;
}

.hp-hero-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255,255,255,.78);
	margin-bottom: 28px;
}

.btn-hp-ticket {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #16171d;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .2s, transform .15s;
}
.btn-hp-ticket:hover { background: #f0f0f0; color: #16171d; transform: translateY(-1px); }

/* Hero dots pagination */
.hp-hero-dots {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 8px;
}
.hp-hero-dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,.45);
	opacity: 1;
	transition: background .25s, transform .25s;
	cursor: pointer;
}
.hp-hero-dots .swiper-pagination-bullet-active {
	background: #fff;
	transform: scale(1.3);
}

/* Hero wave → white content below */
.hp-hero-wave {
	line-height: 0;
	margin-top: -100px;
	position: relative;
	z-index: 1;
}
.hp-hero-wave svg { display: block; width: 100%; height: 120px; }

/* ----------------------------------------------------------
   Alianzas Strip
---------------------------------------------------------- */
.hp-alianzas {
	padding: 32px 0 36px;
	background: #fff;
	border-bottom: 1px solid #ebebeb;
}

.hp-alianzas-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.hp-alianzas-titulo {
	font-family: 'Epilogue', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #16171d;
	white-space: nowrap;
	margin: 0;
}

.hp-alianzas-logos {
	display: flex;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.hp-alianza-item { display: block; }
.hp-alianza-logo {
	max-height: 56px;
	width: auto;
	opacity: .72;
	transition: opacity .2s;
	display: block;
}
.hp-alianza-logo:hover { opacity: 1; }

/* ----------------------------------------------------------
   Section base
---------------------------------------------------------- */
.hp-section { padding: 80px 0; }

.hp-section-titulo {
	font-family: 'Epilogue', sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #16171d;
	line-height: 1.15;
	margin-bottom: 0;
}

.hp-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 16px;
}

.hp-ver-todo {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #666;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
	padding-bottom: 2px;
	transition: color .2s, border-color .2s;
}
.hp-ver-todo:hover { color: #16171d; border-color: #16171d; }

.hp-eyebrow {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 12px;
}

/* ----------------------------------------------------------
   Próximos Eventos
---------------------------------------------------------- */
.hp-proximos {
	background: #fff;
	position: relative;
	overflow: hidden;
}

.hp-proximos-blob {
	position: absolute;
	left: -120px;
	top: 20px;
	width: 520px;
	height: 420px;
	background: linear-gradient(135deg, #0030e4 0%, #1cbbee 50%, #e309ab 100%);
	border-radius: 60% 40% 55% 45%;
	opacity: .06;
	filter: blur(80px);
	pointer-events: none;
}

.hp-proximos-wrap { position: relative; }

.hp-swiper-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,.10);
	transition: background .2s, border-color .2s, color .2s;
	color: #16171d;
}
.hp-swiper-btn:hover { background: #16171d; border-color: #16171d; color: #fff; }
.hp-swiper-prev-proximos { left: -24px; }
.hp-swiper-next-proximos { right: -24px; }

/* Event card */
.hp-event-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,.08);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.hp-event-card-img-wrap {
	display: block;
	overflow: hidden;
	height: 240px;
	flex-shrink: 0;
}

.hp-event-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.hp-event-card:hover .hp-event-card-img { transform: scale(1.04); }

.hp-event-card-body {
	padding: 20px 24px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hp-event-card-titulo {
	font-family: 'Epilogue', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #16171d;
	margin-bottom: 10px;
	flex: 1;
}
.hp-event-card-titulo a { color: #16171d; text-decoration: none; transition: opacity .2s; }
.hp-event-card-titulo a:hover { opacity: .65; }

.hp-event-card-fecha {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	margin-bottom: 16px;
	flex-shrink: 0;
	flex-wrap: wrap;
}

.hp-event-card-divider {
	border: none;
	border-top: 1px solid #ebebeb;
	margin: 0 0 16px;
	flex-shrink: 0;
}

.hp-event-card-footer {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.btn-hp-ver-mas {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #16171d;
	background: #f0f0f0;
	padding: 8px 16px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .2s;
}
.btn-hp-ver-mas:hover { background: #e2e2e2; color: #16171d; }

.btn-hp-tickets-sm {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: #16171d;
	padding: 8px 16px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .2s;
}
.btn-hp-tickets-sm:hover { background: #2e2f38; color: #fff; }

/* ----------------------------------------------------------
   Eventos Pasados
---------------------------------------------------------- */
.hp-pasados {
	background: linear-gradient(180deg, #fbfaf8 0%, #f2f0eb 100%);
}

.hp-pasados-nav {
	display: flex;
	gap: 10px;
}

.hp-swiper-prev-pasados { position: static; transform: none; box-shadow: none; }
.hp-swiper-next-pasados { position: static; transform: none; box-shadow: none; }

.hp-pasado-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hp-pasado-card-img-wrap {
	display: block;
	overflow: hidden;
	height: 200px;
	flex-shrink: 0;
}

.hp-pasado-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.hp-pasado-card:hover .hp-pasado-card-img { transform: scale(1.04); }

.hp-pasado-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hp-pasado-card-titulo {
	font-family: 'Epilogue', sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	color: #16171d;
	margin-bottom: 16px;
	flex: 1;
}
.hp-pasado-card-titulo a { color: #16171d; text-decoration: none; transition: opacity .2s; }
.hp-pasado-card-titulo a:hover { opacity: .65; }

.hp-pasado-card-divider {
	border: none;
	border-top: 1px solid #ebebeb;
	margin: 0 0 16px;
}

.hp-pasado-ver-galeria {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	color: #16171d;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: opacity .2s;
}
.hp-pasado-ver-galeria:hover { opacity: .65; color: #16171d; }

.hp-pasado-arrow {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s, color .2s;
	flex-shrink: 0;
	color: #16171d;
}
.hp-pasado-ver-galeria:hover .hp-pasado-arrow { background: #16171d; color: #fff; }

/* ----------------------------------------------------------
   El Lugar
---------------------------------------------------------- */
.hp-lugar { background: #fff; }

.hp-lugar-img {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
	display: block;
	aspect-ratio: 4/3;
}

.hp-lugar-desc {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 28px;
	margin-top: 16px;
}
.hp-lugar-desc p { margin-bottom: 12px; }

.btn-hp-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #16171d;
	border: 1.5px solid #16171d;
	padding: 12px 24px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.btn-hp-outline:hover { background: #16171d; color: #fff; }

/* ----------------------------------------------------------
   Consigue tus tickets (banner)
---------------------------------------------------------- */
.hp-tickets-section {
	padding: 0 0 80px;
	background: #fff;
}

.hp-tickets-banner {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(120deg, #3a3a3a 0%, #1a1a1a 100%);
	padding: 56px 48px;
}

.hp-tickets-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(22,23,29,.55) 0%, transparent 60%);
	pointer-events: none;
}

.hp-tickets-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 32px;
	flex-wrap: wrap;
}

.hp-tickets-titulo {
	font-family: 'Epilogue', sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	margin: 0;
}

.hp-tickets-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
	flex-shrink: 0;
}

.btn-hp-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	background: #fff;
	color: #16171d;
	padding: 12px 22px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .2s;
}
.btn-hp-white:hover { background: #f0f0f0; color: #16171d; }

.btn-hp-white-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,.5);
	padding: 12px 22px;
	border-radius: 9999px;
	text-decoration: none;
	transition: border-color .2s, background .2s;
}
.btn-hp-white-outline:hover { border-color: #fff; background: rgba(255,255,255,.10); color: #fff; }

/* ----------------------------------------------------------
   Galería + Reservar
---------------------------------------------------------- */
.hp-galeria-reservar { background: #fff; }

.hp-galeria-carousel-wrap { position: relative; }

.hp-swiper-galeria {
	overflow: hidden;
	border-radius: 20px;
	padding-bottom: 48px;
}

.hp-galeria-slide {
	height: 500px;
	overflow: hidden;
	border-radius: 20px;
}

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

.hp-galeria-pagination {
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.hp-galeria-nav {
	position: absolute;
	bottom: 60px;
	right: 16px;
	z-index: 10;
	display: flex;
	gap: 10px;
}

.hp-galeria-placeholder {
	height: 500px;
	background: #f0f0f0;
	border-radius: 20px;
}

.hp-reservar-desc {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 28px;
	margin-top: 16px;
}

/* ----------------------------------------------------------
   Responsive — Home
---------------------------------------------------------- */
@media (max-width: 991px) {
	.hp-hero-titulo { font-size: 40px; }
	.hp-hero-card { min-height: 480px; }
	.hp-section-titulo { font-size: 34px; }
	.hp-tickets-titulo { font-size: 32px; }
	.hp-swiper-prev-proximos { left: 0; }
	.hp-swiper-next-proximos { right: 0; }
}

@media (max-width: 768px) {
	.hp-hero-titulo { font-size: 32px; }
	.hp-hero-card { min-height: 400px; }
	.hp-hero-content { padding: 48px 28px; }
	.hp-hero-subtitulo { font-size: 18px; }
	.hp-section { padding: 56px 0; }
	.hp-section-titulo { font-size: 28px; }
	.hp-tickets-titulo { font-size: 26px; }
	.hp-tickets-banner { padding: 40px 28px; }
	.hp-alianzas-inner { flex-direction: column; align-items: center; gap: 20px; }
	.hp-galeria-slide { height: 360px; }
	.hp-galeria-placeholder { height: 360px; }
}

@media (max-width: 576px) {
	.hp-hero-titulo { font-size: 24px; }
	.hp-hero-subtitulo { font-size: 16px; }
	.hp-hero-card { min-height: 320px; }
	.hp-hero-content { padding: 48px 20px; }
	.hp-hero-dots { bottom: 16px; }
	.hp-section { padding: 40px 0; }
	.hp-section-titulo { font-size: 24px; }
	.hp-tickets-titulo { font-size: 22px; }
	.hp-tickets-banner { padding: 32px 20px; }
	.hp-tickets-content { flex-direction: column; align-items: flex-start; }
	.hp-tickets-btns { flex-direction: column; width: 100%; }
	.btn-hp-white, .btn-hp-white-outline { width: 100%; justify-content: center; }
	.hp-alianzas-logos { gap: 20px; }
	.hp-swiper-prev-proximos, .hp-swiper-next-proximos { display: none; }
	.hp-event-card-footer { flex-direction: column; align-items: flex-start; }
	.hp-galeria-slide { height: 280px; }
	.hp-galeria-placeholder { height: 280px; }
	.btn-hp-outline { width: 100%; justify-content: center; }
}

/* ==========================================================
   IQUIQUE LO TIENE TODO
   ========================================================== */

/* ----------------------------------------------------------
   Hero
---------------------------------------------------------- */
.ilt-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    background: #16171d center center / cover no-repeat;
    overflow: hidden;
}

.ilt-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.ilt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,23,29,.80) 0%, rgba(22,23,29,.30) 60%, transparent 100%);
    z-index: 1;
}

.ilt-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    padding-top: 120px;
    text-align: center;
}

.ilt-hero-titulo {
    font-family: 'Epilogue', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin: 15px auto 20px auto;
    line-height: 1.05;
}

.ilt-hero-subtitulo {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255,255,255,.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

.ilt-wave-hero {
    line-height: 0;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}
.ilt-wave-hero svg { display: block; width: 100%; height: 120px; }

/* ----------------------------------------------------------
   Intro
---------------------------------------------------------- */
.ilt-intro {
    padding: 48px 0 40px;
}

.ilt-intro-texto {
    font-size: 22px;
    line-height: 1.6;
    color: #16171d;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

/* ----------------------------------------------------------
   Section base
---------------------------------------------------------- */
.ilt-section {
    padding: 80px 0;
}

.ilt-section-titulo {
    font-size: 42px;
    line-height: 1.15;
    color: #16171d;
    margin: 0 auto 40px auto;
    text-align: center;
}

/* ----------------------------------------------------------
   Turismo Carousel
---------------------------------------------------------- */
.ilt-turismo {
    background: none;
    position: relative;
}

.ilt-carousel-wrap {
    position: relative;
}

.ilt-swiper-turismo {
    overflow: hidden;
    position: relative;
    padding-bottom: 52px; /* room for pagination */
}

/* Nav buttons */
.ilt-swiper-btn {
    position: absolute;
    top: calc(50% - 40px);
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
    transition: background .2s, border-color .2s;
}

.ilt-swiper-btn:hover {
    background: #16171d;
    border-color: #16171d;
    color: #fff;
}

.ilt-swiper-prev  { left: -24px; }
.ilt-swiper-next  { right: -24px; }
.ilt-swiper-prev-pasados { left: -24px; }
.ilt-swiper-next-pasados { right: -24px; }

.ilt-pagination {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Cards */
.ilt-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ilt-card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.ilt-card:hover .ilt-card-img { transform: scale(1.04); }

.ilt-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ilt-card-pin {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #e85b2a;
    margin-bottom: 8px;
}

.ilt-card-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #16171d;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ilt-card-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 16px;
}

.ilt-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #e85b2a;
    text-decoration: none;
    transition: gap .2s;
}

.ilt-card-link:hover { gap: 10px; color: #16171d; }

/* ----------------------------------------------------------
   Turismo Deportivo
---------------------------------------------------------- */
.ilt-deportivo {
    background: none;
    color: #000;
    padding: 100px 0;
}

.ilt-deportivo-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e85b2a;
    margin-bottom: 16px;
}

.ilt-deportivo-titulo {
    font-size: 42px;
    line-height: 1.15;
    color: #000;
    margin-bottom: 24px;
}

.ilt-deportivo-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 32px;
}

.ilt-deportivo-desc p { margin-bottom: 16px; color: #000; }

.btn-ilt-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e85b2a;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.btn-ilt-primary:hover {
    background: #cf4a1f;
    color: #fff;
    transform: translateY(-1px);
}

.ilt-deportivo-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* ----------------------------------------------------------
   Próximos Eventos
---------------------------------------------------------- */
.ilt-proximos {
    background: #f5f5f5;
}

.ilt-proximos .ilt-section-titulo { color: #16171d; }

/* ----------------------------------------------------------
   Eventos Pasados
---------------------------------------------------------- */
.ilt-pasados {
    background: #fff;
}

.ilt-pasados-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.ilt-swiper-pasados {
    overflow: hidden;
    position: relative;
}

.ilt-pasado-slide {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    height: 280px;
}

.ilt-pasado-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.ilt-pasado-slide:hover .ilt-pasado-img { transform: scale(1.04); }

.ilt-pasado-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,23,29,.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
}

.ilt-pasado-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* ----------------------------------------------------------
   Wave → dark
---------------------------------------------------------- */
.ilt-wave-dark {
    display: block;
    width: 100%;
    line-height: 0;
    background: #fff;
    margin-top: -1px;
}

.ilt-wave-dark svg { width: 100%; height: 90px; }

/* ----------------------------------------------------------
   CTA Final
---------------------------------------------------------- */
.ilt-cta {
    display: none;
    background: #16171d;
    padding: 80px 0;
    text-align: center;
}

.ilt-cta-botones {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-ilt-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,.4);
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-ilt-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* ----------------------------------------------------------
   Responsive — Iquique
---------------------------------------------------------- */
@media (max-width: 991px) {
    .ilt-hero { min-height: 440px; }
    .ilt-hero-titulo { font-size: 40px; }
    .ilt-hero-subtitulo { font-size: 20px; }
    .ilt-section-titulo { font-size: 34px; }
    .ilt-deportivo-titulo { font-size: 34px; }
    .ilt-deportivo { padding: 72px 0; }
    .ilt-deportivo-img { height: 360px; }
    .ilt-swiper-prev { left: 0; }
    .ilt-swiper-next { right: 0; }
    .ilt-swiper-prev-pasados { left: 0; }
    .ilt-swiper-next-pasados { right: 0; }
}

@media (max-width: 768px) {
    .ilt-hero { min-height: 360px; }
    .ilt-hero-titulo { font-size: 32px; }
    .ilt-hero-subtitulo { font-size: 17px; }
    .ilt-hero-content { padding-bottom: 60px; }
    .ilt-intro-texto { font-size: 18px; }
    .ilt-section { padding: 56px 0; }
    .ilt-section-titulo { font-size: 28px; }
    .ilt-deportivo-titulo { font-size: 28px; }
    .ilt-deportivo { padding: 56px 0; }
    .ilt-deportivo-img { height: 280px; margin-top: 8px; }
    .ilt-card-img-wrap { height: 180px; }
    .ilt-pasado-slide { height: 220px; }
}

@media (max-width: 576px) {
    .ilt-hero { min-height: 300px; }
    .ilt-hero-content { padding-top: 80px; padding-bottom: 48px; }
    .ilt-hero-titulo { font-size: 26px; }
    .ilt-hero-subtitulo { font-size: 15px; }
    .ilt-intro { padding: 32px 0 24px; }
    .ilt-intro-texto { font-size: 16px; }
    .ilt-section { padding: 40px 0; }
    .ilt-section-titulo { font-size: 24px; margin-bottom: 28px; }
    .ilt-deportivo-titulo { font-size: 24px; }
    .ilt-deportivo { padding: 48px 0; }
    .ilt-deportivo-img { height: 240px; }
    .ilt-card-img-wrap { height: 160px; }
    .ilt-pasado-slide { height: 200px; }
    .ilt-cta { padding: 48px 0; }
    .btn-ilt-primary, .btn-ilt-secondary { width: 100%; justify-content: center; }
    .ilt-cta-botones { flex-direction: column; }
    /* Hide nav arrows on single-slide mobile — pagination dots suffice */
    .ilt-swiper-prev, .ilt-swiper-next { display: none; }
}

/* ==========================================================
   HOME PAGE — Home 02 additional sections
   ========================================================== */

/* ----------------------------------------------------------
   Lo que Inspira (Palabras)
---------------------------------------------------------- */
.hp-palabras {
	background: #f9f8f6;
	overflow: hidden;
}

/* Slide image */
.hp-palabras-img-wrap {
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
}
.hp-palabras-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hp-palabras-cita {
	font-family: 'Epilogue', sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.45;
	color: #16171d;
	margin: 20px 0 32px;
	padding: 0;
	border: none;
	position: relative;
}

.hp-palabras-comilla {
	font-size: 64px;
	line-height: 0;
	vertical-align: -0.4em;
	color: #e0e0e0;
	font-family: Georgia, serif;
	display: inline;
	margin-right: 4px;
}
.hp-palabras-comilla--close {
	margin-left: 4px;
	margin-right: 0;
}

.hp-palabras-autor {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.hp-palabras-autor strong {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #16171d;
}
.hp-palabras-cargo {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #888;
}

/* Circle image thumbs nav */
.hp-palabras-thumbs-wrap {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
.hp-swiper-palabras-thumbs {
	width: auto;
	max-width: 100%;
}
.hp-swiper-palabras-thumbs .swiper-slide {
	width: auto !important;
	cursor: pointer;
}
.hp-palabras-thumb {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid transparent;
	transition: border-color .25s, transform .25s, opacity .25s;
	opacity: .5;
}
.hp-palabras-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hp-swiper-palabras-thumbs .swiper-slide-thumb-active .hp-palabras-thumb {
	border-color: #16171d;
	opacity: 1;
	transform: scale(1.1);
}

/* ----------------------------------------------------------
   Turismo Iquique
---------------------------------------------------------- */
.hp-turismo-iq {
	background: #f2f0eb;
	position: relative;
	overflow: hidden;
}

.hp-turismo-iq-blob {
	position: absolute;
	right: -100px;
	top: -40px;
	width: 500px;
	height: 400px;
	background: linear-gradient(135deg, #ee3e34 0%, #f58f22 50%, #ffe000 100%);
	border-radius: 55% 45% 60% 40%;
	opacity: .07;
	filter: blur(80px);
	pointer-events: none;
}

.hp-turismo-iq-wrap {
	position: relative;
}

.hp-swiper-turismo-iq {
	overflow: hidden;
	padding-bottom: 52px;
}

.hp-turismo-iq-prev {
	left: -24px;
}
.hp-turismo-iq-next {
	right: -24px;
}

.hp-turismo-iq-pagination {
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

/* ----------------------------------------------------------
   Eventos Pasados — overlay cards
---------------------------------------------------------- */
.hp-pasados-ov {
	background: #fff;
}

.hp-pasado-ov-card {
	display: block;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	height: 370px;
}

.hp-pasado-ov-img-wrap {
	position: absolute;
	inset: 0;
}

.hp-pasado-ov-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.hp-pasado-ov-card:hover .hp-pasado-ov-img { transform: scale(1.05); }

.hp-pasado-ov-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(22,23,29,.88) 0%, rgba(22,23,29,.30) 55%, rgba(22,23,29,.05) 100%);
	transition: opacity .3s;
}
.hp-pasado-ov-card:hover .hp-pasado-ov-overlay { opacity: .9; }

.hp-pasado-ov-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 28px 24px;
	z-index: 2;
}

.hp-pasado-ov-titulo {
	font-family: 'Epilogue', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 12px;
}

.hp-pasado-ov-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255,255,255,.75);
	transition: color .2s;
}
.hp-pasado-ov-card:hover .hp-pasado-ov-link { color: #fff; }

/* ----------------------------------------------------------
   Sello Turismo
---------------------------------------------------------- */
.hp-sello {
	background: #fff;
}

.hp-sello-img-wrap {
	position: relative;
}

.hp-sello-img {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
	display: block;
	aspect-ratio: 4/3;
}

.hp-sello-blob {
	position: absolute;
	top: -40px;
	right: -60px;
	width: 320px;
	height: 280px;
	background: linear-gradient(135deg, #94c11f 0%, #138135 50%, #12a19a 100%);
	border-radius: 50%;
	opacity: .12;
	filter: blur(64px);
	pointer-events: none;
	z-index: -1;
}

.hp-sello-desc {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin: 16px 0 28px;
}

/* ----------------------------------------------------------
   Tu Ruta
---------------------------------------------------------- */
.hp-ruta {
	background: #eaeaea;
	position: relative;
	overflow: hidden;
}

.hp-ruta-blob {
	position: absolute;
	left: -80px;
	bottom: -60px;
	width: 480px;
	height: 360px;
	background: linear-gradient(135deg, #00c1ff 0%, #c4a3e3 50%, #d13fa2 100%);
	border-radius: 60% 40% 55% 45%;
	opacity: .08;
	filter: blur(80px);
	pointer-events: none;
}

.hp-ruta-img-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	height: 460px;
}

.hp-ruta-img-wrap {
	border-radius: 16px;
	overflow: hidden;
}
.hp-ruta-img-wrap--1 { grid-row: span 1; }
.hp-ruta-img-wrap--2 { grid-row: span 1; margin-top: 40px; }

.hp-ruta-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.hp-ruta-img-wrap:hover .hp-ruta-img { transform: scale(1.04); }

.hp-ruta-desc {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin: 16px 0 28px;
}

/* ----------------------------------------------------------
   Noticias
---------------------------------------------------------- */
.hp-noticias {
	background: #fff;
}

.hp-noticia-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,.07);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.hp-noticia-card-img-wrap {
	display: block;
	overflow: hidden;
	height: 220px;
	flex-shrink: 0;
}

.hp-noticia-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.hp-noticia-card:hover .hp-noticia-card-img { transform: scale(1.04); }

.hp-noticia-card-body {
	padding: 20px 24px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hp-noticia-card-titulo {
	font-family: 'Epilogue', sans-serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
	color: #16171d;
	margin-bottom: 10px;
	flex: 1;
}
.hp-noticia-card-titulo a { color: #16171d; text-decoration: none; transition: opacity .2s; }
.hp-noticia-card-titulo a:hover { opacity: .65; }

.hp-noticia-card-fecha {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #999;
	margin-bottom: 16px;
	flex-shrink: 0;
}

.hp-noticia-card-divider {
	border: none;
	border-top: 1px solid #ebebeb;
	margin: 0 0 16px;
	flex-shrink: 0;
}

.hp-noticia-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #16171d;
	text-decoration: none;
	transition: opacity .2s;
	flex-shrink: 0;
}
.hp-noticia-card-link:hover { opacity: .6; }

/* ----------------------------------------------------------
   Alianzas — full section
---------------------------------------------------------- */
.hp-alianzas-section {
	background: #eaeaea;
	padding: 80px 0;
	text-align: center;
}

.hp-alianzas-section-titulo {
	font-family: 'Epilogue', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: #16171d;
	margin: 0 0 48px;
	line-height: 1.1;
}

.hp-alianzas-section-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	flex-wrap: wrap;
}

.hp-alianza-logo-lg {
	max-height: 100px;
	width: auto;
	opacity: .7;
	filter: grayscale(100%);
	transition: opacity .25s, filter .25s;
	display: block;
}
.hp-alianza-logo-lg:hover { opacity: 1; filter: none; }

/* ----------------------------------------------------------
   Responsive — Home 02 additions
---------------------------------------------------------- */
@media (max-width: 991px) {
	.hp-palabras-cita { font-size: 24px; }
	.hp-palabras-img-wrap { aspect-ratio: 1 / 1; }
	.hp-turismo-iq-prev { left: 0; }
	.hp-turismo-iq-next { right: 0; }
	.hp-pasado-ov-card { height: 300px; }
	.hp-alianzas-section-titulo { font-size: 40px; }
	.hp-alianzas-section-logos { gap: 48px; }
	.hp-ruta-img-grid { height: 380px; }
}

@media (max-width: 768px) {
	.hp-palabras-cita { font-size: 20px; }
	.hp-palabras-comilla { font-size: 48px; }
	.hp-palabras-thumb { width: 52px; height: 52px; }
	.hp-ruta-img-grid { height: 300px; gap: 10px; }
	.hp-ruta-img-wrap--2 { margin-top: 24px; }
	.hp-alianzas-section { padding: 56px 0; }
	.hp-alianzas-section-titulo { font-size: 32px; margin-bottom: 36px; }
	.hp-alianzas-section-logos { gap: 36px; }
	.hp-alianza-logo-lg { max-height: 72px; }
	.hp-pasado-ov-card { height: 260px; }
	.hp-noticia-card-img-wrap { height: 180px; }
	.hp-sello-blob { display: none; }
}

@media (max-width: 576px) {
	.hp-palabras-collage { height: 240px; }
	.hp-palabras-cita { font-size: 17px; }
	.hp-palabras-collage-img-wrap--1 { width: 65%; height: 72%; }
	.hp-palabras-collage-img-wrap--2 { width: 60%; height: 62%; }
	.hp-turismo-iq-prev, .hp-turismo-iq-next { display: none; }
	.hp-pasado-ov-card { height: 240px; }
	.hp-pasado-ov-titulo { font-size: 17px; }
	.hp-ruta-img-grid { grid-template-columns: 1fr; height: auto; }
	.hp-ruta-img-wrap { height: 200px; }
	.hp-ruta-img-wrap--2 { margin-top: 0; }
	.hp-alianzas-section { padding: 40px 0; }
	.hp-alianzas-section-titulo { font-size: 26px; margin-bottom: 28px; }
	.hp-alianzas-section-logos { gap: 28px; }
	.hp-alianza-logo-lg { max-height: 60px; }
	.hp-noticia-card-img-wrap { height: 160px; }
	.hp-palabras-cita { font-size: 17px; }
	.hp-palabras-thumb { width: 44px; height: 44px; }
	.hp-palabras-thumbs-wrap { margin-top: 28px; }
}
