/* ══════════════════════════════════════════════
   01. VARIABLES — DEEP DARK PALETTE
══════════════════════════════════════════════ */
:root {
    --bg: #1C1D20;
    --bg-2: #222227;
    --bg-3: #27272B;
    --bg-4: #2C2C30;
    --surface: #333337;
    --border: rgba(255, 255, 255, 0.08);
    --border-h: rgba(0, 132, 255, 0.35);

    --light-bg: #FFFFFF;
    --light-bg-2: #F8F9FA;
    --light-bg-3: #F2F4F6;
    --light-border: rgba(0, 0, 0, 0.08);
    --light-text: #1C1D20;
    --light-text-2: #4A4A5A;
    --light-text-3: #888899;

    --text: #FFFFFF;
    --text-2: #C1C1C1;
    --text-3: #888899;
    --text-muted: #636376;

    --accent: #0084ff;
    --accent-dim: rgba(0, 132, 255, 0.10);
    --accent-glow: rgba(0, 132, 255, 0.25);
    --accent-dark: #0066cc;

    --ice-blue: #c0e8ff;
    --ice-blue-dark: #3b7a9e;

    --font: 'DM Sans', sans-serif;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 24px;
    --radius-pill: 100px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.2s;
    --t-base: 0.35s;
    --t-slow: 0.65s;

    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-h: 0 16px 60px rgba(0, 0, 0, 0.6);
    --shadow-accent: 0 8px 40px rgba(0, 132, 255, 0.22);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--light-bg);
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.preloading {
    overflow: hidden;
}

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

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

button {
    font-family: var(--font);
    border: 0;
    cursor: pointer;
    background: transparent;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-2);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* ══════════════════════════════════════════════
   03. ANIMATIONS / KEYFRAMES
══════════════════════════════════════════════ */
@keyframes characters {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes spinnerRing {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes preloaderOut-L {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-101%);
    }
}

@keyframes preloaderOut-R {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(101%);
    }
}

@keyframes fadePreloader {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes wcfadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatWord {
    0% {
        transform: translateY(0) translateX(0) rotate(var(--r));
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    100% {
        transform: translateY(var(--dy)) translateX(var(--dx)) rotate(var(--r));
        opacity: 0;
    }
}

@keyframes curtainReveal {
    to {
        clip-path: inset(0 0 0% 0);
    }
}

@keyframes pulseDot {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    40% {
        opacity: 0.18;
    }

    80% {
        transform: scale(1);
        opacity: 0;
    }

    100% {
        transform: scale(0.4);
        opacity: 0;
    }
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes orgFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(0.6);
        opacity: 0;
    }
}

@keyframes stripeSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(80px);
    }
}

@keyframes sheen {
    50% {
        transform: translateY(-3px);
        color: var(--accent);
    }
}

@keyframes cursorPulse {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    to {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes progressBar {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes smokeRise {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 0.85;
    }

    100% {
        transform: translate(var(--sx), var(--sy)) scale(var(--ss)) rotate(var(--sr));
        opacity: 0;
    }
}

@keyframes desc-orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes desc-particle-float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    15% {
        opacity: 0.6;
        transform: translateY(-20px) scale(1);
    }

    85% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-120px) scale(0.3);
    }
}

/* ══════════════════════════════════════════════
   05. CURSOR PERSONALIZADO REMOVED
   ══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   06. PROGRESS BAR
══════════════════════════════════════════════ */
.progress-bar-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
    transform-origin: left center;
}

/* ══════════════════════════════════════════════
   07. TOOLTIP
══════════════════════════════════════════════ */
#tip {
    position: fixed;
    z-index: 9997;
    background: var(--bg-3);
    color: var(--text-2);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    max-width: 240px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
    white-space: pre-line;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#tip.on {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   08. NAVBAR
══════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
}

#navbar.scrolled {
    background: rgba(28, 29, 32, 0.90);
    backdrop-filter: blur(18px);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    position: relative;
}

.nav-logo-wrap {
    flex-shrink: 0;
}

.nav-logo {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}

.nav-logo:hover {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
    transition: left 0.55s var(--ease), transform 0.55s var(--ease),
        background 0.4s var(--ease), border-color 0.4s var(--ease),
        padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
    background: transparent;
    border: 1px solid transparent;
    padding: 6px 8px;
    border-radius: var(--radius-pill);
}

