/* ═══════════════════════════════════════════════════
   COLEGIO ING. LUIS A. HUERGO — Estilos principales
   Paleta: Naranja #F5A000 · Negro #1A1A1A · Gris #8C8C8C
   ═══════════════════════════════════════════════════ */

/* 1. VARIABLES */
:root {
    --naranja:       #F5A000;
    --naranja-dark:  #D68A00;
    --naranja-light: #FFF3D6;
    --negro:         #1A1A1A;
    --negro-soft:    #242424;
    --gris:          #8C8C8C;
    --gris-claro:    #F5F5F5;
    --gris-borde:    #E8E8E8;
    --blanco:        #FFFFFF;
    --sombra-s:      0 2px 8px rgba(0,0,0,0.08);
    --sombra-m:      0 4px 20px rgba(0,0,0,0.10);
    --sombra-l:      0 8px 40px rgba(0,0,0,0.14);
    --radio:         12px;
    --radio-l:       20px;
    --fuente-h:      'Raleway', sans-serif;
    --fuente-b:      'Inter', sans-serif;
    --transition:    0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--fuente-b);
    color: var(--negro);
    background: var(--blanco);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 3. LAYOUT */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section--dark {
    background: var(--negro);
    color: var(--blanco);
}

.section--gray {
    background: var(--gris-claro);
}

/* Extracurriculares — oscuro medio */
.section--dark {
    background: var(--negro-soft);
}

.section--dark .sec-tag {
    color: var(--naranja);
    border-color: rgba(245,160,0,0.35);
    background: rgba(245,160,0,0.12);
}

.section--dark .sec-title,
.section--dark .sec-sub {
    color: #fff;
}

.section--dark .sec-sub {
    color: rgba(255,255,255,0.6);
}

/* Novedades — gris muy suave */
.section--subtle {
    background: #F2F2F2;
}

/* Pagos — negro profundo */
.section--negro {
    background: var(--negro);
}

.section--negro .sec-tag {
    color: var(--naranja);
    border-color: rgba(245,160,0,0.35);
    background: rgba(245,160,0,0.12);
}

.section--negro .sec-title,
.section--negro .sec-sub {
    color: #fff;
}

.section--negro .sec-sub {
    color: rgba(255,255,255,0.6);
}

/* 4. SECTION HEADERS */
.sec-header {
    text-align: center;
    margin-bottom: 56px;
}

.sec-header--light .sec-title,
.sec-header--light .sec-sub {
    color: var(--blanco);
}

.sec-tag {
    display: inline-block;
    font-family: var(--fuente-b);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--naranja);
    background: var(--naranja-light);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.sec-tag--light {
    background: rgba(245, 160, 0, 0.18);
    color: var(--naranja);
}

.sec-title {
    font-family: var(--fuente-h);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--negro);
    margin-bottom: 16px;
}

.sec-sub {
    font-size: 1.05rem;
    color: var(--gris);
    max-width: 580px;
    margin: 0 auto;
}

/* 4B. SECTION HEADER VARIANTS */
.sec-header--split {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
}

.sec-header--split .sec-title { margin-bottom: 0; }

.sec-sub--right {
    margin: 0;
    max-width: 100%;
    align-self: end;
    padding-bottom: 4px;
}

/* Header centrado para sección orbital */
.sec-header--orbital {
    margin-bottom: 64px;
}

/* Título grande para secciones con contenido visual dominante */
.sec-title--xl {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

/* 5. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--fuente-b);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radio);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--naranja);
    color: var(--negro);
    border: 2px solid var(--naranja);
    font-weight: 700;
}
.btn-primary:hover {
    background: var(--naranja-dark);
    border-color: var(--naranja-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,160,0,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--naranja);
    border: 2px solid var(--naranja);
}
.btn-outline:hover {
    background: var(--naranja-light);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--blanco);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.7);
}

.btn-lg { padding: 14px 36px; font-size: 1rem; border-radius: 14px; }
.btn-full { width: 100%; }

/* 6. NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gris-borde);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--sombra-m);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    background: #fff;
    border-radius: 10px;
    padding: 4px 10px;
    display: block;
    transition: opacity 0.2s ease;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--negro);
    padding: 6px 14px;
    border-radius: 8px;
    transition: all var(--transition);
}
.nav-link:hover {
    color: var(--naranja);
    background: var(--naranja-light);
}

.nav-cta { margin-left: 8px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--negro);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. HERO */
.hero {
    min-height: 100dvh;
    background: var(--negro);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 85% 15%, rgba(245,160,0,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 5% 85%, rgba(245,160,0,0.08) 0%, transparent 55%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    flex: 1;
    max-width: 860px;
    margin: 0 auto;
}

.hero-accent-bar {
    width: 56px;
    height: 3px;
    background: var(--naranja);
    border-radius: 2px;
    margin: 0 0 32px;
    box-shadow: 0 0 24px rgba(245,160,0,0.7);
    animation: fadeDown 0.7s ease both;
}


.hero-title {
    font-family: var(--fuente-h);
    font-size: clamp(2.8rem, 7.5vw, 6rem);
    font-weight: 900;
    color: var(--blanco);
    line-height: 1.05;
    max-width: 900px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeUp 0.7s 0.15s ease both;
}

.hero-accent {
    color: var(--naranja);
    display: block;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    letter-spacing: 0.01em;
    animation: fadeUp 0.7s 0.25s ease both;
    text-align: left;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: fadeUp 0.7s 0.35s ease both;
}

.hero-stats-bar {
    position: relative;
    z-index: 1;
    background: var(--naranja);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
    gap: 4px;
}

.stat-num {
    font-family: var(--fuente-h);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--negro);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.75rem;
    color: rgba(26,26,26,0.6);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    font-weight: 600;
}

.stat-sep {
    width: 1px;
    height: 44px;
    background: rgba(26,26,26,0.18);
}

/* 8. NIVELES — Círculos interactivos con spring */

/* ── Fila de círculos ── */
.nivel-circles-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.nivel-circles-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.nivel-group-label {
    font-family: var(--fuente-h);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gris);
}

