/* ==========================================================================
   VíaCerta - Sistema de Diseño "Editorial Digital Viva" (/css/site.css)
   Paleta: #F7F5EF (Fondo), #FFFFFF (Secundario), #111111 (Negro), 
   #2457FF (Azul), #FF5A5F (Coral), #FFD447 (Amarillo), #8CCF4D (Verde)
   ========================================================================== */

:root {
    --bg-main: #F7F5EF;
    --bg-secondary: #FFFFFF;
    --text-black: #111111;
    --accent-blue: #2457FF;
    --accent-coral: #FF5A5F;
    --accent-yellow: #FFD447;
    --accent-green: #8CCF4D;
    
    --font-sans: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
    
    --border-color: #e2dfd5;
    --container-width: 1320px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body.editorial-body {
    background-color: var(--bg-main);
    color: var(--text-black);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* --- Cursor Personalizado --- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(36, 87, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .custom-cursor, .cursor-follower {
        display: none;
    }
}

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

/* --- Aviso Legal Top --- */
.disclaimer-banner {
    background-color: var(--accent-coral);
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
}

.disclaimer-banner p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- SECCIÓN 05 (HEADER): Navegación Compacta y Flotante --- */
.site-header {
    position: fixed;
    top: 33px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0 2rem;
}

.site-header.scrolled {
    top: 0;
    background-color: rgba(247, 245, 239, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 2rem;
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.brand-logo {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-black);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.brand-logo span {
    color: var(--accent-blue);
}

.header-section-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-coral);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.compact-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.compact-nav a {
    text-decoration: none;
    color: var(--text-black);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.compact-nav a:hover {
    color: var(--accent-blue);
}

.nav-cta-btn {
    background-color: var(--text-black);
    color: #ffffff !important;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.nav-cta-btn:hover {
    background-color: var(--accent-blue);
}

.header-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--accent-blue);
    width: 0%;
    transition: width 0.1s linear;
}

/* --- SECCIÓN 06 (HERO): Composición Editorial Monumental --- */
.hero-editorial-section {
    padding: 8rem 0 5rem 0;
    position: relative;
}

.hero-top-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 2rem;
}

.meta-tag.accent-blue {
    color: var(--accent-blue);
}

.meta-separator {
    color: #ccc;
}

.hero-massive-title {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 3rem;
}

.hero-massive-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent-blue);
}

.line-reveal {
    display: block;
    overflow: hidden;
}

.line-reveal span {
    display: block;
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealUp {
    0% { transform: translateY(100%); opacity: 0; filter: blur(10px); }
    100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

.hero-bottom-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 3rem;
    align-items: flex-end;
}

.hero-description-block p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.hero-actions-row {
    display: flex;
    gap: 1rem;
}

.editorial-btn {
    position: relative;
    padding: 0.85rem 1.75rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-primary-custom {
    background-color: var(--text-black);
    color: #ffffff;
}

.btn-primary-custom:hover {
    background-color: var(--accent-blue);
}

.btn-secondary-custom {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-black);
}

.btn-secondary-custom:hover {
    border-color: var(--text-black);
    background-color: var(--bg-secondary);
}

.hero-floating-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-circle {
    position: relative;
    width: 120px;
    height: 120px;
    animation: rotateBadge 20s linear infinite;
}

.badge-circle svg {
    width: 100%;
    height: 100%;
}

@keyframes rotateBadge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--accent-coral);
    border-radius: 50%;
}

.hero-clipped-image-container {
    position: relative;
}

.clipped-hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transition: var(--transition-smooth);
}

.clipped-hero-img:hover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.image-caption-tag {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dot-coral {
    width: 8px;
    height: 8px;
    background-color: var(--accent-coral);
    border-radius: 50%;
}

.dot-green {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
}

/* --- SECCIÓN 02 — MANIFIESTO VISUAL --- */
.manifesto-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 1rem;
}

.manifesto-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent-coral);
}

.manifesto-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.manifesto-body {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.highlight-yellow {
    background-color: rgba(255, 212, 71, 0.3);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

.manifesto-ticker-line {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    background-color: var(--bg-main);
}

.ticker-track {
    display: inline-block;
    animation: tickerScroll 25s linear infinite;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: #333;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- SECCIÓN 03 — INFORMACIÓN EN MOVIMIENTO --- */
.dynamic-info-section {
    padding: 6rem 0;
}

.section-header-flex {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.section-title-medium {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.dynamic-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.data-block {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.data-block:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}

.data-number {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--accent-blue);
    line-height: 1;
    margin-bottom: 1rem;
}

.data-divider {
    width: 40px;
    height: 2px;
    background-color: var(--border-color);
    margin-bottom: 1.5rem;
}

.data-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.data-desc {
    font-size: 0.9rem;
    color: #666;
}

/* --- SECCIÓN 04 — MAPA CONCEPTUAL --- */
.conceptual-map-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.map-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.map-interactive-container {
    position: relative;
    height: 450px;
    max-width: 1000px;
    margin: 0 auto;
}

.map-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--text-black);
    color: #ffffff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-center-node small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--accent-yellow);
    margin-top: 4px;
}

.map-node {
    position: absolute;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    width: 240px;
    transition: var(--transition-smooth);
}

.map-node:hover {
    border-color: var(--accent-blue);
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.node-1 { top: 0; left: 5%; }
.node-2 { top: 0; right: 5%; }
.node-3 { bottom: 0; left: 5%; }
.node-4 { bottom: 0; right: 5%; }

.node-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-coral);
    display: block;
    margin-bottom: 0.5rem;
}

.map-node h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-node p {
    font-size: 0.85rem;
    color: #666;
}

.map-svg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* --- SECCIÓN 05 — IMAGEN EXPERIMENTAL --- */
.experimental-image-section {
    padding: 7rem 0;
}

.exp-image-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.exp-image-content {
    position: relative;
}

.organic-clip-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: var(--transition-smooth);
}