#navbar.scrolled .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(28, 29, 32, 0.85);
    border-color: var(--border);
    padding: 6px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}

.nav-link:hover {
    background: var(--accent-dim);
    color: var(--accent);
}

.nav-arrow {
    display: inline-block;
    transition: transform var(--t-base) var(--ease);
}

.nav-item.dropdown-open .nav-arrow {
    transform: rotate(180deg);
}

.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 200px;
    background: rgba(28, 29, 32, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 0px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    z-index: 600;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--border);
}

.nav-item.dropdown-open .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    border-radius: var(--radius-sm);
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}

.nav-dropdown a:hover {
    background: var(--accent-dim);
    color: var(--accent);
    padding-left: 20px;
}

.nav-dropdown-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 6px 16px 2px;
    display: block;
}

.nav-divider {
    display: none;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-3);
    z-index: 600;
    padding: 80px 32px 40px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    transition: right 0.35s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-drawer.open {
    right: 0;
}

.nav-drawer .drawer-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-2);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--t-base) var(--ease), padding-left var(--t-base) var(--ease);
}

.nav-drawer .drawer-link:hover {
    color: var(--accent);
    padding-left: 8px;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 599;
}

.nav-overlay.show {
    display: block;
}

/* ══════════════════════════════════════════════
   09. HERO
══════════════════════════════════════════════ */
#hero-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}

#hero-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 132, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 132, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

#hero-wrap::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 132, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.smoke-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: smokeRise linear infinite;
    will-change: transform, opacity;
}

#hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

#hero-words-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Canvas de humo cursor — solo en hero */
#smoke-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hb-word {
    position: absolute;
    font-family: var(--font);
    font-weight: 700;
    white-space: nowrap;
    user-select: none;
    letter-spacing: .04em;
    animation: floatWord linear infinite;
}

#hero {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 28px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(16, 180, 102, 0.2);
    border-radius: var(--radius-pill);
    padding: 7px 18px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.hero-logo {
    max-height: 280px;
    filter: brightness(0) invert(1);
    transition: filter var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}

.hero-logo:hover {
    transform: scale(1.02);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    max-width: 800px;
}

.hero-title .accent-word {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-3);
    max-width: 560px;
    line-height: 1.7;
}

.hero-word {
    display: inline-block;
    clip-path: inset(0 0 100% 0);
    animation: curtainReveal 0.7s cubic-bezier(.77, 0, .18, 1) forwards;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease),
        transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease);
}

.btn-primary:hover {
    background: var(--text);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border: 1.5px solid var(--border);
    color: var(--text-2);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    background: transparent;
    transition: border-color var(--t-base) var(--ease), color var(--t-base) var(--ease),
        background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
    animation: scrollBounce 2.4s ease-in-out infinite;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ══════════════════════════════════════════════
   10. PAGE WRAPPER
══════════════════════════════════════════════ */
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 100px;
}

/* ══════════════════════════════════════════════
   11. SECTION BASE
══════════════════════════════════════════════ */
.section {
    padding: 80px 24px;
    position: relative;
    border-top: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
}

.section>*:not(.sec-bg):not(#bg-olivia) {
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
    position: relative;
    display: block;
}

.section-title .accent {
    color: var(--accent);
}

.section-title::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
    margin-top: 12px;
    transition: width 1s var(--ease);
}

.section-title.line-in::after {
    width: 80px;
}

/* Title Vortex */
.title-vortex-container {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 2;
}

#title-words-canvas {
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    pointer-events: none;
    z-index: 0;
}

.title-vortex-container .section-title,
.title-vortex-container .section-eyebrow {
    position: relative;
    z-index: 1;
}

/* Fondos decorativos */
.sec-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.section>*:not(.sec-bg) {
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════
   12. SECCIONES LIGHT + COLORES POR SECCIÓN
══════════════════════════════════════════════ */
.section-light {
    background: var(--light-bg) !important;
    border-top-color: var(--light-border) !important;
    color: var(--light-text) !important;
}

.section-light .section-title {
    color: var(--light-text) !important;
}

.section-light .section-title .accent {
    color: var(--accent) !important;
}

.section-light .section-eyebrow {
    color: var(--accent) !important;
}

.section-light .section-title::after {
    background: linear-gradient(90deg, var(--accent), transparent) !important;
}

.section-light .desc-text p {
    color: var(--light-text-2) !important;
}

.section-light .desc-text strong {
    color: var(--light-text) !important;
}

/* Descripción: blanco con franja azul arriba */
#descripcion.section-light {
    background: #FFFFFF !important;
    border-top: 3px solid var(--accent) !important;
}