.nivel-group-circles {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nivel-group-sep {
    width: 1px;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--gris-borde) 30%, var(--gris-borde) 70%, transparent);
    flex-shrink: 0;
}

.nivel-circle {
    width: 152px;
    height: 152px;
    border-radius: 50%;
    border: 3px solid var(--naranja);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    font-family: inherit;
    /* Spring / muelle: cubic-bezier con overshoot (valor Y > 1) */
    transition:
        transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.35s ease;
    position: relative;
    padding: 0;
}

.nivel-circle:hover {
    transform: translateY(-10px) scale(1.09);
    box-shadow: 0 20px 40px rgba(245,160,0,0.22);
}

.nivel-circle.active {
    background: var(--naranja);
    transform: translateY(-14px) scale(1.14);
    box-shadow: 0 26px 52px rgba(245,160,0,0.38);
}

/* Cambridge — azul */
.nivel-circle--cambridge               { border-color: #3b82f6; }
.nivel-circle--cambridge:hover         { box-shadow: 0 20px 40px rgba(59,130,246,0.25); }
.nivel-circle--cambridge.active        { background: #3b82f6; box-shadow: 0 26px 52px rgba(59,130,246,0.4); }
.nivel-circle--cambridge .nivel-circle-num { color: #3b82f6; }

/* Deportes — verde */
.nivel-circle--deportes                { border-color: #22c55e; }
.nivel-circle--deportes:hover          { box-shadow: 0 20px 40px rgba(34,197,94,0.25); }
.nivel-circle--deportes.active         { background: #22c55e; box-shadow: 0 26px 52px rgba(34,197,94,0.4); }
.nivel-circle--deportes .nivel-circle-num { color: #22c55e; }

/* Cuando cualquier círculo está activo, el texto pasa a negro */
.nivel-circle--cambridge.active .nivel-circle-num,
.nivel-circle--deportes.active .nivel-circle-num { color: var(--negro); }

.nivel-circle-num {
    font-family: var(--fuente-h);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--naranja);
    transition: color 0.28s;
}

.nivel-circle-name {
    font-family: var(--fuente-h);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--negro);
    line-height: 1;
    transition: color 0.28s;
}

.nivel-circle-age {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--gris);
    transition: color 0.28s;
    text-align: center;
    padding: 0 10px;
}

.nivel-circle.active .nivel-circle-num,
.nivel-circle.active .nivel-circle-name,
.nivel-circle.active .nivel-circle-age {
    color: var(--negro);
}

/* Numeritos de detalle para Cambridge y Deportes */
.nivel-numero--cambridge { color: #3b82f6; }
.nivel-numero--deportes  { color: #22c55e; }

.nivel-hint {
    text-align: center;
    font-size: 0.74rem;
    color: var(--gris);
    letter-spacing: 0.04em;
    margin-bottom: 52px;
    transition: opacity 0.4s;
}

/* ── Panel de detalle ── */
.nivel-detail-wrap {
    position: relative;
}

.nivel-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.38s ease, transform 0.38s ease;
}

.nivel-detail.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nivel-detail-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ── Lado foto (reutiliza estilos existentes) ── */
.nivel-foto-side {
    position: relative;
}

.nivel-foto-frame {
    position: relative;
    padding: 20px 0 20px 20px;
}

/* Esquinas decorativas — corchete superior izquierdo */
.nivel-foto-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    border-top: 2px solid var(--naranja);
    border-left: 2px solid var(--naranja);
}

/* Esquina decorativa — corchete inferior derecho */
.nivel-foto-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52px;
    height: 52px;
    border-bottom: 2px solid var(--naranja);
    border-right: 2px solid var(--naranja);
}

/* Variante para fila invertida (foto a la derecha): corchetes espejados */
.nivel-foto-frame--right {
    padding: 20px 20px 20px 0;
}

.nivel-foto-frame--right::before {
    left: auto;
    right: 0;
    border-left: none;
    border-right: 2px solid var(--naranja);
}

.nivel-foto-frame--right::after {
    right: auto;
    left: 0;
    border-right: none;
    border-left: 2px solid var(--naranja);
}

.nivel-foto-wrap {
    border-radius: var(--radio-l);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.nivel-foto-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.nivel-foto-wrap:hover img {
    transform: scale(1.04);
}

.nivel-numero {
    display: block;
    font-family: var(--fuente-h);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--naranja-light);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    user-select: none;
}

.nivel-age {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--naranja);
    background: var(--naranja-light);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.nivel-titulo {
    font-family: var(--fuente-h);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--negro);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.nivel-desc {
    font-size: 0.95rem;
    color: var(--gris);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 46ch;
}

.nivel-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--gris-borde);
    margin-bottom: 32px;
    width: 100%;
}

