/* ====================================
   FESTIVAL DIA DE MUERTOS 2026
   Macro Plaza del Malecon, Veracruz
   Pitch Deck / Professional Proposal
   ==================================== */

/* --- CUSTOM PROPERTIES --- */
:root {
    --purple-deep: #1a0a2e;
    --purple-mid: #2d1b4e;
    --purple-light: #3d2b5e;
    --gold: #f4a300;
    --gold-muted: #d4a843;
    --gold-light: #fbe5a0;
    --orange: #e8720c;
    --orange-light: #f5a623;
    --cream: #fdf6e3;
    --cream-dark: #f5edd6;
    --white: #ffffff;
    --turquoise: #00b894;
    --red: #c0392b;
    --brown: #8b5e3c;
    --brown-light: #a97c50;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-300: #d1d1d1;
    --gray-400: #999999;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #333333;
    --gray-800: #1a1a1a;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --transition: 0.3s ease;
    --container: 1100px;
    --container-wide: 1400px;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* --- GOLD TOP BORDER --- */
.gold-top-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
    z-index: 1001;
}

/* --- CONTAINERS --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- SECTIONS --- */
.section {
    padding: 5rem 0;
    position: relative;
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header.light .section-number {
    color: rgba(255, 255, 255, 0.25);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light .section-line {
    background: var(--gold);
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.section-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(26, 10, 46, 0.06);
    line-height: 1;
    margin-bottom: -0.5rem;
    letter-spacing: -2px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* ==========================
   VIDEO SHOWCASE SECTION
   ========================== */
.video-showcase {
    background: linear-gradient(180deg, #0f0620 0%, var(--purple-deep) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
}

.video-showcase .section-header {
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: var(--container-wide);
    margin: 0 auto;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(244, 163, 0, 0.15), 0 0 0 1px rgba(244, 163, 0, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(244, 163, 0, 0.25), 0 0 0 1px rgba(244, 163, 0, 0.2);
}

.video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

/* --- Music Toggle Button --- */
.music-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--purple-deep);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(244, 163, 0, 0.3);
    transition: all var(--transition);
}

.music-toggle:hover {
    background: var(--gold);
    color: var(--purple-deep);
    transform: scale(1.1);
}

.music-toggle.playing {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(244, 163, 0, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(244, 163, 0, 0.6); }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    .music-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ==========================
   HERO SECTION
   ========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--purple-deep) 0%, #0f0620 40%, #1a0a2e 70%, #2d1b4e 100%);
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(244, 163, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(232, 114, 12, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 850px;
}

.hero-pre-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 2rem;
    opacity: 0.85;
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
}

.title-line:first-child {
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.title-line.accent {
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -1px;
}

.title-line.accent-secondary {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-light);
    margin-top: 0.2rem;
}

.title-line.year {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 12px;
    margin-top: 0.5rem;
}

.hero-location {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}

.hero-dates {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-fases {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.fase-tag {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fase-muertos {
    background: rgba(244, 163, 0, 0.15);
    color: var(--gold);
    border-color: rgba(244, 163, 0, 0.3);
}

.fase-revolucion {
    background: rgba(139, 94, 60, 0.2);
    color: var(--brown-light);
    border-color: rgba(139, 94, 60, 0.35);
}

/* Hero impact stats */
.hero-impacto {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(244,163,0,0.3);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    min-width: 160px;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.hero-slogan {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--purple-deep);
    background: var(--gold);
    border-radius: 50px;
    transition: all var(--transition);
}

.hero-cta:hover {
    background: var(--white);
    color: var(--purple-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(244, 163, 0, 0.35);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

/* ==========================
   NAV
   ========================== */
.main-nav {
    position: fixed;
    top: 4px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 10, 46, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-110%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid rgba(244, 163, 0, 0.15);
}

.main-nav.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.nav-logo:hover {
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.nav-links li a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* ==========================
   01 — PROPUESTA
   ========================== */
.propuesta {
    background: var(--cream);
}

.propuesta-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

.propuesta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.propuesta-text p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

/* Phase cards */
.fases-propuesta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.fase-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: box-shadow var(--transition);
}

.fase-card:hover {
    box-shadow: var(--shadow-md);
}

.fase-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.fase-card-dates {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.fase-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.fase-card-muertos {
    border-left: 4px solid var(--orange);
}

.fase-card-muertos h4 {
    color: var(--orange);
}

.fase-card-muertos .fase-card-dates {
    color: var(--orange);
}

.fase-card-rev {
    border-left: 4px solid var(--brown);
}

.fase-card-rev h4 {
    color: var(--brown);
}

.fase-card-rev .fase-card-dates {
    color: var(--brown);
}

/* Highlights row */
.propuesta-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight {
    flex: 1;
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}

.highlight:hover {
    box-shadow: var(--shadow-sm);
}

.highlight-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--purple-deep);
    line-height: 1.1;
}

.highlight-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.35rem;
}

/* Pilares card */
.propuesta-visual {
    position: sticky;
    top: 80px;
}

.pilares-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.pilares-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-light);
}

.pilares-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.5rem;
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.55;
    border-bottom: 1px solid var(--gray-100);
}

.pilares-list li:last-child {
    border-bottom: none;
}

.pilares-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

/* ==========================
   02 — EXPERIENCIAS
   ========================== */
.experiencias {
    background: var(--purple-deep);
    color: var(--white);
}

/* Experience groups */
.exp-group {
    margin-bottom: 3rem;
}

.exp-group:last-child {
    margin-bottom: 0;
}

.exp-group-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.exp-group-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.75rem;
}

/* Permanent grid — large horizontal cards */
.exp-grid-permanent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

/* Thematic grid — smaller cards */
.exp-grid-thematic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Experience cards */
.exp-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition);
}

