/* ===============================================
   GUÍA EDITORIAL PREMIUM - V3 (DISEÑO DIVIDIDO)
   Basado en Referencia "Magistral"
   =============================================== */

:root {
    --gold-premium: var(--accent);

    /* Mapeado al Acento Global */
    /* Mapeado al Acento Global */
    --green-deep: #2AB966;
    /* Verde específico del usuario */
    --green-soft: var(--white);
    /* Cambiado a blanco para una apariencia más limpia */
    --premium-accent: var(--accent);
    /* Para compatibilidad en línea con PHP */
    --text-dark: var(--dark);
    --text-serif: 'Playfair Display', serif;
    --text-sans: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F8F9FA;
    color: var(--text-dark);
}

/* ===== SECCIÓN HÉROE ===== */
.hero {
    position: relative;
    height: 50vh;
    /* Reducido de 80vh */
    min-height: 500px;
    /* Aumentado a 500px */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Empujar contenido a los bordes */
    color: white;
    text-align: left;
    /* Cambiado a alineación izquierda */
    overflow: visible;
    margin-bottom: -50px;
    z-index: 1;
    padding-left: 5%;
    /* Añadido relleno para alineación izquierda */
    pointer-events: none;
    /* Evitar que el héroe bloquee contenido superpuesto */
}

/* Restaurar eventos de puntero para texto/contenido del héroe */
.hero-content {
    pointer-events: auto;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 1100px;
    /* Aumentado para bloque de texto más ancho */
    padding: 20px;
}

.hero-title {
    font-family: var(--text-serif);
    font-size: 5rem;
    /* Tamaño aumentado */
    line-height: 1;
    color: var(--gold-premium);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-family: var(--text-sans);
    font-size: 1.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    /* Ancho restringido para legibilidad */
    margin: 0;
    /* Eliminando margen automático */
    line-height: 1.5;
}

.sparkle {
    color: var(--gold-premium);
    display: inline-block;
    font-size: 1.5rem;
    animation: sparkleAnim 2s infinite alternate;
}

@keyframes sparkleAnim {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ===== DISEÑO EDITORIAL PRINCIPAL ===== */
.editorial-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 80px;
    padding: 0 20px 80px;
    position: relative;
    z-index: 100;
    /* Aumentado para asegurar que se sitúe sobre el héroe */
}

.editorial-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    /* Barra lateral fija + Contenido fluido */
    gap: 60px;
    align-items: start;
}

/* ===== BARRA LATERAL IZQUIERDA (LISTA DE VERIFICACIÓN FIJA) ===== */
.editorial-sidebar {
    position: sticky;
    top: 100px;
    z-index: 50;
    /* Asegurar clicabilidad sobre posibles superposiciones */
}

.checklist-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.checklist-header {
    background: var(--green-deep);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centrar contenido como el original, o 'flex-start' si se prefiere. ¿Mantener centro o izquierda? Revisar imagen: Indice alineado izquierda. Permitir flujo natural o centro si es corto. "Regla de Oro" es largo. Izquierda con gap es más seguro. */
    gap: 15px;
    text-align: left;
    color: var(--white);
    min-height: 50px;
    /* altura objetivo */
}

.checklist-header i {
    font-size: 1.4rem;
    /* Reducido */
    margin-bottom: 0;
    display: block;
    color: var(--accent);
    /* Mantener color de acento o usar dorado */
    flex-shrink: 0;
}

.checklist-header h3 {
    font-family: var(--text-serif);
    font-size: 1.1rem;
    /* Reducido para ajustar */
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.checklist-body {
    padding: 30px;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.checklist-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold-premium);
    border-radius: 6px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    transition: all 0.2s;
}

.checklist-item.checked .checklist-checkbox {
    background: var(--gold-premium);
}

.checklist-text {
    font-family: var(--text-serif);
    font-size: 1.1rem;
    color: #444;
    flex-grow: 1;
}

.checklist-icon {
    color: var(--green-deep);
    opacity: 0.6;
    font-size: 1.2rem;
}