.nivel-details li {
    font-size: 0.875rem;
    color: var(--negro);
    display: flex;
    align-items: center;
    gap: 10px;
}

.di {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--naranja);
}

.di svg { display: block; }

/* 9. ORBITAL TIMELINE — Por qué elegirnos */
.orbital-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ── Escenario ── */
.orbital-stage {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
}

.orbital-scene {
    position: absolute;
    inset: 0;
    overflow: visible;
    cursor: default;
}

/* Anillo orbital */
.orbital-ring {
    position: absolute;
    left: 50%; top: 50%;
    width: 400px; height: 400px;
    margin-left: -200px; margin-top: -200px;
    border-radius: 50%;
    border: 1px solid rgba(245,160,0,0.18);
    pointer-events: none;
}

/* Segunda línea de anillo decorativo interior */
.orbital-ring::after {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    border: 1px dashed rgba(245,160,0,0.07);
}

/* Centro pulsante */
.orbital-center-group {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.orbital-pulse {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245,160,0,0.3);
    width: 72px; height: 72px;
    animation: oPulse 2.6s ease-out infinite;
}
.orbital-pulse--2 {
    width: 112px; height: 112px;
    border-color: rgba(245,160,0,0.12);
    animation-delay: 1s;
}

@keyframes oPulse {
    0%  { opacity: 1; transform: scale(0.65); }
    100%{ opacity: 0; transform: scale(1.3); }
}

.orbital-core {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--naranja) 0%, var(--naranja-dark) 100%);
    box-shadow: 0 0 28px rgba(245,160,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-core::after {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
}

/* ── Nodos ── */
.orbital-node {
    position: absolute;
    left: 50%; top: 50%;
    width: 80px; height: 80px;
    margin-left: -40px; margin-top: -40px;
    border-radius: 50%;
    border: 1.5px solid rgba(245,160,0,0.38);
    background: rgba(20,20,20,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
    will-change: transform, opacity;
}

.orbital-node:hover {
    border-color: var(--naranja);
    background: rgba(245,160,0,0.14);
    box-shadow: 0 0 18px rgba(245,160,0,0.3);
}

.orbital-node.active {
    border-color: var(--naranja);
    background: var(--naranja);
    box-shadow: 0 0 36px rgba(245,160,0,0.6);
}

.orbital-node svg {
    stroke: rgba(245,160,0,0.85);
    transition: stroke 0.22s;
    pointer-events: none;
    width: 36px;
    height: 36px;
}

.orbital-node.active svg { stroke: var(--negro); }

.orbital-node-label {
    position: absolute;
    top: 86px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--fuente-h);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    user-select: none;
    transition: color 0.22s;
}

.orbital-node:hover .orbital-node-label,
.orbital-node.active .orbital-node-label { color: var(--naranja); }

/* ── Card flotante central ── */
.orbital-panel {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) scale(0.88);
    width: 266px;
    background: rgba(16,16,16,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245,160,0,0.35);
    border-radius: 18px;
    padding: 22px 22px 20px;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.orbital-panel.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.orbital-panel-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,0.55);
    transition: background 0.2s, color 0.2s;
    padding: 0;
}

.orbital-panel-close:hover {
    background: rgba(245,160,0,0.2);
    color: var(--naranja);
}

.orbital-panel-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(245,160,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.orbital-panel-icon svg { stroke: var(--naranja); display: block; }

.orbital-panel-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(245,160,0,0.6);
}

.orbital-panel-title {
    font-family: var(--fuente-h);
    font-size: 1rem;
    font-weight: 800;
    color: var(--blanco);
    line-height: 1.2;
    padding-right: 18px;
}

.orbital-panel-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
}

/* Hint debajo del diagrama */
.orbital-hint {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
    text-align: center;
    transition: opacity 0.4s;
    user-select: none;
}

.orbital-hint.is-hidden { opacity: 0; }

/* 10. ADMISIONES */
.admisiones-foto-bg {
    background: var(--negro) url('../assets/foto-hero.jpg') center 30% / cover no-repeat;
    position: relative;
}

.admisiones-foto-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 85% 15%, rgba(245,160,0,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 5% 85%, rgba(245,160,0,0.08) 0%, transparent 55%);
    pointer-events: none;
}

.admisiones-foto-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.90) 100%);
    pointer-events: none;
}

.admisiones-foto-bg .container {
    position: relative;
    z-index: 1;
}

.admisiones-foto-bg .sec-tag {
    color: var(--naranja);
    border-color: rgba(245,160,0,0.35);
    background: rgba(245,160,0,0.12);
}

.admisiones-foto-bg .sec-title,
.admisiones-foto-bg .sec-sub {
    color: #fff;
}

.admisiones-foto-bg .sec-sub {
    color: rgba(255,255,255,0.7);
}

.admisiones-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.admisiones-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 40px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 52px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--naranja), var(--naranja-light));
}

.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--naranja);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fuente-h);
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(245,160,0,0.35);
    position: relative;
    z-index: 1;
}

.step-body h4 {
    font-family: var(--fuente-h);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 12px;
}

.step-body p {
    font-size: 0.92rem;
    color: var(--gris);
    line-height: 1.7;
}

.step-body strong {
    color: var(--negro);
}

.admisiones-foto-bg .step-body h4 {
    color: #fff;
}

.admisiones-foto-bg .step-body p {
    color: rgba(255,255,255,0.65);
}

.admisiones-foto-bg .step-body strong {
    color: rgba(255,255,255,0.9);
}