/* Multiplataforma: fondo blanco puro */
#multiplataforma.section-light {
    background: #FFFFFF !important;
    border-top: 1px solid var(--light-border) !important;
}

#multiplataforma.section-light .section-title,
#multiplataforma.section-light .section-title .accent {
    color: var(--light-text) !important;
}

/* RedCom: fondo blanco puro */
#redcom.section-light {
    background: #FFFFFF !important;
    border-top: 1px solid var(--light-border) !important;
}

#redcom.section-light .section-title {
    color: var(--light-text) !important;
}

#redcom.section-light .section-title .accent {
    color: var(--accent) !important;
}

/* Olivia: azul muy pálido (removido para usar celeste fuerte en el módulo #olivia) */

.section-light .olivia-content p {
    color: var(--light-text-2) !important;
}

.section-light .store-btn {
    background: var(--light-bg) !important;
    border: 1.5px solid var(--light-border) !important;
    color: var(--light-text-2) !important;
}

.section-light .store-btn:hover {
    border-color: var(--accent) !important;
    background: var(--accent-dim) !important;
    color: var(--accent) !important;
}

.section-light .store-btn svg {
    fill: var(--light-text-2) !important;
}

.section-light .store-btn:hover svg {
    fill: var(--accent) !important;
}

/* ══════════════════════════════════════════════
   13. DESCRIPCIÓN
══════════════════════════════════════════════ */
#descripcion:not(.section-light) {
    background: var(--bg);
    border-top: none;
}

.desc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.desc-text p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 16px;
}

.desc-text p:last-child {
    margin-bottom: 0;
}

.desc-text strong {
    color: var(--text);
    font-weight: 600;
}

#descripcion .section-title {
    color: var(--text);
}

#descripcion .section-eyebrow {
    color: var(--accent);
}

/* Lado derecho: logo orbital */
.desc-visual-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
}

.desc-logo-main {
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desc-logo-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0, 132, 255, 0.3));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.desc-logo-main:hover img {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 0 60px rgba(0, 132, 255, 0.5));
}

/* Anillos orbitales */
.desc-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.desc-ring-1 {
    width: 280px;
    height: 280px;
    border: 1.5px solid rgba(0, 132, 255, 0.18);
    animation: desc-orbit 8s linear infinite;
}

.desc-ring-2 {
    width: 360px;
    height: 360px;
    border: 1px solid rgba(0, 132, 255, 0.10);
    animation: desc-orbit 14s linear infinite reverse;
}

.desc-ring-3 {
    width: 440px;
    height: 440px;
    border: 1px solid rgba(0, 132, 255, 0.05);
    animation: desc-orbit 20s linear infinite;
}

/* Puntos que orbitan */
.desc-dot-wrap {
    position: absolute;
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: desc-orbit 8s linear infinite;
}

.desc-dot-wrap-2 {
    width: 360px;
    height: 360px;
    animation: desc-orbit 14s linear infinite reverse;
}

.desc-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 132, 255, 0.7);
}

.desc-dot-2 {
    width: 5px;
    height: 5px;
    top: -2.5px;
    background: rgba(0, 132, 255, 0.5);
    box-shadow: 0 0 6px rgba(0, 132, 255, 0.4);
}

/* Partículas flotantes */
.desc-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.desc-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    animation: desc-particle-float linear infinite;
}

/* ══════════════════════════════════════════════
   14. PHOTO CARDS
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   14. ZIGZAG CATEGORY LAYOUT (Finalistas)
══════════════════════════════════════════════ */
.category-items-wrap {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Separación generosa entre finalistas */
    margin-top: 48px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cat-row {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06); /* Borde sutil claro para tema oscuro */
    border-radius: 40px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); /* Sombra para tema oscuro */
    position: relative;
    overflow: hidden;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.cat-row:hover {
    transform: translateY(-6px);
}

#multiplataforma .cat-row {
    background: var(--bg-2); /* Tarjeta oscura */
}

#multiplataforma .cat-row:hover {
    box-shadow: 0 20px 50px rgba(0, 132, 255, 0.12); /* Brillo azul sutil */
}