.exp-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(244, 163, 0, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.exp-card-large {
    padding: 2.25rem;
}

.exp-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    padding-right: 4.5rem;
}

.exp-card-large h3 {
    font-size: 1.35rem;
}

.exp-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.exp-card-large p {
    font-size: 0.95rem;
}

/* Revolucion variant */
.exp-card-rev {
    border-color: rgba(139, 94, 60, 0.3);
    background: rgba(139, 94, 60, 0.08);
}

.exp-card-rev:hover {
    border-color: rgba(139, 94, 60, 0.5);
    background: rgba(139, 94, 60, 0.15);
}

/* Duration badges */
.exp-duration-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-24 {
    background: rgba(0, 184, 148, 0.18);
    color: var(--turquoise);
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.badge-3 {
    background: rgba(45, 27, 78, 0.5);
    color: #c4a8ff;
    border: 1px solid rgba(196, 168, 255, 0.3);
}

.badge-1 {
    background: rgba(192, 57, 43, 0.18);
    color: #ff6b6b;
    border: 1px solid rgba(192, 57, 43, 0.3);
}

.badge-fds {
    background: rgba(139, 94, 60, 0.2);
    color: var(--brown-light);
    border: 1px solid rgba(139, 94, 60, 0.35);
}

/* Card detail badges */
.exp-card-detail {
    margin-top: 0.5rem;
}

.detail-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(244, 163, 0, 0.12);
    color: var(--gold);
    border: 1px solid rgba(244, 163, 0, 0.2);
    line-height: 1.5;
}

.detail-badge.comercio {
    background: rgba(0, 184, 148, 0.1);
    color: var(--turquoise);
    border-color: rgba(0, 184, 148, 0.2);
}

.detail-badge.altares {
    background: rgba(192, 57, 43, 0.12);
    color: #ff6b6b;
    border-color: rgba(192, 57, 43, 0.25);
}

.detail-badge.coco {
    background: rgba(196, 168, 255, 0.1);
    color: #c4a8ff;
    border-color: rgba(196, 168, 255, 0.2);
}

.detail-badge.folklore {
    background: rgba(232, 114, 12, 0.12);
    color: var(--orange-light);
    border-color: rgba(232, 114, 12, 0.2);
}

.detail-badge.artista {
    background: rgba(244, 163, 0, 0.12);
    color: var(--gold);
    border-color: rgba(244, 163, 0, 0.2);
}

.detail-badge.revolucion {
    background: rgba(139, 94, 60, 0.15);
    color: var(--brown-light);
    border-color: rgba(139, 94, 60, 0.3);
}

/* ==========================
   03 — CRONOGRAMA
   ========================== */
.cronograma {
    background: var(--cream);
}

/* Nota de estructura */
.crono-nota-estructura {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}

.crono-nota-estructura p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* Calendar Strip */
.calendar-strip {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.calendar-strip-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 1.25rem;
    text-align: center;
}

.calendar-days {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

.cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 52px;
    border-radius: var(--radius-sm);
    transition: transform var(--transition);
    cursor: default;
}

.cal-day:hover {
    transform: scale(1.1);
}

.cal-num {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.cal-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.75;
}

.cal-muertos {
    background: var(--orange);
    color: var(--white);
}

.cal-revolucion {
    background: var(--brown);
    color: var(--white);
}

.cal-weekday {
    background: var(--gray-200);
    color: var(--gray-600);
}

/* Calendar legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.cal-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-600);
}

.cal-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.cal-swatch-muertos {
    background: var(--orange);
}

.cal-swatch-revolucion {
    background: var(--brown);
}

.cal-swatch-weekday {
    background: var(--gray-200);
}

/* Key Events */
.key-events {
    margin-bottom: 3rem;
}

.key-events-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 1.25rem;
    text-align: center;
}

.key-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.key-event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition);
}