.admisiones-foto-bg .step:not(:last-child)::after {
    background: linear-gradient(to bottom, var(--naranja), rgba(245,160,0,0.25));
}

.admisiones-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 88px;
}

.aranceles-card {
    background: var(--gris-claro);
    border-radius: var(--radio-l);
    padding: 28px;
    border: 1px solid var(--gris-borde);
}

.admisiones-foto-bg .aranceles-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.admisiones-foto-bg .aranceles-card h4 {
    color: #fff;
}

.admisiones-foto-bg .arancel-row {
    border-bottom-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
}

.admisiones-foto-bg .beca-box {
    background: rgba(245,160,0,0.15);
    border-color: rgba(245,160,0,0.4);
}

.admisiones-foto-bg .beca-box p {
    color: rgba(255,255,255,0.8);
}

.admisiones-foto-bg .beca-box strong {
    color: #fff;
}

.aranceles-card h4 {
    font-family: var(--fuente-h);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--negro);
}

.arancel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gris-borde);
    font-size: 0.9rem;
}

.arancel-row:last-of-type { border-bottom: none; }

.arancel-val {
    font-family: var(--fuente-h);
    font-weight: 800;
    color: var(--naranja);
    font-size: 1rem;
}

.beca-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--naranja-light);
    border: 1px solid rgba(245,160,0,0.3);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 16px;
}

.beca-ico {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beca-ico svg { stroke: var(--naranja-dark); display: block; }

.beca-box p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--negro);
}

/* 10B. PRE-INSCRIPCIÓN FORM */
.preinscripcion-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radio-l);
    padding: 22px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pinsc-title {
    font-family: var(--fuente-h);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pinsc-title svg { stroke: var(--naranja); flex-shrink: 0; }

.pinsc-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
    line-height: 1.4;
}

.pinsc-form { display: flex; flex-direction: column; gap: 11px; }

.pinsc-field { display: flex; flex-direction: column; gap: 5px; }

.pinsc-field label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.03em;
}

.pinsc-field input,
.pinsc-field select {
    height: 40px;
    padding: 0 12px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-family: var(--fuente-b);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.pinsc-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
    cursor: pointer;
}

.pinsc-field select option { background: var(--negro); color: #fff; }

.pinsc-field input::placeholder { color: rgba(255,255,255,0.28); }
.pinsc-field input:focus,
.pinsc-field select:focus { border-color: var(--naranja); background: rgba(255,255,255,0.10); }

.pinsc-error {
    font-size: 0.78rem;
    color: #ff6b6b;
    min-height: 1em;
    margin-top: -2px;
}

.pinsc-submit { position: relative; margin-top: 2px; }

.pinsc-btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: var(--negro);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    position: absolute;
}

.pinsc-submit.is-loading .pinsc-btn-text { opacity: 0; }
.pinsc-submit.is-loading .pinsc-btn-spinner { display: flex; }

.pinsc-success { text-align: center; padding: 8px 0 4px; }

.pinsc-success-icon {
    width: 52px;
    height: 52px;
    background: rgba(34,197,94,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.pinsc-success-icon svg { stroke: #22c55e; }

.pinsc-success-msg {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
    line-height: 1.6;
}

.pinsc-success-msg strong { color: #fff; }

/* 11. EXTRACURRICULARES */
.extra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.extra-card {
    background: var(--blanco);
    border-radius: var(--radio-l);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--gris-borde);
    transition: all var(--transition);
}

.extra-card:hover {
    border-color: var(--naranja);
    box-shadow: var(--sombra-m);
    transform: translateY(-3px);
}

.extra-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--naranja-light);
    border-radius: 14px;
    margin: 0 auto 18px;
}

.extra-icon svg {
    stroke: var(--naranja);
    display: block;
}

.extra-card h4 {
    font-family: var(--fuente-h);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--negro);
}

.extra-card p {
    font-size: 0.85rem;
    color: var(--gris);
    line-height: 1.6;
}

/* 12. NOVEDADES */
.novedades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.novedad-card {
    background: var(--blanco);
    border: 1px solid var(--gris-borde);
    border-radius: var(--radio-l);
    padding: 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.novedad-card:hover {
    box-shadow: var(--sombra-m);
    transform: translateY(-3px);
    border-color: var(--naranja);
}

.novedad-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--naranja);
    background: var(--naranja-light);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
    width: fit-content;
}

.novedad-fecha {
    font-size: 0.8rem;
    color: var(--gris);
    margin-bottom: 12px;
}

.novedad-card h4 {
    font-family: var(--fuente-h);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--negro);
    flex: 1;
}

.novedad-card p {
    font-size: 0.87rem;
    color: var(--gris);
    line-height: 1.6;
    margin-bottom: 18px;
}

.novedad-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--naranja);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.novedad-cta:hover { gap: 8px; opacity: 1; }

/* Footer de novedades */
.novedades-footer {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.novedades-footer p {
    font-size: 0.9rem;
    color: var(--gris);
}

.novedades-ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
}

/* 13. TESTIMONIOS — marquee infinito */
@keyframes testimonios-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.testimonios-marquee-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 56px;
    padding: 12px 0 24px;
}