/* Tarjeta de Pro Tip */
.protip-card {
    background: var(--white);
    /* Coincidiendo con el tema verde */
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    border-left: 5px solid var(--green-deep);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.protip-title {
    font-family: var(--text-serif);
    font-size: 1.4rem;
    color: var(--green-deep);
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Estilos TOC LIMPIOS */
.toc-card-clean {
    background: white;
    border-radius: 20px;
    /* Coincidente con tarjeta de lista de verificación */
    overflow: hidden;
    /* Asegurar recorte de encabezado */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 0;
    /* Limpiar relleno para encabezado completo */
}

.toc-header-clean {
    background: var(--green-deep);
    padding: 10px 25px;
    /* Reducido para ~50px de altura */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.toc-header-clean h3 {
    font-family: var(--text-serif);
    font-size: 1.2rem;
    /* Reducido para ajustar */
    color: white;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
}

.toc-divider {
    height: 4px;
    width: 30px;
    background: var(--gold-premium);
    margin-top: 0;
    /* Eliminando margen superior para ajustar en fila flex o pila reducida */
    border-radius: 2px;
    display: none;
    /* Ocultando divisor para ajustar estrictamente 50px de barra cómodamente, o podemos hacerlo en línea */
}

.toc-list-clean {
    list-style: none;
    padding: 25px;
    /* Añadido relleno de vuelta al cuerpo */
    margin: 0;
}



.toc-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 10px;
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: var(--text-sans);
    border-left: 3px solid transparent;
}

.toc-link i {
    width: 20px;
    text-align: center;
    color: #ccc;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.toc-link:hover {
    background: linear-gradient(to right, #f9f9f9, transparent);
    color: var(--green-deep);
}

.toc-link:hover i {
    color: var(--green-deep);
}

/* Estado Activo Moderno */
.toc-link.active {
    background: linear-gradient(to right, rgba(42, 185, 102, 0.08), transparent);
    color: var(--green-deep);
    border-left-color: var(--green-deep);
    font-weight: 700;
}

.toc-link.active i {
    color: var(--gold-premium);
    /* Icono naranja para activo */
}

/* ===== CONTENIDO DERECHO ===== */
.editorial-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.section-heading {
    scroll-margin-top: 180px;
    /* Nuevo objetivo para ancla */
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.section-icon {
    font-size: 1.8rem;
    color: var(--green-deep);
}

.section-title-large {
    font-family: var(--text-serif);
    font-size: 2.5rem;
    color: var(--green-deep);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.editorial-text {
    font-family: var(--text-serif);
    /* Cuerpo Serif como en referencia usualmente */
    font-size: 1.35rem;
    /* Aumentado de 1.2rem */
    line-height: 1.8;
    color: #444;
    /* Más oscuro para mejor contraste */
    margin-bottom: 25px;
}

/* Insignias de Info (Tips Soroche) */
.info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-badge i {
    font-size: 2rem;
    /* Iconos Grandes */
    color: var(--gold-premium);
}

.info-badge span {
    font-family: var(--text-sans);
    font-weight: 700;
    text-transform: uppercase;
    color: #777;
    /* Texto gris como en imagen */
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.drop-cap::first-letter {
    font-size: 4rem;
    color: var(--gold-premium);
    float: left;
    margin-right: 15px;
    line-height: 0.8;
}

/* Cuadrícula de Imágenes para Gastronomía */
.gastro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    /* Espacio aumentado */
    margin-top: 40px;
}

.gastro-image-wrapper {
    overflow: hidden;
    border-radius: 16px;
    /* Radio ligeramente mayor */
    height: 220px;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.gastro-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gastro-item:hover .gastro-image-wrapper {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.gastro-item:hover img {
    transform: scale(1.05);
}

.gastro-title {
    margin-top: 20px;
    font-family: var(--text-sans);
    /* Parece sans-serif en referencia */
    font-size: 1.1rem;
    color: #000;
    /* Negro Estricto */
    font-weight: 800;
    line-height: 1.3;
}

.gastro-desc {
    font-size: 0.9rem;
    color: #777;
    /* Gris Suave */
    line-height: 1.6;
    margin-top: 10px;
    font-family: var(--text-sans);
}


/* ===== BOLETO TURÍSTICO ===== */
.btc-section {
    background: #f4f8f6;
    border-radius: 12px;
    padding: 40px;
    border-left: 4px solid var(--green-deep);
    margin-bottom: 50px;
}

.btc-header {
    display: flex;
    scroll-margin-top: 180px;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.btc-subtitle {
    font-family: var(--text-serif);
    color: var(--green-deep);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.btc-price-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.btc-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: var(--text-sans);
    font-size: 1.15rem;
    /* Aumentado de 0.95rem */
    color: #555;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px;
}

.btc-price-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.btc-price-val {
    font-weight: 700;
    color: var(--green-deep);
}

.btc-exclusion-list,
.btc-buy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btc-exclusion-list li,
.btc-buy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.15rem;
    /* Aumentado de 0.95rem */
    color: #555;
}

.btc-exclusion-list li::before {
    content: '\f05e';
    /* fa-ban */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #e74c3c;
}

.btc-buy-list li::before {
    content: '\f3c5';
    /* fa-map-marker-alt */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold-premium);
}

@media (max-width: 768px) {
    .btc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Mejoras de la Sección de Cultura */
.culture-intro {
    font-size: 1.4rem;
    /* Aumentado de 1.2rem */
    /* Tamaño aumentado "auméntale un poco" */
    color: #555;
    margin-bottom: 35px;
    line-height: 1.9;
    padding: 0 40px;
    /* Alinear con relleno de sección BTC "ajuste al otro div" */
    position: relative;
    border-left: 3px solid transparent;
    /* Marcador para coincidir peso visual si es necesario */
}

/* Destellos Decorativos para Intro de Cultura */
.culture-intro::before {
    content: '\f005 \f005';
    /* Detalles de estrellas */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-premium);
    /* Estrellas doradas */
    font-size: 1.5rem;
    letter-spacing: -5px;
    transform: rotate(-15deg);
    opacity: 0.8;
}

.culture-intro::after {
    content: '\f005';
    /* Tercera estrella dispersa */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 25px;
    color: var(--gold-premium);
    font-size: 1rem;
    opacity: 0.6;
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .culture-intro {
        padding: 0 10px 0 35px;
        /* Ajustar para móvil, manteniendo espacio izquierdo para estrellas */
        font-size: 1.1rem;
    }
}

.culture-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.culture-tip-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #ddd;
    transition: transform 0.3s;
}

.culture-tip-card:hover {
    transform: translateY(-5px);
}

.culture-tip-card.dos {
    border-top-color: var(--green-deep);
}

.culture-tip-card.donts {
    border-top-color: #e74c3c;
}

.culture-tip-title {
    font-family: var(--text-serif);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.culture-tip-card.dos .culture-tip-title {
    color: var(--green-deep);
}

.culture-tip-card.donts .culture-tip-title {
    color: #e74c3c;
}

.culture-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.culture-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #666;
}

.culture-tip-card.dos .culture-list li::before {
    content: '\f00c';
    /* fa-check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--green-deep);
}

.culture-tip-card.donts .culture-list li::before {
    content: '\f00d';
    /* fa-times */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #e74c3c;
}

@media (max-width: 768px) {
    .culture-tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Imágenes de Lugares BTC */
.btc-places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.btc-place-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100px;
}

.btc-place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.btc-place-card:hover img {
    transform: scale(1.1);
}

.btc-place-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-size: 0.95rem;
    /* Aumentado de 0.75rem */
    padding: 10px 5px 5px;
    text-align: center;
    font-family: var(--text-serif);
}

@media (max-width: 600px) {
    .btc-places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desglose de Circuitos BTC */
.btc-circuits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    border-top: 1px dashed #ddd;
    padding-top: 25px;
}

.btc-circuit-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.btc-circuit-title {
    font-family: var(--text-serif);
    color: var(--green-deep);
    font-size: 1.25rem;
    /* Aumentado de 0.95rem */
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btc-circuit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.05rem;
    /* Aumentado de 0.85rem */
    color: #666;
}

.btc-circuit-list li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.btc-circuit-list li::before {
    content: '•';
    color: var(--gold-premium);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .btc-circuits-row {
        grid-template-columns: 1fr;
    }
}

.info-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.info-badge i {
    color: var(--gold-premium);
}

/* Responsivo */
@media (max-width: 1024px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        /* Diseño apilado */
    }

    .editorial-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
        order: -1;
        /* ¿Lista de verificación primero en móvil? O verificar preferencia */
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* ===== CUADRÍCULA DE BARRIOS ===== */
/* ===== CUADRÍCULA DE BARRIOS ===== */
.barrios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.barrio-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

/* Responsivo */
@media (max-width: 1024px) {
    .culture-layout {
        grid-template-columns: 1fr;
    }

    .barrios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .barrios-grid {
        grid-template-columns: 1fr;
    }
}

.barrio-card:hover {
    transform: translateY(-8px);
}

.barrio-image {
    height: 180px;
    overflow: hidden;
}

.barrio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.barrio-card:hover .barrio-image img {
    transform: scale(1.05);
}

.barrio-content {
    padding: 20px;
}

.barrio-content h4 {
    font-family: var(--text-serif);
    color: var(--green-deep);
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.barrio-content p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    font-family: var(--text-serif);
    font-style: italic;
}

/* Mejor Época para Viajar */
/* Mejor Época para Viajar */
.centered-heading {
    text-align: center;
    margin-bottom: 40px;
}

/* Asegurar que el icono y título estén centrados al usar flex */
.section-heading.centered-heading {
    display: flex;
    justify-content: center;
    width: 100%;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.season-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    transition: transform 0.3s;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-card.dry {
    border-color: var(--accent);
    /* Oro/Tierra */
}

.season-card.rainy {
    border-color: var(--primary);
    /* Verde Vibrante */
}

.season-header {
    padding: 18px;
    text-align: center;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--text-sans);
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.season-card.dry .season-header {
    background: var(--accent);
}

.season-card.rainy .season-header {
    background: var(--primary);
}

.season-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 100px 100px;
    gap: 8px;
    padding: 10px;
    height: 220px;
}

.season-img-main {
    grid-row: 1 / span 2;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.season-img-sub {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.season-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.season-card:hover .season-gallery img {
    transform: scale(1.1);
}

.season-body {
    padding: 25px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    /* Texto centrado como en referencia */
}

/* Dark Kit Section */
/* Sección Kit Oscuro (Ahora Claro) */
.dark-kit-section {
    background: #f4f8f6;
    /* Fondo claro */
    border-radius: 16px;
    padding: 50px;
    color: #555;
    /* Texto oscuro */
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 120px;
}

.dark-kit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.dark-kit-title {
    font-family: var(--text-serif);
    color: var(--green-deep);
    /* Título Verde Oscuro */
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* Separador más oscuro */
    padding-bottom: 15px;
}

.dark-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #555;
    /* Texto Gris */
    font-weight: 500;
}

.dark-checkbox {
    width: 28px;
    /* Ligeramente más grande */
    height: 28px;
    background-color: #1D5D4E;
    /* Verde Profundo Hardcoded */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(29, 93, 78, 0.3);
    /* Sombra verde */
}

.dark-checkbox i {
    font-size: 11px;
    color: white;
    /* Check blanco */
}

/* Dinero en Sección Oscura */
.money-dark-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.money-dark-icon {
    font-size: 2rem;
    color: var(--gold-premium);
    background: #f8f9fa;
    /* Fondo gris claro dentro de tarjeta blanca */
    padding: 15px;
    border-radius: 50%;
    /* Icono circular */
}

.money-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: var(--text-sans);
}

/* Banner Añay */
.anay-banner {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.anay-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.anay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.anay-content {
    position: relative;
    z-index: 2;
    color: var(--accent);
    /* Texto dorado */
}

.anay-title {
    font-family: var(--text-serif);
    font-size: 4.5rem;
    margin: 0;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.anay-subtitle {
    font-size: 1.3rem;
    color: white;
    font-style: italic;
    opacity: 0.95;
    margin-top: 15px;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {

    .seasons-grid,
    .dark-kit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dark-kit-section {
        padding: 30px 20px;
    }

    .best-time-header {
        width: 90%;
        font-size: 1.3rem;
        padding: 12px 20px;
        margin: 40px auto;
    }

    .anay-title {
        font-size: 3rem;
    }

    .anay-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .season-gallery {
        grid-template-columns: 1fr 1fr;
        /* División 50/50 en tablet */
        grid-template-rows: 150px;
        /* ¿Fila única de imágenes más altas? ¿O mantener 3? */
        /* De hecho mantener 3 pero ajustar proporción */
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 480px) {
    .season-gallery {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 200px 100px;
    }

    .season-img-main {
        grid-row: 1;
        grid-column: 1;
    }

    .season-img-sub {
        grid-row: 2;
        /* Hacer que miniaturas compartan la segunda fila */
        grid-column: auto;
    }

    /* Revertir a cuadrícula simple de 3 imágenes para móviles muy pequeños o simplemente apilar?
       Probemos una galería más simple para pantallas muy pequeñas: 
       Imagen principal arriba, dos secundarias abajo una al lado de la otra */
    .season-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 100px;
        grid-template-areas:
            "main main"
            "sub1 sub2";
    }

    .season-img-main {
        grid-area: main;
    }

    .season-img-sub:nth-child(2) {
        grid-area: sub1;
    }

    .season-img-sub:nth-child(3) {
        grid-area: sub2;
    }

    .anay-title {
        font-size: 2.2rem;
    }

    .dark-kit-title {
        font-size: 1.3rem;
    }

    .money-dark-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}

/* ===== AJUSTES PARA MÓVIL V2 ===== */
@media (max-width: 768px) {

    /* Arreglar Altura y Título del Héroe */
    .hero {
        height: 60vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Arreglar Relleno de Contenido (El problema "Largo") */
    .editorial-container {
        padding: 0 15px 40px;
    }

    .editorial-content {
        padding: 30px 20px;
        /* Reducido de 60px */
        border-radius: 12px;
    }

    .hero-content {
        padding: 10px;
    }

    /* Ajustar Barra Lateral/Lista de Verificación */
    .checklist-card {
        border-radius: 12px;
    }

    .checklist-header {
        padding: 25px 20px;
    }

    .checklist-body {
        padding: 20px;
    }

    /* Cuadrícula Gastro */
    .gastro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Texto Cultura/Intro */
    .culture-intro {
        padding: 0 10px 0 25px;
        font-size: 1.25rem;
        /* Aumentado para móvil */
        line-height: 1.8;
    }

    .drop-cap::first-letter {
        font-size: 3.5rem;
        margin-right: 10px;
    }

    /* Arreglos TOC y Scroll Móvil */
    .section-heading,
    .btc-header,
    .dark-kit-section {
        scroll-margin-top: 100px;
    }

    .toc-link {
        padding: 16px 10px;
        /* Objetivos táctiles más grandes */
        font-size: 1.15rem;
        border-bottom: 1px solid #f0f0f0;
        /* Separador para sensación de lista */
    }
}

/* ===== TARJETA FLOTANTE HÉROE (Lado Derecho) ===== */
.hero-floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    width: 320px;
    margin-right: 5%;
    /* Alinear fuertemente a la derecha */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: floatingCard 3s ease-in-out infinite alternate;
}

@keyframes floatingCard {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.hero-card-title span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-card-title h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.hero-stat {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
}

.hero-stat i {
    color: var(--gold-premium);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.hero-stat strong {
    display: block;
    font-size: 1.1rem;
}

.hero-stat small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Ocultar en móvil para prevenir desorden */
@media (max-width: 900px) {
    .hero-floating-card {
        display: none;
    }

    .hero {
        justify-content: center;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }
}