#redcom .cat-row {
    background: var(--bg-2); /* Tarjeta oscura */
}

#redcom .cat-row:hover {
    box-shadow: 0 20px 50px rgba(90, 120, 155, 0.12); /* Brillo azul mate sutil */
}

/* Patrón de cuadrícula de puntos decorativos neutros de fondo (claros para tema oscuro) */
.cat-row::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
}

.cat-row-reverse {
    grid-template-columns: 1.3fr 1.1fr;
}

.cat-row-reverse .cat-visual {
    order: 2; /* Mueve la imagen al lado derecho en desktop */
}

.cat-row-reverse .cat-info {
    order: 1; /* Mueve el texto al lado izquierdo en desktop */
}

.cat-visual {
    position: relative;
    width: 100%;
    z-index: 2;
}

.cat-info {
    position: relative;
    z-index: 2;
}

.cat-img-wrap {
    width: 100%;
    aspect-ratio: 1.15 / 1; /* Aspect ratio regularizado para emparejar */
    position: relative;
    overflow: visible; /* Permitir ver la forma de fondo desplazada */
    transition: transform var(--t-slow) var(--ease);
}

/* Forma desplazada tipo sombra sólida (estilo Deep) */
.cat-img-wrap::before {
    content: '';
    position: absolute;
    inset: 12px -12px -12px 12px;
    border-radius: inherit;
    z-index: 0;
    transition: transform var(--t-base) var(--ease);
}

#multiplataforma .cat-img-wrap::before {
    background: rgba(0, 132, 255, 0.12);
}

#redcom .cat-img-wrap::before {
    background: rgba(90, 120, 155, 0.15); /* Sombra decorativa azul mate */
}

.cat-img-wrap:hover::before {
    transform: translate(-6px, -6px);
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit; /* Hereda las curvas asimétricas de mask-type */
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: transform 0.8s var(--ease);
}

.cat-img-wrap:hover img {
    transform: scale(1.05);
}

/* Formas asimétricas de las imágenes (estilo portafolio creativo Deep) */
.mask-type-1 {
    border-radius: 80px 20px 100px 30px;
}
.mask-type-2 {
    border-radius: 30px 100px 24px 80px;
}
.mask-type-3 {
    border-radius: 40px 110px 40px 110px;
}
.mask-type-4 {
    border-radius: 110px 30px 90px 40px;
}

.cat-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.cat-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--text); /* Blanco en tema oscuro */
    line-height: 1.2;
    margin: 4px 0 0;
}

.cat-name-sub {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-2); /* Gris claro en tema oscuro */
    margin: -10px 0 0;
}

.cat-media {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.08); /* Fondo translúcido sutil para tema oscuro */
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.cat-work {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2); /* Gris claro en tema oscuro */
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    font-style: italic;
    margin: 8px 0;
}

/* Botón de ver trabajo premium */
.btn-ver-mas-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--accent);
    color: #FFFFFF;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: background var(--t-base) var(--ease),
        transform var(--t-base) var(--ease),
        box-shadow var(--t-base) var(--ease);
}

.btn-ver-mas-new:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 132, 255, 0.35);
}

/* Blobs decorativos de fondo para las categorías */
.category-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
    z-index: 0;
    opacity: 0.35;
}

.category-blob-blue-1 {
    width: 250px;
    height: 250px;
    top: 15%;
    left: -50px;
    background: rgba(255, 255, 255, 0.15);
}

.category-blob-blue-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: -100px;
    background: rgba(255, 255, 255, 0.1);
}

.category-blob-green-1 {
    width: 280px;
    height: 280px;
    top: 20%;
    right: -60px;
    background: rgba(255, 255, 255, 0.08);
}

.category-blob-green-2 {
    width: 240px;
    height: 240px;
    bottom: 10%;
    left: -80px;
    background: rgba(255, 255, 255, 0.05);
}

/* Divisor de candidaturas para dividir la sección visiblemente */
.cat-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 15%, rgba(255, 255, 255, 0.08) 85%, transparent);
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

/* Círculos flotantes decorativos para un estilo Deep premium */
.cat-row::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 1.5px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

#multiplataforma .cat-row::after {
    bottom: 24px;
    right: 32px;
}

#redcom .cat-row::after {
    top: 24px;
    left: 32px;
}