/* Fade lateral izquierdo */
.testimonios-marquee-wrap::before {
    content: '';
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 100px;
    background: linear-gradient(to right, #F2F2F2 30%, transparent);
    z-index: 2;
    pointer-events: none;
}

/* Fade lateral derecho */
.testimonios-marquee-wrap::after {
    content: '';
    position: absolute;
    inset-block: 0;
    right: 0;
    width: 100px;
    background: linear-gradient(to left, #F2F2F2 30%, transparent);
    z-index: 2;
    pointer-events: none;
}

.testimonios-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testimonios-marquee 32s linear infinite;
}

.testimonios-marquee-track:hover {
    animation-play-state: paused;
}

.testimonio-card {
    width: 340px;
    flex-shrink: 0;
    background: var(--blanco);
    border: 1px solid var(--gris-borde);
    border-radius: 20px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonio-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}

.testimonio-comilla {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.6;
    color: var(--naranja);
    font-weight: 900;
    opacity: 0.25;
    position: absolute;
    top: 24px;
    left: 28px;
    user-select: none;
}

.testimonio-texto {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #3a3a3a;
    padding-top: 28px;
    flex: 1;
    font-style: italic;
}

.testimonio-firma {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
    border-top: 1px solid var(--gris-borde);
}

.testimonio-foto {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid var(--naranja-light);
    flex-shrink: 0;
}

.testimonio-nombre {
    display: block;
    font-family: var(--fuente-h);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--negro);
}

.testimonio-nivel {
    display: block;
    font-size: 0.75rem;
    color: var(--gris);
    margin-top: 2px;
}

/* 14. CONTACTO */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacto-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,160,0,0.12);
    border-radius: 10px;
}

.c-icon svg {
    stroke: var(--naranja);
    display: block;
}

.contacto-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--naranja);
    margin-bottom: 2px;
    letter-spacing: 0.03em;
}

.contacto-item p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
}

.c-link {
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}
.c-link:hover { color: var(--naranja); }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.12);
}

.social-btn:hover {
    background: var(--naranja);
    color: var(--blanco);
    border-color: var(--naranja);
    transform: translateY(-2px);
}

.mapa-wrap {
    height: 100%;
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
}

.mapa-placeholder {
    height: 100%;
    min-height: 340px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radio-l);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 32px;
}

.mapa-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(245,160,0,0.12);
    border-radius: 50%;
}

.mapa-pin svg { stroke: var(--naranja); display: block; }

.mapa-placeholder p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.5;
}

/* 14. PAGOS */
.pagos-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--blanco);
    border: 1.5px solid var(--gris-borde);
    border-radius: var(--radio-l);
    padding: 48px 44px;
    box-shadow: var(--sombra-l);
}

/* ── Pasos ── */
.pagos-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 44px;
}

.pagos-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pagos-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gris-borde);
    background: var(--blanco);
    color: var(--gris);
    font-family: var(--fuente-h);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagos-step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gris);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.pagos-step--active .pagos-step-num {
    border-color: var(--naranja);
    background: var(--naranja);
    color: var(--negro);
}

.pagos-step--active .pagos-step-label { color: var(--negro); }

.pagos-step--done .pagos-step-num {
    border-color: var(--naranja);
    background: var(--naranja-light);
    color: var(--naranja-dark);
}

.pagos-step-line {
    flex: 1;
    height: 2px;
    background: var(--gris-borde);
    margin: 0 12px;
    margin-bottom: 22px;
    transition: background 0.4s;
    min-width: 40px;
}

.pagos-step-line--done { background: var(--naranja); }

/* ── Panels ── */
.pagos-panel { animation: pagosIn 0.35s ease; }
.pagos-panel--hidden { display: none; }

@keyframes pagosIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pagos-panel-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--naranja-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pagos-panel-icon svg { stroke: var(--naranja); }

.pagos-panel-title {
    font-family: var(--fuente-h);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--negro);
    text-align: center;
    margin-bottom: 8px;
}

.pagos-panel-sub {
    font-size: 0.9rem;
    color: var(--gris);
    text-align: center;
    max-width: 36ch;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* ── Input DNI ── */
.pagos-input-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.pagos-input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid var(--gris-borde);
    border-radius: var(--radio);
    font-family: var(--fuente-b);
    font-size: 1rem;
    color: var(--negro);
    outline: none;
    transition: border-color 0.2s;
}

.pagos-input:focus { border-color: var(--naranja); }

.pagos-btn-consultar {
    height: 48px;
    padding: 0 24px;
    white-space: nowrap;
    position: relative;
    min-width: 120px;
}

.pagos-btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: var(--negro);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    position: absolute;
}

@keyframes spin { to { transform: rotate(360deg); } }

.pagos-btn-consultar.is-loading .pagos-btn-text { opacity: 0; }
.pagos-btn-consultar.is-loading .pagos-btn-spinner { display: flex; }

.pagos-error {
    font-size: 0.82rem;
    color: #C0392B;
    min-height: 1.2em;
    text-align: center;
}

.pagos-seguridad {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--gris);
    margin-top: 16px;
}

.pagos-seguridad svg { stroke: var(--gris); flex-shrink: 0; }

/* ── Panel 2: cuotas ── */
.pagos-familia-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--gris-claro);
    border-radius: var(--radio);
    margin-bottom: 20px;
    gap: 12px;
}

.pagos-familia-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pagos-familia-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gris);
}

.pagos-familia-info strong {
    font-family: var(--fuente-h);
    font-size: 1rem;
    font-weight: 800;
    color: var(--negro);
}

.pagos-alumno-sub {
    font-size: 0.8rem;
    color: var(--gris);
}