.key-event-card:hover {
    box-shadow: var(--shadow-md);
}

.key-event-dates {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.key-event-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 0.35rem;
}

.key-event-detail {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 0;
}

/* Timeline separators */
.timeline-separator {
    text-align: center;
    margin: 2.5rem 0 1.5rem;
    position: relative;
}

.timeline-separator::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--orange);
    opacity: 0.3;
}

.sep-text {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--orange);
    border-radius: 50px;
}

.sep-rev .sep-text {
    background: var(--brown);
}

.sep-rev::before {
    background: var(--brown);
}

/* Timeline items */
.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    align-items: start;
}

.timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.5rem;
    text-align: center;
    min-height: 70px;
}

.timeline-date .dia {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.1;
}

.timeline-date .mes {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.date-range .dia {
    font-size: 1.25rem;
}

.date-rev {
    background: var(--brown);
}

.date-entre {
    background: var(--gray-300);
    color: var(--gray-600);
}

.timeline-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content ul li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.timeline-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* Timeline badges */
.timeline-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
}

.timeline-badge.gratis {
    background: rgba(0, 184, 148, 0.12);
    color: var(--turquoise);
    border: 1px solid rgba(0, 184, 148, 0.25);
}

.timeline-badge.altares-badge {
    background: rgba(192, 57, 43, 0.1);
    color: var(--red);
    border: 1px solid rgba(192, 57, 43, 0.2);
}

.timeline-badge.artista-badge {
    background: rgba(244, 163, 0, 0.12);
    color: var(--orange);
    border: 1px solid rgba(244, 163, 0, 0.2);
}

.timeline-badge.rev-badge {
    background: rgba(139, 94, 60, 0.12);
    color: var(--brown);
    border: 1px solid rgba(139, 94, 60, 0.25);
}

/* Entre semana condensed */
.timeline-entre-semana .timeline-content {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.timeline-entre-semana .timeline-content h3 {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.entre-semana-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-style: italic;
}

/* ==========================
   04 — IMPACTO
   ========================== */
.impacto {
    background: var(--purple-deep);
    color: var(--white);
}

/* Derrama Económica - Hero */
.derrama-hero {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(244,163,0,0.25);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.derrama-main {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.derrama-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}

.derrama-cifra {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.derrama-moneda {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
}

.derrama-desglose {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.derrama-item {
    text-align: center;
}

.derrama-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.derrama-cat {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.derrama-detail {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.25rem;
    line-height: 1.3;
}

/* Contacto beneficios */
.contacto-beneficios {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(244, 163, 0, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.contacto-beneficios p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 0.5rem;
}

.contacto-beneficios ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contacto-beneficios li {
    font-size: 0.8rem;
    color: #555;
    padding-left: 1rem;
    position: relative;
}

.contacto-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 700;
}

.contacto-apoyo {
    font-size: 0.7rem;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.impacto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.impacto-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition);
}

.impacto-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.impacto-card:nth-child(2) {
    border-left-color: var(--turquoise);
}

.impacto-card:nth-child(3) {
    border-left-color: var(--orange);
}

.impacto-card:nth-child(4) {
    border-left-color: #c4a8ff;
}

.impacto-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.impacto-card:nth-child(2) h3 {
    color: var(--turquoise);
}

.impacto-card:nth-child(3) h3 {
    color: var(--orange-light);
}

.impacto-card:nth-child(4) h3 {
    color: #c4a8ff;
}

.impacto-card ul li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.impacto-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

/* Numeros / Counters */
.numeros {
    text-align: center;
}

.numeros-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.numero-item {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.numero-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.numero-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.numero-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.numero-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* ==========================
   05 — DISTRIBUCION
   ========================== */
.distribucion {
    background: var(--cream);
    padding-bottom: 4rem;
}

/* Ficha Tecnica */
.ficha-tecnica {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.ficha-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: var(--purple-deep);
}

.ficha-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.ficha-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    background: rgba(244, 163, 0, 0.2);
    color: var(--gold);
    border: 1px solid rgba(244, 163, 0, 0.35);
}

.ficha-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.ficha-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--gray-100);
    border-right: 1px solid var(--gray-100);
}

.ficha-item:nth-child(even) {
    border-right: none;
}

.ficha-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.ficha-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--purple-deep);
}

/* Plano wrapper */
.plano-wrapper {
    margin-bottom: 3rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.plano {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 900px;
}

/* Plano header */
.plano-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: var(--purple-deep);
    color: var(--white);
    gap: 2rem;
}

.plano-header-left {
    flex: 1;
}