.btn-ver-mas {
    display: block;
    width: 100%;
    padding: 11px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top: 8px;
    transition: color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
    border-width: 1.5px;
    border-style: solid;
}

.btn-ver-mas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
    z-index: -1;
}

.btn-ver-mas:hover::before {
    transform: scaleX(1);
}

.btn-ver-mas:hover {
    border-color: var(--accent);
}

.net-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.stripe-bg {
    position: absolute;
    inset: -100%;
    background: repeating-linear-gradient(-45deg,
            transparent 0px, transparent 28px,
            rgba(0, 132, 255, 0.04) 28px, rgba(0, 132, 255, 0.04) 30px);
    animation: stripeSlide 22s linear infinite;
}

/* ══════════════════════════════════════════════
   15. OLIVIA (Celeste fuerte premium + Mostaza pastel)
══════════════════════════════════════════════ */
#olivia {
    background: #0d3a78 !important; /* Celeste oscuro, elegante y de alta intensidad */
    padding: 140px 24px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

/* ══════════════════════════════════════════════
   15. WAVES & WAVE ANIMATIONS (Parallax Gentle Waves)
   ══════════════════════════════════════════════ */
.wave-top-container,
.wave-bottom-container {
    position: absolute;
    left: 0;
    width: 100%;
    height: 70px;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.wave-top-container {
    top: 0;
}

.wave-bottom-container {
    bottom: 0;
}

.wave-top-container .waves {
    transform: scaleY(-1); /* Invertido para la parte superior */
}

.wave-bottom-container .waves {
    transform: none; /* Normal para la parte inferior */
}

/* ══════════════════════════════════════════════
   15b. FINALISTAS SECTIONS (Full-width blocks like Olivia)
   ══════════════════════════════════════════════ */
.finalista-section {
    padding: 140px 24px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

/* Specific background colors for candidate sections */
.finalista-navy {
    background: #0a1c36 !important; /* Deep dark blue */
}

.finalista-slate {
    background: #132237 !important; /* Elegant dark slate blue */
}

.finalista-matte-blue {
    background: #1a2d42 !important; /* Elegant matte blue (RedCom) */
}

.finalista-dark-charcoal {
    background: #17181c !important; /* Premium dark charcoal slate */
}

.finalista-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Override card-like styling of cat-row inside the full-width blocks */
.finalista-section .cat-row {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    transform: none !important;
}

.finalista-section .cat-row:hover {
    transform: none !important;
    box-shadow: none !important;
}

.finalista-section .cat-row::before,
.finalista-section .cat-row::after {
    display: none !important;
}

.olivia-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.olivia-img-wrap {
    border-radius: 0 100px 0 100px; /* Solo curvas en derecha superior e izquierda inferior */
    overflow: visible; /* Permitir que sobresalga la sombra desplazada */
    position: relative;
    z-index: 2;
    transition: transform var(--t-slow) var(--ease);
}

/* Sombra sólida de fondo color negro (estilo Deep) */
.olivia-img-wrap::before {
    content: '';
    position: absolute;
    inset: 12px -12px -12px 12px;
    background: #1C1D20;
    border-radius: inherit;
    z-index: 0;
    transition: transform var(--t-base) var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.olivia-img-wrap:hover::before {
    transform: translate(-4px, -4px);
}

.olivia-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit; /* Hereda las esquinas curvas 0 100px 0 100px */
    border: 3px solid #1C1D20; /* Bordeado negro */
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Blobs de fondo decorativos */
.olivia-blob-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}

.olivia-blob-blue {
    width: 450px;
    height: 450px;
    top: -120px;
    left: -150px;
    background: rgba(255, 255, 255, 0.22);
}

.olivia-blob-mustard {
    width: 380px;
    height: 380px;
    bottom: -100px;
    right: 15%;
    background: rgba(249, 221, 162, 0.25); /* mostaza pastel muy suave */
}

.olivia-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.olivia-content .section-eyebrow {
    color: #FFEAA7 !important; /* mostaza pastel suave */
}

.olivia-content .section-eyebrow::before {
    background: #FFEAA7 !important;
}

.olivia-content h2.section-title {
    color: #FFFFFF !important;
}

.olivia-content h2.section-title .accent {
    color: #FFEAA7 !important; /* mostaza pastel suave */
    text-shadow: 0 0 15px rgba(255, 234, 167, 0.3);
}

.olivia-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8;
}

.store-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #FFFFFF !important;
    border: none !important;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: #0066cc !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform var(--t-base) var(--ease),
        background var(--t-base) var(--ease),
        color var(--t-base) var(--ease),
        box-shadow var(--t-base) var(--ease);
}