.pagos-badge-deuda {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C0392B;
    background: #FDECEA;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pagos-cuotas-lista {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    border: 1.5px solid var(--gris-borde);
    border-radius: var(--radio);
    overflow: hidden;
}

.pagos-cuota-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-bottom: 1px solid var(--gris-borde);
    transition: background 0.15s;
}

.pagos-cuota-item:last-child { border-bottom: none; }
.pagos-cuota-item:hover { background: var(--gris-claro); }

.pagos-cuota-mes {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--negro);
}

.pagos-cuota-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pagos-cuota-monto {
    font-family: var(--fuente-h);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--negro);
}

.pagos-cuota-estado {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
}

.pagos-cuota-estado--adeudada {
    color: #C0392B;
    background: #FDECEA;
}

.pagos-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 2px solid var(--negro);
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--negro);
}

.pagos-total-row strong {
    font-family: var(--fuente-h);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--negro);
}

.pagos-btn-pagar {
    width: 100%;
    height: 52px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.pagos-volver {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gris);
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s;
    background: none;
    border: none;
    font-family: inherit;
}

.pagos-volver:hover { color: var(--negro); }

/* ── Panel 3: éxito ── */
.pagos-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #EAF7EE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pagos-success-icon svg { stroke: #27AE60; }

.pagos-mp-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px;
    border: 1.5px dashed var(--gris-borde);
    border-radius: var(--radio);
    margin: 20px 0 28px;
    font-size: 0.82rem;
    color: var(--gris);
}

.pagos-mp-logo {
    font-size: 1rem;
    font-weight: 700;
    color: #009EE3;
}

.pagos-btn-reiniciar { width: 100%; }

/* ── Aviso demo ── */
.pagos-demo-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--gris);
}

.pagos-demo-notice svg { stroke: var(--gris); flex-shrink: 0; }

/* 15. FOOTER */
.footer {
    background: #0F0F0F;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    background: #fff;
    border-radius: 12px;
    padding: 6px 14px;
    display: block;
    transition: opacity 0.2s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 0.88;
}

.footer-text {
    flex: 1;
}

.footer-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-slogan {
    font-size: 0.8rem !important;
    color: rgba(255,255,255,0.3) !important;
    margin-top: 3px;
    font-style: italic;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}

.footer-nav a:hover { color: var(--naranja); }

/* 15. WHATSAPP WIDGET */
.whatsapp-widget {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 14px 20px;
    font-family: var(--fuente-b);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37,211,102,0.38);
    transition: all var(--transition);
    white-space: nowrap;
}

.whatsapp-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.50);
    background: #20ba59;
}

.whatsapp-widget:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 16px;
        left: 16px;
        padding: 14px;
        border-radius: 50%;
    }
    .whatsapp-label { display: none; }
}

/* 15B. CHAT WIDGET — AUGUSTO (estilo premium) */
.augusto-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.augusto-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--negro), var(--negro-soft));
    color: var(--blanco);
    border: none;
    border-radius: 50px;
    padding: 14px 20px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(26,26,26,0.45);
    font-family: var(--fuente-b);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
}

.augusto-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26,26,26,0.55);
}

.augusto-btn-avatar {
    width: 36px;
    height: 36px;
    background: var(--naranja-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--negro);
    flex-shrink: 0;
    overflow: hidden;
}

.augusto-btn-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.augusto-btn-dot {
    width: 9px;
    height: 9px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--negro);
    position: absolute;
    bottom: 14px;
    right: calc(100% - 42px);
}

.augusto-modal {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 380px;
    max-height: min(580px, calc(100vh - 110px));
    background: var(--blanco);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26,26,26,0.28);
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9998;
}

.augusto-modal.open { display: flex; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.augusto-header {
    background: linear-gradient(135deg, var(--negro), var(--negro-soft));
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--naranja);
    flex-shrink: 0;
}

.augusto-header-avatar {
    width: 40px;
    height: 40px;
    background: var(--naranja-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fuente-h);
    font-weight: 700;
    color: var(--negro);
    font-size: 0.9rem;
    flex-shrink: 0;
    overflow: hidden;
}

.augusto-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.augusto-header-info { flex: 1; }

.augusto-header-name {
    color: var(--blanco);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--fuente-h);
    display: block;
}

.augusto-header-status {
    color: rgba(255,255,255,0.65);
    font-size: 0.73rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.augusto-header-status::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
}

.augusto-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color var(--transition);
    line-height: 0;
}

.augusto-close:hover { color: var(--blanco); }

.augusto-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--negro);
}

.augusto-messages::-webkit-scrollbar { width: 4px; }
.augusto-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

.msg { display: flex; gap: 8px; align-items: flex-end; }
.msg.user { flex-direction: row-reverse; }

.msg-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.msg.augusto .msg-bubble {
    background: #D4D4D4;
    color: var(--negro);
    border-radius: 16px 16px 16px 4px;
}

.msg.user .msg-bubble {
    background: var(--naranja);
    color: var(--negro);
    font-weight: 500;
    border-radius: 16px 16px 4px 16px;
}

.msg-avatar {
    width: 28px;
    height: 28px;
    background: var(--naranja-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--negro);
    flex-shrink: 0;
    overflow: hidden;
}

.msg-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.msg-avatar--user {
    background: var(--negro-soft);
    color: rgba(255,255,255,0.6);
}

.augusto-typing { display: none; align-items: flex-end; gap: 8px; }
.augusto-typing.show { display: flex; }