.plano-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 3px;
    background: rgba(244, 163, 0, 0.2);
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.plano-title-main {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.plano-header-right {
    text-align: right;
}

.plano-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.plano-meta span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* Compass */
.plano-compass {
    position: absolute;
    top: 5.5rem;
    right: 2rem;
    text-align: center;
    z-index: 5;
    color: var(--gray-400);
}

.compass-arrow {
    font-size: 1rem;
    line-height: 1;
}

.compass-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Plano body */
.plano-body {
    position: relative;
    padding: 1.25rem 2rem 1.5rem;
}

/* Calle top */
.plano-calle-top {
    text-align: center;
    padding: 0.6rem;
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.calle-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* Regla */
.regla {
    position: relative;
    margin-bottom: 0.5rem;
    padding-top: 1rem;
}

.regla-marks {
    position: relative;
    height: 1.2rem;
}

.regla-mark {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.5px;
}

.regla-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--gray-300), var(--gray-400), var(--gray-300));
    border-radius: 2px;
}

/* Pasillos */
.pasillo-h {
    text-align: center;
    padding: 0.35rem;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        rgba(0, 0, 0, 0.04) 8px,
        rgba(0, 0, 0, 0.04) 16px
    );
    border: 1px dashed var(--gray-300);
    border-radius: 3px;
    margin: 0.35rem 0;
}