.store-btn:hover {
    background: #F0F7FF !important;
    color: #0044aa !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14) !important;
}

.store-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   16. ORGANIZA — logos grandes, sin recuadros
══════════════════════════════════════════════ */
#organiza {
    background: #FFFFFF !important;
    padding: 15px 24px 10px; /* Reducido para compactar la sección */
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid var(--light-border);
}

.org-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1C1D20 !important;
    letter-spacing: 2px;
    margin-bottom: 12px; /* Reducido de 24px */
    position: relative;
    display: block;
    font-family: var(--font);
    text-align: center;
}

.org-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px; /* Reducido de 80px para evitar espacios excesivos con los logos más grandes */
    flex-wrap: wrap;
    padding: 8px 0; /* Reducido de 16px 0 */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.org-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 4px 0; /* Reducido de 8px */
    transition: transform var(--t-base) var(--ease);
}

.org-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.org-logo-wrap img {
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform var(--t-base) var(--ease-spring), filter var(--t-base) var(--ease);
}

.org-item:hover .org-logo-wrap img {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 12px 28px rgba(0, 132, 255, 0.16));
}

.org-url-inner {
    display: none;
}

.org-particle {
    display: none;
}

/* ══════════════════════════════════════════════
   17. SEPARADOR ANIMADO
══════════════════════════════════════════════ */
.section-divider {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #FFFFFF 30%, rgba(255, 255, 255, 0.5) 50%, #FFFFFF 70%, transparent 100%);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
    transition: width 1.4s var(--ease);
}

.section-divider.div-in {
    width: 95%;
}

/* Wave Footer */
.footer-waves-wrap {
    background-color: #FFFFFF;
    width: 100%;
    height: 70px;
    min-height: 50px;
    margin-bottom: -1px;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.waves {
    position: relative;
    width: 100%;
    height: 70px;
    margin-bottom: -1px;
    min-height: 50px;
}

.parallax>use {
    animation: move-forever calc(var(--wave-speed-scale, 2.5) * 20s) cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: calc(var(--wave-delay-offset, 0s) - 2s);
    animation-duration: calc(var(--wave-speed-scale, 2.5) * 7s);
}

.parallax>use:nth-child(2) {
    animation-delay: calc(var(--wave-delay-offset, 0s) - 3s);
    animation-duration: calc(var(--wave-speed-scale, 2.5) * 10s);
}

.parallax>use:nth-child(3) {
    animation-delay: calc(var(--wave-delay-offset, 0s) - 4s);
    animation-duration: calc(var(--wave-speed-scale, 2.5) * 13s);
}

.parallax>use:nth-child(4) {
    animation-delay: calc(var(--wave-delay-offset, 0s) - 5s);
    animation-duration: calc(var(--wave-speed-scale, 2.5) * 18s);
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* ══════════════════════════════════════════════
   18. FOOTER
══════════════════════════════════════════════ */
footer {
    background: var(--bg);
    border-top: none;
    padding: 48px 32px;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    margin: 0 auto 20px;
    transition: opacity var(--t-base) var(--ease);
}

.footer-logo:hover {
    opacity: 0.7;
}

.footer-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto 20px;
}

footer p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

footer p strong {
    color: var(--text-3);
    font-weight: 500;
}

/* ══════════════════════════════════════════════
   19. SCROLL-TO-TOP
══════════════════════════════════════════════ */
.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 8000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.scroll-top-btn.showed {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--text);
    color: var(--bg);
    box-shadow: 0 8px 30px rgba(0, 132, 255, 0.4);
}