.typing-bubble {
    background: var(--negro-soft);
    padding: 10px 14px;
    border-radius: 16px 16px 16px 4px;
}

.typing-dots { display: flex; gap: 4px; }
.typing-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
    animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

.augusto-input-area {
    padding: 14px 16px;
    background: var(--negro-soft);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.augusto-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    font-family: var(--fuente-b);
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition);
    background: rgba(255,255,255,0.07);
    color: var(--blanco);
}

.augusto-input::placeholder { color: rgba(255,255,255,0.35); }
.augusto-input:focus { border-color: var(--naranja); }

.augusto-send {
    width: 38px;
    height: 38px;
    background: var(--naranja);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.augusto-send:hover { background: var(--naranja-dark); transform: scale(1.08); }
.augusto-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* 11B. GALERÍA */
.galeria-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 12px;
}

.galeria-item--tall {
    grid-row: 1 / 3;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--gris-claro);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.galeria-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 18px 18px;
    background: linear-gradient(to top, rgba(26,26,26,0.82) 0%, transparent 100%);
    font-family: var(--fuente-b);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blanco);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
}

.galeria-item:hover .galeria-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .galeria-item--tall {
        grid-row: auto;
        grid-column: 1 / 3;
    }
    .galeria-caption { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 220px);
    }
    .galeria-item--tall { grid-column: auto; }
}

/* 15B. HERO WATERMARK + EYEBROW */
.hero-watermark {
    position: absolute;
    bottom: 40px;
    right: -10px;
    font-family: var(--fuente-h);
    font-size: clamp(80px, 16vw, 200px);
    font-weight: 900;
    color: rgba(255,255,255,0.028);
    letter-spacing: -0.03em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

.hero-marca {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin-bottom: 36px;
}

.hero-marca-sup {
    font-family: var(--fuente-h);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.65);
}

.hero-marca-nombre {
    font-family: var(--fuente-h);
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--naranja);
    line-height: 1;
}

.hero-eyebrow {
    font-family: var(--fuente-b);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--naranja);
    margin-bottom: 20px;
    animation: fadeUp 0.7s 0.1s ease both;
}

/* 15C. MANIFIESTO */
.manifiesto {
    background: var(--negro-soft);
    border-top: 3px solid var(--naranja);
    border-bottom: 3px solid var(--naranja);
    padding: 72px 0;
}

.manifiesto-text {
    font-family: var(--fuente-h);
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    quotes: none;
}

.manifiesto-text strong {
    color: var(--naranja);
    font-weight: 800;
}

.manifiesto-firma {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.manifiesto-linea {
    width: 40px;
    height: 2px;
    background: var(--naranja);
    border-radius: 2px;
}

.manifiesto-firma span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* 15D. EXTRA LIST (reemplaza extra-grid) */
.extra-list {
    display: flex;
    flex-direction: column;
}

.extra-item {
    display: grid;
    grid-template-columns: 40px 44px 1fr auto;
    gap: 0 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--gris-borde);
    transition: all var(--transition);
}

.extra-item:first-child {
    border-top: 1px solid var(--gris-borde);
}

.extra-item:hover .extra-info h4 {
    color: var(--naranja);
}

.extra-num {
    font-family: var(--fuente-h);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--gris);
}

.extra-item .extra-icon {
    width: 44px;
    height: 44px;
    margin: 0;
    background: var(--naranja-light);
    border-radius: 10px;
    flex-shrink: 0;
}

.extra-info h4 {
    font-family: var(--fuente-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--negro);
    margin-bottom: 4px;
    transition: color var(--transition);
}

.extra-info p {
    font-size: 0.88rem;
    color: var(--gris);
    line-height: 1.55;
    margin: 0;
}

.extra-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gris);
    border: 1px solid var(--gris-borde);
    padding: 5px 12px;
    border-radius: 100px;
    white-space: nowrap;
    background: var(--blanco);
}

/* FONDOS ANIMADOS */

/* Base: section--dark necesita position relative para los efectos */
.section--dark {
    position: relative;
    overflow: hidden;
}

/* Canvas partículas — Extracurriculares */
.section-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section--dark .container {
    position: relative;
    z-index: 1;
}

/* Smoke orbs — Contacto */
.smoke-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.smoke-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
}

.smoke-orb--1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(245,160,0,0.45) 0%, transparent 65%);
    top: -180px;
    left: -120px;
}

.smoke-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(160,160,160,0.28) 0%, transparent 65%);
    bottom: -120px;
    right: -80px;
}

.smoke-orb--3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245,160,0,0.25) 0%, transparent 65%);
    top: calc(40% - 190px);
    left: calc(50% - 190px);
}

/* OVERRIDES FONDOS OSCUROS */

/* Extracurriculares sobre --negro-soft */
.section--dark .extra-item {
    border-bottom-color: rgba(255,255,255,0.08);
}

.section--dark .extra-item:first-child {
    border-top-color: rgba(255,255,255,0.08);
}

.section--dark .extra-num {
    color: rgba(255,255,255,0.3);
}

.section--dark .extra-item .extra-icon {
    background: rgba(245,160,0,0.15);
}

.section--dark .extra-info h4 {
    color: #fff;
}

.section--dark .extra-info p {
    color: rgba(255,255,255,0.55);
}

.section--dark .extra-tag {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
}

.section--dark .extra-item:hover .extra-info h4 {
    color: var(--naranja);
}