.organic-clip-img:hover {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.floating-data-tag {
    position: absolute;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.tag-pos-1 { top: 20px; left: -20px; }
.tag-pos-2 { bottom: 20px; right: -20px; }

.exp-text-block h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.exp-text-block p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* --- SECCIÓN 06 — CARRUSEL EDITORIAL --- */
.editorial-carousel-section {
    padding: 6rem 0;
    background-color: var(--text-black);
    color: #ffffff;
    overflow: hidden;
}

.carousel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.carousel-header h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #ffffff;
}

.carousel-nav-controls {
    display: flex;
    gap: 1rem;
}

.carousel-arrow {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-arrow:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.carousel-track-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
    padding-bottom: 2rem;
}

.carousel-track-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    padding-left: max(2rem, calc((100vw - var(--container-width)) / 2));
    padding-right: 2rem;
}

.carousel-item {
    min-width: 380px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    transition: var(--transition-smooth);
}

.carousel-item:hover {
    border-color: var(--accent-blue);
    background-color: rgba(255,255,255,0.05);
}

.carousel-num {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.carousel-item h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.carousel-item p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.carousel-tag-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.accent-bg-blue { background-color: rgba(36, 87, 255, 0.2); color: #739bff; }
.accent-bg-coral { background-color: rgba(255, 90, 95, 0.2); color: #ff9194; }
.accent-bg-yellow { background-color: rgba(255, 212, 71, 0.2); color: #ffe680; }
.accent-bg-green { background-color: rgba(140, 207, 77, 0.2); color: #b1e486; }

.carousel-progress-bar {
    max-width: 400px;
    height: 2px;
    background-color: rgba(255,255,255,0.2);
    margin: 2rem auto 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.carousel-progress-fill {
    height: 100%;
    background-color: var(--accent-blue);
    width: 25%;
    transition: width 0.2s ease;
}

/* --- SECCIÓN 07 — TIMELINE DE PROCESO --- */
.timeline-section {
    padding: 7rem 0;
}

.horizontal-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.timeline-central-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-node-item {
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.timeline-node-item:hover .timeline-marker {
    background-color: var(--accent-blue);
    color: #ffffff;
    border-color: var(--accent-blue);
}

.timeline-content-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
}

.timeline-phase {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-coral);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-content-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-content-card p {
    font-size: 0.9rem;
    color: #666;
}

/* --- SECCIÓN 08 — GALERÍA / COLLAGE --- */
.collage-gallery-section {
    padding: 7rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.collage-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

.collage-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: center;
}

.collage-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
}

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

.collage-item:hover img {
    transform: scale(1.05);
}

.item-1 {
    grid-column: span 5;
    height: 450px;
}

.item-2 {
    grid-column: span 7;
    height: 380px;
    margin-top: -60px;
}

.item-3 {
    grid-column: span 6;
    height: 400px;
    grid-column-start: 4;
}

.collage-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- SECCIÓN 09 — INTERACCIÓN ESPECIAL --- */
.special-interaction-section {
    padding: 8rem 0;
}

.interaction-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 4rem;
    border-radius: 24px;
}

.interaction-left h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.interaction-left p {
    color: #555;
    margin-bottom: 2rem;
}

.audit-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audit-tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.audit-tab-btn:hover, .audit-tab-btn.active {
    background-color: var(--text-black);
    color: #ffffff;
    border-color: var(--text-black);
    transform: translateX(10px);
}

.audit-display-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 16px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.audit-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.audit-card-body h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
}

.audit-card-body p {
    color: #555;
    line-height: 1.7;
}

.audit-card-footer {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* --- SECCIÓN 10 — CONTENIDO DESTACADO ASIMÉTRICO --- */
.asymmetric-featured-section {
    padding: 7rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.asym-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.asym-massive-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-top: 1rem;
}

.asym-card-item {
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.asym-card-item:first-child {
    padding-top: 0;
}

.asym-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.asym-card-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.asym-card-item p {
    color: #666;
    font-size: 0.95rem;
}

/* --- SECCIÓN 11 — CIERRE EDITORIAL --- */
.editorial-closing-section {
    padding: 9rem 0;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.closing-huge-text {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 900px;
    margin: 1.5rem auto 3rem auto;
}

/* --- FOOTER EDITORIAL --- */
.editorial-footer {
    background-color: var(--text-black);
    color: #ffffff;
    padding: 6rem 0 2rem 0;
}

.footer-grid-editorial {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    color: #ffffff !important;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col-links h5, .footer-col-disclaimer h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-col-links ul {
    list-style: none;
}

.footer-col-links ul li {
    margin-bottom: 0.75rem;
}

.footer-col-links ul a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-col-links ul a:hover {
    color: #ffffff;
}

.footer-col-disclaimer p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 1024px) {
    .hero-bottom-grid, .manifesto-grid, .exp-image-wrapper, .interaction-wrapper, .asym-grid, .footer-grid-editorial {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .dynamic-data-grid, .horizontal-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .collage-grid-asymmetric {
        grid-template-columns: 1fr;
    }
    .collage-item {
        grid-column: span 12 !important;
        height: 350px !important;
        margin-top: 0 !important;
    }
    .map-interactive-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .map-center-node, .map-svg-lines {
        display: none;
    }
    .map-node {
        position: relative;
        width: 100%;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
}

@media (max-width: 768px) {
    .dynamic-data-grid, .horizontal-timeline {
        grid-template-columns: 1fr;
    }
    .compact-nav {
        display: none;
    }
}