/* ══════════════════════════════════════════════
   20. REVEAL ANIMATION
══════════════════════════════════════════════ */
.rv {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.rv.in {
    opacity: 1;
    transform: translateY(0);
}

.rv.d1 {
    transition-delay: .10s;
}

.rv.d2 {
    transition-delay: .20s;
}

.rv.d3 {
    transition-delay: .30s;
}

.rv.d4 {
    transition-delay: .40s;
}

.rv.d5 {
    transition-delay: .50s;
}

/* ══════════════════════════════════════════════
   21. RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .desc-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .olivia-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .photo-grid-2 {
        grid-template-columns: 1fr;
    }

    .category-items-wrap {
        gap: 40px;
    }

    .cat-row, .cat-row-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
        border-radius: 24px;
    }

    .cat-row-reverse .cat-visual {
        order: 0;
    }

    .cat-row-reverse .cat-info {
        order: 0;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .org-row {
        gap: 24px;
    }

    .org-logo-wrap {
        height: auto !important;
    }

    .org-logo-wrap img {
        height: 80px !important;
        width: auto !important;
        max-height: 80px !important;
        max-width: 240px !important;
    }

    #navbar.scrolled .nav-links {
        position: static;
        transform: none;
    }

    .desc-visual-side {
        min-height: 300px;
    }

    .desc-ring-3 {
        display: none;
    }
}

@media (max-width: 640px) {
    .nav-inner {
        padding: 12px 20px;
    }

    #hero {
        padding: 100px 20px 70px;
    }

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

    .page {
        padding: 0 20px 80px;
    }

    .org-row {
        gap: 16px;
    }

    .org-logo-wrap {
        height: auto !important;
    }

    .org-logo-wrap img {
        height: 60px !important;
        width: auto !important;
        max-height: 60px !important;
        max-width: 180px !important;
    }

    .desc-visual-side {
        min-height: 240px;
    }

    .desc-ring-2,
    .desc-ring-3 {
        display: none;
    }

    .desc-dot-wrap-2 {
        display: none;
    }
}

@media (max-width: 400px) {
    .desc-ring-1 {
        width: 220px;
        height: 220px;
    }

    .desc-dot-wrap {
        width: 220px;
        height: 220px;
    }
}

/* ══════════════════════════════════════════════
   19. SECCIÓN ROSTROS (PÁGINA PRINCIPAL)
   ══════════════════════════════════════════════ */
.rostros-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.rostros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.rostro-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.rostro-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    position: relative;
    background: var(--light-bg-3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}
.rostro-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease);
}
.rostro-card:hover .rostro-img-wrap {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 132, 255, 0.15);
}
.rostro-card:hover .rostro-img-wrap img {
    transform: scale(1.06);
}
.rostro-meta {
    margin-top: 18px;
    text-align: center;
}
.rostro-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 4px;
    line-height: 1.3;
}
.rostro-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Diseño de doble imagen para el equipo Multiplataforma */
.rostro-double-img {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.rostro-half-img {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.rostro-half-img:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.rostro-half-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .rostros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 24px;
    }
}
@media (max-width: 576px) {
    .rostros-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }
}

/* ══════════════════════════════════════════════
   20. SUBPÁGINA GANADORES
   ══════════════════════════════════════════════ */
.ganadores-hero {
    background: #1C1D20;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}
.ganadores-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 132, 255, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 132, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}
.ganadores-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.ganadores-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.15;
}
.ganadores-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-2);
    margin-bottom: 28px;
    line-height: 1.5;
}
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
    box-shadow: 0 8px 30px rgba(0, 132, 255, 0.2);
}
.btn-back-home:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.finalistas-list-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}
.biografia-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}
.biografia-block:last-child {
    margin-bottom: 0;
}
.biografia-block.reverse {
    flex-direction: row-reverse;
}
.biografia-visual {
    flex: 1;
    max-width: 440px;
    position: relative;
}
.biografia-img-wrap {
    width: 100%;
    aspect-ratio: 1.15 / 1;
    overflow: visible;
    position: relative;
}
.biografia-img-wrap::before {
    content: '';
    position: absolute;
    inset: 12px -12px -12px 12px;
    border-radius: inherit;
    z-index: 0;
    background: var(--accent-dim);
    transition: transform var(--t-base) var(--ease);
}
.biografia-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: inherit;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.biografia-info {
    flex: 1.2;
}
.biografia-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--accent-dim);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.biografia-name {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.2;
    margin-bottom: 4px;
}
.biografia-name-sub {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--light-text-2);
    margin-bottom: 8px;
    margin-top: -2px;
}
.biografia-media {
    font-size: 13px;
    font-weight: 600;
    color: var(--light-text-3);
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.biografia-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--light-text-2);
    margin-bottom: 24px;
}
.biografia-text p {
    margin-bottom: 16px;
}
.biografia-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .biografia-block, .biografia-block.reverse {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        margin-bottom: 80px;
    }
    .biografia-visual {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }
}