/* Pagos sobre --negro */
.section--negro .pagos-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section--negro .pagos-step-num {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.12);
}

.section--negro .pagos-step--active .pagos-step-num {
    background: var(--naranja);
    color: #fff;
    border-color: var(--naranja);
}

.section--negro .pagos-step--done .pagos-step-num {
    background: rgba(245,160,0,0.2);
    color: var(--naranja);
    border-color: rgba(245,160,0,0.4);
}

.section--negro .pagos-step-label {
    color: rgba(255,255,255,0.4);
}

.section--negro .pagos-step--active .pagos-step-label {
    color: #fff;
}

.section--negro .pagos-step-line {
    background: rgba(255,255,255,0.1);
}

.section--negro .pagos-step-line--done {
    background: var(--naranja);
}

.section--negro .pagos-panel h3 {
    color: #fff;
}

.section--negro .pagos-panel p {
    color: rgba(255,255,255,0.6);
}

.section--negro .pagos-input {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}

.section--negro .pagos-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.section--negro .pagos-input:focus {
    border-color: var(--naranja);
    background: rgba(255,255,255,0.09);
}

.section--negro #pagosError {
    color: #ff6b6b;
}

.section--negro .pagos-familia-nombre {
    color: #fff;
}

.section--negro .pagos-alumno-nombre {
    color: rgba(255,255,255,0.6);
}

.section--negro .pagos-cuota-item {
    border-bottom-color: rgba(255,255,255,0.08);
}

.section--negro .pagos-cuota-mes {
    color: rgba(255,255,255,0.7);
}

.section--negro .pagos-total-row {
    border-top-color: rgba(255,255,255,0.1);
    color: #fff;
}

/* 16. ANIMACIONES */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 17. RESPONSIVE */
@media (max-width: 1024px) {
    .orbital-stage { max-width: 480px; }
    .admisiones-layout { grid-template-columns: 1fr; }
    .admisiones-aside  { position: static; }
    .extra-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }

    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0; right: 0;
        background: var(--blanco);
        border-bottom: 1px solid var(--gris-borde);
        padding: 16px 24px 24px;
        gap: 4px;
        box-shadow: var(--sombra-m);
    }

    .nav-links.open .nav-link {
        padding: 10px 12px;
        border-radius: 8px;
    }

    .hero-content { align-items: center; text-align: center; padding-top: 130px; width: 100%; max-width: 100%; }
    .hero-logo-wrap { align-items: center; }
    .hero-logo-wrap::after { margin: 24px auto 0; }
    .hero-title  { font-size: 2rem; }
    .hero-sub    { font-size: 0.95rem; text-align: center; }
    .hero-btns   { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
    .hero-btns .btn { text-align: center; }
    .hero-stats  { gap: 0; flex-wrap: wrap; }
    .stat-item   { padding: 12px 16px; flex: 1 1 45%; min-width: 0; }
    .stat-num    { font-size: 1.6rem; }
    .stat-item:last-child .stat-num { font-size: 1.1rem; }
    .stat-sep    { display: none; }
    .augusto-modal { width: calc(100vw - 24px); right: 12px; left: 12px; bottom: 12px; border-radius: 20px; max-height: 62vh; }
    .augusto-widget { right: 12px; bottom: 12px; }
    .pagos-card { padding: 28px 18px; }
    .pagos-input-row { flex-direction: column; gap: 10px; }
    .pagos-btn-consultar { width: 100%; justify-content: center; }
    .section, .section--negro, .section--dark, .section--subtle { overflow-x: hidden; }

    /* Niveles circular: mobile */
    .nivel-circles-row  { gap: 24px; flex-direction: column; }
    .nivel-group-sep    { width: 80px; height: 1px; background: linear-gradient(to right, transparent, var(--gris-borde) 30%, var(--gris-borde) 70%, transparent); }
    .nivel-group-circles { gap: 16px; }
    .nivel-circle       { width: 110px; height: 110px; }
    .nivel-circle-name  { font-size: 0.82rem; }
    .nivel-circle-age   { font-size: 0.58rem; }
    .nivel-detail       { grid-template-columns: 1fr; gap: 28px; }
    .nivel-foto-frame   { padding: 14px 0 14px 14px; }
    .nivel-numero       { font-size: 3.5rem; }
    .nivel-titulo       { font-size: 1.6rem; }
    .orbital-stage      { max-width: 340px; }
    .orbital-ring       { width: 300px; height: 300px; margin-left: -150px; margin-top: -150px; }
    .orbital-panel      { width: 230px; }
    .orbital-panel-desc { display: none; }
    .novedades-grid { grid-template-columns: 1fr; }
    .testimonios-marquee-wrap::before,
    .testimonios-marquee-wrap::after { width: 60px; }
    .testimonio-card { width: 280px; padding: 28px 22px 22px; }
    .contacto-grid  { grid-template-columns: 1fr; }
    .extra-item     { grid-template-columns: 40px 44px 1fr; }
    .extra-tag      { display: none; }
    .sec-header--split { grid-template-columns: 1fr; gap: 16px; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-nav   { justify-content: center; }

    .augusto-modal { width: calc(100vw - 32px); right: 16px; bottom: 85px; max-height: calc(100vh - 110px); }
    .augusto-widget { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .stat-item { padding: 10px 16px; }
    .extra-item { grid-template-columns: 44px 1fr; gap: 0 16px; }
    .extra-num { display: none; }
    .manifiesto-text { font-size: 1.1rem; }
}