.pasillo-h span {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Accesos */
.plano-lado {
    position: relative;
    min-height: 40px;
}

.lado-blvd {
    min-height: 50px;
    margin-bottom: 0.25rem;
}

.acceso-point {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    text-align: center;
}

.acceso-marker {
    display: inline-block;
    font-size: 1rem;
    color: var(--turquoise);
    line-height: 1;
}

.acceso-carga {
    color: var(--orange);
}

.acceso-label {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    white-space: nowrap;
}

.acceso-label small {
    font-weight: 500;
    color: var(--gray-400);
}

/* Zonas Strip */
.zonas-strip {
    display: flex;
    gap: 3px;
    min-height: 240px;
}

.zona-long {
    position: relative;
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.6rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.zl-tag {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.55rem;
    font-weight: 900;
    padding: 0.15rem 0.4rem;
    background: rgba(0, 0, 0, 0.15);
    color: var(--white);
    border-radius: 0 var(--radius-sm) 0 4px;
    letter-spacing: 0.5px;
}

.zl-header {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.2rem;
}

.zl-metros {
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.zl-permanencia {
    display: inline-block;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    width: fit-content;
}

.perm-fija {
    background: rgba(0, 184, 148, 0.25);
    color: #00dfa7;
}

.perm-temp1 {
    background: rgba(192, 57, 43, 0.3);
    color: #ff8888;
}

.perm-temp3 {
    background: rgba(196, 168, 255, 0.25);
    color: #d4bfff;
}

.zl-name {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.zl-sub {
    font-size: 0.48rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zl-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: auto;
}

.zl-details span {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.35;
}

.zl-medida {
    font-size: 0.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zl-badge-main {
    font-size: 0.5rem;
    font-weight: 700;
    text-align: center;
    padding: 0.3rem;
    background: rgba(0, 184, 148, 0.2);
    color: #00dfa7;
    border-radius: 3px;
    letter-spacing: 0.3px;
}

/* Zone colors */
.zl-operaciones {
    background: linear-gradient(180deg, #3a3a4a, #2a2a3a);
}

.zl-comercio {
    background: linear-gradient(180deg, #1a6b4a, #145a3e);
}

.zl-altares {
    background: linear-gradient(180deg, #8b2020, #6b1818);
}

.zl-feria {
    background: linear-gradient(180deg, #c76b00, #a05800);
}

.zl-artesanias {
    background: linear-gradient(180deg, #6b4e8a, #553d70);
}

.zl-gastro2 {
    background: linear-gradient(180deg, #1a7a5a, #126548);
}

.zl-escenario {
    background: linear-gradient(180deg, #2a4a8a, #1e3a70);
}

.zl-salida {
    background: linear-gradient(180deg, #4a4a5a, #3a3a4a);
}

/* Zone timeline dots */
.zl-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.25rem;
}

.ztl-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.45rem;
    color: rgba(255, 255, 255, 0.65);
}

.ztl-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ztl-dot.montaje {
    background: var(--gold);
}

.ztl-dot.activo {
    background: var(--turquoise);
}

.ztl-dot.premiac {
    background: var(--red);
}

.ztl-dot.desmontaje {
    background: var(--gray-400);
}

.zl-nota-temp {
    font-size: 0.45rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    line-height: 1.3;
    margin-top: 0.2rem;
}

/* Feria franjas */
.feria-franjas {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 0.3rem;
}

.franja {
    padding: 0.25rem 0.4rem;
    border-radius: 3px;
    text-align: center;
}

.franja span {
    display: block;
    font-size: 0.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.franja small {
    font-size: 0.42rem;
    color: rgba(255, 255, 255, 0.6);
}

.fr-mayores {
    background: rgba(255, 80, 80, 0.25);
}

.fr-medianos {
    background: rgba(255, 165, 0, 0.25);
}

.fr-infantiles {
    background: rgba(0, 184, 148, 0.25);
}

/* Mini layout in Z2 */
.zl-layout-mini {
    margin-top: 0.3rem;
}

.mini-row {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.ms {
    width: 8px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.ms.mf {
    background: rgba(244, 163, 0, 0.5);
}

.mini-pasillo {
    text-align: center;
    font-size: 0.4rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.1rem 0;
}

/* Escenario visual */
.escenario-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 0.3rem;
}

.ev-pantalla {
    width: 90%;
    padding: 0.15rem;
    background: rgba(0, 150, 255, 0.3);
    color: var(--white);
    text-align: center;
    font-size: 0.4rem;
    font-weight: 700;
    border-radius: 2px;
}

.ev-escenario {
    width: 70%;
    padding: 0.2rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-align: center;
    font-size: 0.4rem;
    font-weight: 700;
    border-radius: 2px;
}

.ev-publico {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 60%;
}

.ev-fila {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
}

.ev-label {
    font-size: 0.38rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* Malecon franja */
.lado-mar {
    margin-top: 0.35rem;
}

.malecon-franja {
    position: relative;
}

.malecon-borde {
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--gray-400),
        var(--gray-400) 12px,
        transparent 12px,
        transparent 18px
    );
    border-radius: 2px;
}

.malecon-label-new {
    text-align: center;
    margin-top: 0.2rem;
}

.malecon-label-new span {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 4px;
}

/* Mar strip */
.mar-strip {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(180deg, #d4eaf7, #a8d4ef);
    border-radius: var(--radius-sm);
}

.mar-contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mar-titulo {
    font-size: 0.8rem;
    font-weight: 800;
    color: #2a6fa8;
    letter-spacing: 6px;
}

.mar-ref {
    font-size: 0.55rem;
    font-weight: 600;
    color: #5a9ac8;
}

/* Plano Leyenda */
.plano-leyenda {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.leyenda-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--purple-deep);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.leyenda-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.leyenda-col h5 {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.mt-12 {
    margin-top: 0.75rem;
}

.leyenda-item-new {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.25rem 0;
    font-size: 0.78rem;
    color: var(--gray-600);
}

.leyenda-color {
    display: inline-block;
    width: 16px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.le-operaciones { background: #3a3a4a; }
.le-comercio { background: #1a6b4a; }
.le-feria { background: #c76b00; }
.le-artesanias { background: #6b4e8a; }
.le-gastro { background: #1a7a5a; }
.le-salida { background: #4a4a5a; }
.le-altar { background: #8b2020; }
.le-escenario { background: #2a4a8a; }

.leyenda-sym-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--turquoise);
    flex-shrink: 0;
}

.leyenda-sym-icon.acc-carga {
    color: var(--orange);
}

/* Plano notas */
.plano-notas {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

.plano-notas p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.plano-notas ul {
    list-style: none;
}

.plano-notas ul li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1rem;
    font-size: 0.78rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.plano-notas ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-400);
}

/* Permanencia table */
.permanencia-tabla {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.permanencia-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--purple-deep);
    padding: 1.5rem 2rem 1rem;
}

.tabla-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabla-perm {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.tabla-perm thead {
    background: var(--purple-deep);
}

.tabla-perm th {
    padding: 0.85rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    text-align: left;
    white-space: nowrap;
}

.tabla-perm td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    vertical-align: middle;
}

.tabla-perm tbody tr:hover {
    background: var(--cream);
}

.fila-temporal {
    background: rgba(244, 163, 0, 0.04);
}

.fila-temporal:hover {
    background: rgba(244, 163, 0, 0.08);
}

.dias-cell {
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    white-space: nowrap;
}

.dias-24 {
    color: var(--turquoise);
}

.dias-3 {
    color: #7c5cbf;
}

.dias-1 {
    color: var(--red);
}

/* ==========================
   MAPA 3D INTERACTIVO
   ========================== */

.mapa3d-wrapper {
    margin-bottom: 3rem;
}

.mapa3d-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mapa3d-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--purple-dark);
    margin-bottom: 0.5rem;
}

.mapa3d-instrucciones {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
}

.mapa3d-container {
    position: relative;
    background: #f0ece4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.mapa3d-container canvas {
    display: block;
    width: 100%;
    min-height: 400px;
    height: 55vw;
    max-height: 650px;
    cursor: grab;
}

.mapa3d-container canvas:active {
    cursor: grabbing;
}

/* Panel de info flotante */
.mapa3d-info {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 320px;
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    color: white;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.mapa3d-info.visible {
    transform: translateX(0);
}

.info-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    line-height: 1;
}

.info-close:hover {
    color: white;
}

.mapa3d-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    padding-right: 1.5rem;
}

.mapa3d-info p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
}

.info-stats {
    display: flex;
    gap: 0.75rem;
}

.info-stats span {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.info-perm-fija {
    background: rgba(0, 184, 148, 0.2);
    color: #00b894;
}

.info-perm-temp1 {
    background: rgba(192, 57, 43, 0.2);
    color: #e74c3c;
}

.info-perm-temp3 {
    background: rgba(106, 13, 173, 0.2);
    color: #a855f7;
}

/* Leyenda flotante */
.mapa3d-legend {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 5;
}

.legend3d-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #555;
}

.l3d-color {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
}

@media (max-width: 768px) {
    .mapa3d-info {
        width: calc(100% - 2rem);
        top: auto;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .mapa3d-legend {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 0.5rem;
    }
}

/* ==========================
   MAPA 2D AÉREO
   ========================== */

.mapa-2d {
    position: relative;
    padding: 0;
}

.mapa-compass {
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 10;
    text-align: center;
}

.compass-n {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--purple-dark);
    letter-spacing: 2px;
}

.compass-needle {
    width: 2px;
    height: 20px;
    background: var(--red);
    margin: 2px auto;
    position: relative;
}

.compass-needle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -3px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid var(--red);
}

.mapa-calle {
    text-align: center;
    padding: 10px;
    background: #e8e4dc;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #777;
}

.mapa-accesos {
    position: relative;
    height: 36px;
    background: rgba(0,0,0,0.02);
    border-bottom: 1px dashed var(--gray-300);
}

.mapa-acceso {
    position: absolute;
    transform: translateX(-50%);
    text-align: center;
    top: 4px;
}

.acc-arrow {
    display: block;
    font-size: 0.9rem;
    color: var(--turquoise);
    font-weight: 900;
    line-height: 1;
}

.mapa-acceso-carga .acc-arrow {
    color: var(--orange);
}

.acc-txt {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #999;
    text-transform: uppercase;
}

/* Terreno principal - contenedor del mapa */
.mapa-terreno {
    position: relative;
    height: 420px;
    background:
        linear-gradient(rgba(0,0,0,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.01) 1px, transparent 1px);
    background-size: 30px 30px;
    background-color: #f9f7f2;
    border-top: 2px solid var(--gray-300);
    border-bottom: 2px solid var(--gray-300);
}

/* Zonas del mapa */
.mz {
    position: absolute;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: default;
}

.mz:hover {
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

.mz-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
    z-index: 2;
}

.mz-code {
    font-size: 0.7rem;
    font-weight: 900;
    background: var(--purple-dark);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.mz-name {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
}

.mz-data {
    font-size: 0.55rem;
    opacity: 0.6;
    line-height: 1.3;
}

.mz-detail {
    font-size: 0.5rem;
    opacity: 0.5;
    margin-top: 4px;
}

.mz-perm {
    font-size: 0.5rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.mz-perm-fija {
    background: rgba(0, 184, 148, 0.15);
    color: #00796b;
}

.mz-perm-temp1 {
    background: rgba(192, 57, 43, 0.12);
    color: var(--red);
}

.mz-perm-temp3 {
    background: rgba(74, 44, 110, 0.12);
    color: var(--purple);
}

.mz-temp-note {
    font-size: 0.45rem;
    font-style: italic;
    opacity: 0.5;
    margin-top: auto;
    padding-top: 4px;
    text-align: center;
    line-height: 1.3;
}

.mz-icons {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.mz-ico {
    font-size: 0.8rem;
}

/* Colores de zonas del mapa */
.mz-z1 {
    background: rgba(108, 117, 125, 0.08);
    border-color: rgba(108, 117, 125, 0.3);
    color: #555;
}

.mz-z2 {
    background: rgba(0, 184, 148, 0.07);
    border-color: rgba(0, 184, 148, 0.3);
    color: #00796b;
}

.mz-z3 {
    background: rgba(192, 57, 43, 0.07);
    border-color: rgba(192, 57, 43, 0.35);
    border-style: dashed;
    color: var(--red);
}

.mz-z4 {
    background: rgba(232, 114, 12, 0.07);
    border-color: rgba(232, 114, 12, 0.35);
    color: var(--orange);
}

.mz-z5 {
    background: rgba(74, 44, 110, 0.06);
    border-color: rgba(74, 44, 110, 0.25);
    color: var(--purple);
}

.mz-z6 {
    background: rgba(232, 67, 147, 0.05);
    border-color: rgba(232, 67, 147, 0.25);
    color: #c2185b;
}

.mz-z7 {
    background: rgba(45, 27, 78, 0.07);
    border-color: rgba(45, 27, 78, 0.4);
    border-style: dashed;
    color: var(--purple-dark);
}

.mz-z8 {
    background: rgba(108, 117, 125, 0.06);
    border-color: rgba(108, 117, 125, 0.25);
    color: #555;
}

/* Mini puestos dentro de Z2 */
.mz-puestos {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 6px;
    width: 80%;
}

.puesto-row {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.puesto {
    width: 12px;
    height: 8px;
    background: rgba(0, 184, 148, 0.25);
    border: 1px solid rgba(0, 184, 148, 0.4);
    border-radius: 1px;
}

.puesto-food {
    background: rgba(232, 67, 147, 0.2);
    border-color: rgba(232, 67, 147, 0.35);
}

.puesto-pasillo {
    text-align: center;
    font-size: 0.35rem;
    color: #aaa;
    letter-spacing: 1px;
    padding: 1px 0;
}

/* Franjas de feria en Z4 */
.mz-franjas {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    width: 90%;
}

.mz-franja {
    padding: 6px 8px;
    border-radius: 4px;
    text-align: center;
}

.mz-franja span {
    display: block;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.mz-franja small {
    font-size: 0.45rem;
    opacity: 0.6;
}

.mz-fr-mayor { background: rgba(232, 114, 12, 0.12); }
.mz-fr-medio { background: rgba(244, 163, 0, 0.1); }
.mz-fr-infantil { background: rgba(244, 163, 0, 0.06); }

.mz-feria-badge {
    margin-top: 8px;
    font-size: 0.55rem;
    font-weight: 800;
    color: white;
    background: var(--turquoise);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Mini escenario en Z7 */
.mz-stage {
    margin-top: 8px;
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.stage-screen {
    width: 80%;
    padding: 4px;
    background: var(--purple-dark);
    color: var(--gold);
    font-size: 0.45rem;
    font-weight: 800;
    text-align: center;
    border-radius: 3px;
    letter-spacing: 1px;
}

.stage-platform {
    width: 65%;
    padding: 3px;
    background: rgba(45, 27, 78, 0.15);
    font-size: 0.4rem;
    font-weight: 700;
    text-align: center;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.stage-audience {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 90%;
    align-items: center;
}

.audience-row {
    height: 3px;
    background: rgba(100,100,120,0.12);
    border: 1px solid rgba(100,100,120,0.2);
    border-radius: 1px;
}

.stage-label {
    font-size: 0.4rem;
    color: #aaa;
    letter-spacing: 0.5px;
}

/* Pasillos sobre el terreno */
.mapa-pasillo {
    position: absolute;
    left: 0;
    right: 0;
    font-size: 0.45rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.2);
    text-align: center;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 2px;
    text-transform: uppercase;
    pointer-events: none;
}

.mapa-pasillo-n { top: 8%; }
.mapa-pasillo-s { bottom: 8%; }

/* Malecón y mar */
.mapa-malecon {
    text-align: center;
    padding: 6px;
    background: repeating-linear-gradient(
        90deg,
        #8d6e00 0px,
        #8d6e00 20px,
        #b89a3a 20px,
        #b89a3a 22px
    );
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.mapa-mar {
    padding: 20px;
    background: linear-gradient(180deg,
        rgba(0, 119, 182, 0.08) 0%,
        rgba(0, 150, 199, 0.18) 100%);
}

.mapa-mar .mar-contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mapa-mar .mar-titulo {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #0077b6;
}

.mapa-mar .mar-ref {
    font-size: 0.55rem;
    color: rgba(0, 119, 182, 0.5);
    font-weight: 600;
}

/* Responsive del mapa */
@media (max-width: 1024px) {
    .mapa-terreno {
        height: 350px;
    }

    .mz-name { font-size: 0.5rem; }
    .mz-data { font-size: 0.45rem; }
    .mz-franjas { display: none; }
    .mz-puestos { display: none; }
    .mz-stage { display: none; }
}

@media (max-width: 768px) {
    .mapa-terreno {
        height: auto;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
    }

    .mz {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        min-height: 60px;
        flex-direction: row;
        gap: 12px;
        padding: 12px;
    }

    .mz-label {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        text-align: left;
    }

    .mz-name { font-size: 0.65rem; }
    .mapa-pasillo { display: none; }
    .mapa-accesos { display: none; }

    .mapa-mar .mar-contenido {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* ==========================
   06 — CONTACTO
   ========================== */
.contacto {
    background: var(--cream);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contacto-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--purple-deep);
    line-height: 1.7;
    padding-left: 1.75rem;
    border-left: 4px solid var(--gold);
    margin-bottom: 1.75rem;
}

.contacto-cta-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.contacto-card {
    background: var(--purple-deep);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.contacto-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contacto-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ci-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-muted);
}

.contacto-item span:last-child {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.contacto-footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contacto-footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.contacto-footer h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

/* ==========================
   FOOTER
   ========================== */
.main-footer {
    background: var(--gray-800);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================
   REVEAL ANIMATION
   ========================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   RESPONSIVE — 1024px
   ========================== */
@media (max-width: 1024px) {
    .propuesta-grid {
        grid-template-columns: 1fr;
    }

    .propuesta-visual {
        position: static;
    }

    .exp-grid-permanent {
        grid-template-columns: 1fr;
    }

    .exp-grid-thematic {
        grid-template-columns: repeat(2, 1fr);
    }

    .impacto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .key-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-content {
        grid-template-columns: 1fr;
    }

    .ficha-grid {
        grid-template-columns: 1fr;
    }

    .ficha-item {
        border-right: none;
    }

    .leyenda-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================
   RESPONSIVE — 768px
   ========================== */
@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .section-number {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .title-line.accent {
        font-size: 2.5rem;
    }

    .title-line.accent-secondary {
        font-size: 1.5rem;
    }

    .title-line.year {
        font-size: 3.5rem;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .hero-stat {
        min-width: 120px;
        padding: 0.5rem 1rem;
    }

    .hero-slogan {
        font-size: 0.9rem;
    }

    .derrama-cifra {
        font-size: 2.5rem;
    }

    .derrama-desglose {
        grid-template-columns: repeat(2, 1fr);
    }

    .derrama-num {
        font-size: 1.3rem;
    }

    .hero-fases {
        flex-direction: column;
        align-items: center;
    }

    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        background: rgba(26, 10, 46, 0.97);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
    }

    .exp-grid-thematic {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 65px 1fr;
        gap: 1rem;
    }

    .timeline-date .dia {
        font-size: 1.3rem;
    }

    .key-events-grid {
        grid-template-columns: 1fr;
    }

    .impacto-grid {
        grid-template-columns: 1fr;
    }

    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .propuesta-highlights {
        flex-direction: column;
    }

    .plano {
        min-width: 750px;
    }

    .calendario-days {
        gap: 3px;
    }

    .cal-day {
        width: 38px;
        height: 46px;
    }

    .cal-num {
        font-size: 0.82rem;
    }

    .calendar-legend {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* ==========================
   RESPONSIVE — 480px
   ========================== */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container,
    .container-wide {
        padding: 0 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-number {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-pre-title {
        font-size: 0.72rem;
        letter-spacing: 2px;
    }

    .title-line:first-child {
        font-size: 1.5rem;
    }

    .title-line.accent {
        font-size: 2rem;
    }

    .title-line.accent-secondary {
        font-size: 1.2rem;
    }

    .title-line.year {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .hero-cta {
        padding: 0.75rem 2rem;
        font-size: 0.82rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .timeline-date {
        flex-direction: row;
        gap: 0.5rem;
        min-height: auto;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    }

    .timeline-content {
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }

    .timeline-date .dia {
        font-size: 1.2rem;
    }

    .timeline-date .mes {
        font-size: 0.65rem;
    }

    .exp-grid-permanent {
        grid-template-columns: 1fr;
    }

    .numeros-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .numero-value {
        font-size: 2.2rem;
    }

    .ficha-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .plano {
        min-width: 650px;
    }

    .cal-day {
        width: 32px;
        height: 40px;
    }

    .cal-num {
        font-size: 0.75rem;
    }

    .contacto-quote {
        font-size: 1.05rem;
    }

    .contacto-card {
        padding: 1.75rem;
    }
}

/* ==========================
   PRINT STYLES
   ========================== */
@media print {
    .gold-top-border,
    .main-nav,
    .scroll-indicator,
    .hero-cta {
        display: none;
    }

    body {
        font-size: 11pt;
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
        background: #1a0a2e;
        page-break-after: always;
    }

    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }

    .experiencias,
    .impacto {
        background: #f5f5f5;
        color: #000;
    }

    .experiencias .section-header.light h2,
    .impacto .section-header.light h2 {
        color: #1a0a2e;
    }

    .experiencias .section-header.light .section-number,
    .impacto .section-header.light .section-number {
        color: #ddd;
    }

    .exp-card,
    .impacto-card {
        border: 1px solid #ccc;
        background: #fff;
        color: #333;
    }

    .exp-card h3,
    .exp-card p,
    .impacto-card h3,
    .impacto-card ul li {
        color: #333;
    }

    .exp-group-title,
    .numeros-title {
        color: #1a0a2e;
    }

    .numero-value {
        color: #1a0a2e;
    }

    .numero-label {
        color: #666;
    }

    .numero-item,
    .contacto-card {
        border: 1px solid #ccc;
        background: #fff;
        color: #333;
    }

    .contacto-card h3,
    .contacto-card span,
    .contacto-footer h4 {
        color: #333;
    }

    .plano-wrapper {
        overflow: visible;
    }

    .plano {
        min-width: 0;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .tabla-perm {
        font-size: 9pt;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
