/* ==========================================================================
   VARIABLES Y ESTILOS GLOBALES
   ========================================================================== */
:root {
    --bg-color: #030305;
    --bg-card: rgba(12, 10, 20, 0.6);
    --bg-card-hover: rgba(22, 18, 36, 0.8);
    
    --neon-purple: #9d4edd;
    --neon-purple-glow: rgba(157, 78, 221, 0.8);
    --neon-violet: #bd55ec;
    --neon-cyan: #00f0ff;
    --neon-cyan-glow: rgba(0, 240, 255, 0.8);
    
    --text-primary: #ffffff;
    --text-secondary: #b0afb9;
    --text-muted: #5b5a64;
    
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-neon: rgba(157, 78, 221, 0.35);
    
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-inter);
    scrollbar-gutter: stable;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4.5rem 0;
    position: relative;
}

/* ==========================================================================
   TEXTURA DE GRANO DE ALTO STANDING
   ========================================================================== */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAYdfm0AAAAMFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWl5utAAAADXRSTlMAA1G0u7zD3+Pn7/f7+wI2hAAAAFVJREFUeNq1y0kSAkEMRNFB8P7H1s50fGkiEirV5U9E9GKiNxG9WdGbiN6N6M2J3mz0ZqN3M3ozoncheldE74roXRW9OemvX/5v65+nfwL66dfvGf6/BgcQAwP512B7AAAAAElFTkSuQmCC");
}

/* ==========================================================================
   FONDO NEON SMOKE OPTIMIZADO (Sin filtros de blur en tiempo real)
   ========================================================================== */
.bg-smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    /* Gradientes radiales estáticos de alto rendimiento */
    background: 
        radial-gradient(circle at 10% 20%, rgba(157, 78, 221, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(212, 0, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.02) 0%, transparent 40%),
        var(--bg-color);
}

.smoke-glow {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
}

/* Nubes de humo animadas usando exclusivamente transformaciones 3D */
.smoke-glow-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
    animation: move-smoke-1 25s infinite alternate ease-in-out;
}

.smoke-glow-2 {
    bottom: -15%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 0, 212, 0.12) 0%, transparent 70%);
    animation: move-smoke-2 30s infinite alternate ease-in-out;
}

@keyframes move-smoke-1 {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(5vw, 4vh, 0) scale(1.1); }
}

@keyframes move-smoke-2 {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-6vw, -4vh, 0) scale(1.15); }
}

/* ==========================================================================
   ELEMENTOS DE DECORACIÓN NEÓN Y TEXTOS
   ========================================================================== */
.text-neon-purple {
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-purple-glow), 0 0 25px rgba(157, 78, 221, 0.5);
}

.text-neon-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan-glow);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-outfit);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Tarjetas Glassmorphism */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, box-shadow, background-color;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-neon);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
    transform: translateY(-5px);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.4rem;
    font-family: var(--font-outfit);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-premium);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-violet));
    color: #ffffff;
    border: none;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.8);
    transform: scale(1.03);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   BARRA DE NAVEGACIÓN (HEADER)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: rgba(3, 3, 5, 0.75); /* Rich dark transparent background */
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.header.scrolled {
    background: rgba(3, 3, 5, 0.98);
    border-bottom-color: var(--border-glass);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.25s ease;
}

.header.scrolled .nav-container {
    height: 70px;
}

.nav-container .logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ffffff;
}

.nav-container .logo-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #000;
    border: 2.5px solid var(--neon-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.4);
}

.nav-container .logo-text-bz {
    font-family: var(--font-outfit);
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 5px var(--neon-purple);
}

.nav-container .logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.nav-container .logo-main {
    font-family: var(--font-outfit);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.nav-container .logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--text-secondary);
    margin-top: -2px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin-left: auto;
}

.nav-link {
    font-family: var(--font-outfit);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-premium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple);
    transition: var(--transition-premium);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn-contact {
    padding: 0.6rem 1.4rem;
    border: 1.5px solid var(--border-glass);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.01);
}

.nav-btn-contact::after {
    display: none;
}

.nav-btn-contact:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 12px rgba(157, 78, 221, 0.3);
    background: rgba(157, 78, 221, 0.05);
}

/* Menú Toggle (Hamburguesa) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-premium);
}

/* ==========================================================================
   SECCIÓN HERO (FIEL A LA PORTADA DEL DOSSIER)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding-top: 110px;
    overflow: hidden;
    position: relative;
    /* No fallback image to prevent double-animation jumps; video fades in from solid black */
    background: 
        linear-gradient(180deg, rgba(3, 3, 5, 0.7) 0%, rgba(3, 3, 5, 0.85) 75%, #030305 100%), 
        #030305;
}

/* Contenedor del video de fondo de IA */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente oscuro para asegurar legibilidad */
    background: linear-gradient(180deg, rgba(3, 3, 5, 0.6) 0%, rgba(3, 3, 5, 0.82) 75%, #030305 100%);
    z-index: 2;
}

#hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

#hero-video-bg.video-ready {
    opacity: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 3; /* Above the video overlay */
    padding-bottom: 70px; /* Espacio para el footer */
}

/* Sello circular BZ en el Hero */
.hero-dossier-bz-badge {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, #0b0816 60%, #150f28 100%);
    border: 3.5px solid var(--neon-purple);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.4), inset 0 0 15px rgba(157, 78, 221, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
}

.hero-dossier-bz-badge::before {
    content: '';
    position: absolute;
    width: 125%;
    height: 125%;
    border-radius: 50%;
    border: 1px dashed rgba(157, 78, 221, 0.35);
    animation: rotate-dashed 20s linear infinite;
}

@keyframes rotate-dashed {
    100% { transform: rotate(360deg); }
}

.badge-bz-circle {
    font-family: var(--font-outfit);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Fila de logo: ==> BUZZ MAKERS <== */
.hero-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    margin-bottom: 0.5rem;
}

.hero-arrow {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 8px var(--neon-cyan-glow));
    animation: pulse-arrow 1.5s infinite alternate ease-in-out;
}

.arrow-left {
    animation-delay: 0.2s;
}

@keyframes pulse-arrow {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 1; }
}

.hero-svg-wrapper {
    width: 450px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.hero-svg-brand {
    width: 100%;
    height: auto;
    overflow: visible;
}

.svg-text-glow {
    font-family: var(--font-outfit);
    font-size: 105px;
    font-weight: 900;
    letter-spacing: 0.05em;
    fill: none;
    stroke: var(--neon-purple);
    stroke-width: 9px;
    filter: url(#neon-glow-filter);
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: trace-neon-glow 3.5s cubic-bezier(0.25, 1, 0.5, 1) 2 forwards;
}

.svg-text-front {
    font-family: var(--font-outfit);
    font-size: 105px;
    font-weight: 900;
    letter-spacing: 0.05em;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: trace-neon-glow 3.5s cubic-bezier(0.25, 1, 0.5, 1) 2 forwards;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

@keyframes trace-neon-glow {
    0% {
        stroke-dashoffset: 1200;
        fill: rgba(255, 255, 255, 0);
    }
    70% {
        stroke-dashoffset: 0;
        fill: rgba(255, 255, 255, 0);
    }
    85% {
        fill: rgba(255, 255, 255, 0.95);
    }
    100% {
        stroke-dashoffset: 0;
        fill: rgba(255, 255, 255, 0.95);
    }
}




.hero-brand-agency {
    font-family: var(--font-outfit);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple-glow);
    margin-top: -0.2rem;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

/* Footer del dossier en Hero */
.hero-dossier-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    z-index: 5;
}

.dossier-footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mini-crown-svg {
    width: 45px;
    height: 22px;
    color: #ffffff;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
}

.dossier-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

/* Triángulos decorativos en la parte inferior izquierda */
.hero-triangles-decor {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: flex;
    gap: 8px;
    opacity: 0.45;
}

.mini-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 18px 10px;
    border-color: transparent transparent var(--neon-cyan) transparent;
    filter: drop-shadow(0 0 6px var(--neon-cyan-glow));
}

.mini-triangle.border-only {
    border-color: transparent transparent transparent transparent;
    position: relative;
}

.mini-triangle.border-only::after {
    content: '';
    position: absolute;
    top: 2px;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 14px 8px;
    border-color: transparent transparent var(--bg-color) transparent;
    z-index: 2;
}

.mini-triangle.border-only::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 18px 10px;
    border-color: transparent transparent var(--neon-cyan) transparent;
    z-index: 1;
}

.dossier-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer-xxx-badge {
    font-family: var(--font-outfit);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--neon-purple);
    text-shadow: 0 0 8px var(--neon-purple-glow);
    letter-spacing: 0.05em;
    line-height: 1;
}

.footer-url-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    user-select: none;
}

/* ==========================================================================
   SECCIÓN ABOUT (WHAT IS BUZZMAKERS & COPIES MOTOR)
   ========================================================================== */
.about-section {
    padding-top: 1.5rem;
    padding-bottom: 4.5rem;
}
/* Caja al estilo dossier */
.dossier-header-box {
    border: 2px solid var(--neon-purple);
    border-radius: 12px;
    background: rgba(157, 78, 221, 0.03);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15), inset 0 0 10px rgba(157, 78, 221, 0.05);
    padding: 1.2rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.header-box-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.box-close-x {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
    margin-right: 1.5rem;
    opacity: 0.7;
    cursor: pointer;
}

.box-bz-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--neon-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 4px var(--neon-purple);
    box-shadow: 0 0 8px rgba(157, 78, 221, 0.3);
}

.box-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 1.5rem;
}

.box-agency-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-grow: 1;
}

.box-title {
    font-family: var(--font-outfit);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.box-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--neon-purple);
    border: 1px solid rgba(157,78,221,0.3);
    padding: 2px 6px;
    border-radius: 4px;
}

.box-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: auto;
    padding-right: 2rem;
}

.box-crown {
    color: #ffffff;
    opacity: 0.75;
}

/* Layout de la sección about */
.about-main-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-content-left .section-title {
    margin-bottom: 2rem;
}

.about-large-text {
    font-family: var(--font-outfit);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about-body-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.about-stats-right {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.about-stats-right .stat-card {
    padding: 2.2rem;
    text-align: center;
}

.stat-card-number {
    font-family: var(--font-outfit);
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-purple-glow);
    margin-bottom: 0.4rem;
}

.stat-card-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.about-card {
    padding: 3rem 2.2rem;
    text-align: center;
}

.about-card .card-title {
    font-family: var(--font-outfit);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.about-card .card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   SECCIÓN ROSTER (TARJETAS DE INFLUENCERS DEL MOTOR)
   ========================================================================== */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.influencer-card {
    position: relative;
    overflow: hidden;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    background: linear-gradient(180deg, transparent 40%, rgba(3, 3, 5, 0.95) 100%), var(--bg-card);
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, box-shadow;
}

.influencer-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.influencer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.82;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.influencer-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
    transform: translateY(-8px);
}

.influencer-card:hover .influencer-image {
    transform: scale(1.06);
    opacity: 1;
}

.card-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(157, 78, 221, 0.9);
    color: #ffffff;
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.influencer-info {
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition-premium);
}

.influencer-card:hover .influencer-info {
    transform: translateY(0);
}

.influencer-name {
    font-family: var(--font-outfit);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.influencer-stats {
    font-family: var(--font-outfit);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
}

.card-social-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 1.2rem;
}

.social-icon-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 10, 20, 0.85);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-fast);
}

.social-icon-dot.text-red {
    border-color: rgba(255, 74, 74, 0.6);
    color: #ff4a4a;
    box-shadow: 0 0 8px rgba(255, 74, 74, 0.25);
}

.social-icon-dot.text-pink {
    border-color: rgba(225, 48, 108, 0.6);
    color: #e1306c;
    box-shadow: 0 0 8px rgba(225, 48, 108, 0.3);
}

.social-icon-dot.text-purple {
    border-color: rgba(168, 85, 247, 0.6);
    color: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.25);
}

.social-icon-dot.text-white {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.view-dossier-hint {
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-premium);
}

.influencer-card:hover .view-dossier-hint {
    opacity: 0.9;
    transform: translateY(0);
}

/* ==========================================================================
   DOSSIER DETALLADO INTERACTIVO (DEDICADO)
   ========================================================================== */
.dossier-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    /* Use inset so width never includes scrollbar space */
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    background: rgba(3, 3, 5, 0.97);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4.5vh 0;
    opacity: 1;
    transition: opacity 0.35s ease-out;
    overflow-y: auto;
    /* Prevent page-width shift when body scroll locks */
    overscroll-behavior: contain;
}

.dossier-inner-content {
    width: 92%;
    max-width: 1100px;
    height: auto;
    padding: 3rem;
    overflow: visible;
    position: relative;
    border: 1.5px solid var(--border-neon);
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.25);
    background: rgba(12, 10, 20, 0.98);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    /* Prevent the card itself from being the scroll target */
    flex-shrink: 0;
}

/* Animaciones apertura modal — solo opacidad, sin transform para evitar shake */
.animate-dossier-open {
    animation: dossier-fade-in 0.3s forwards ease-out;
}

.animate-dossier-close {
    animation: dossier-fade-out 0.3s forwards ease-out;
}

@keyframes dossier-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes dossier-fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.dossier-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition-fast);
    z-index: 10;
}

.dossier-close-btn:hover {
    opacity: 1;
    color: var(--neon-purple);
}

.dossier-grid-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    height: 100%;
}

/* Columna Izquierda modal */
.dossier-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 3rem;
}

.dossier-profile-pic-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    margin-bottom: 2rem;
}

.dossier-profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.dossier-logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.track-map-svg {
    filter: drop-shadow(0 0 6px var(--neon-purple-glow));
}

.logo-title-sub {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.logo-title-sub.flex-row {
    flex-direction: row;
    gap: 8px;
}

.logo-name-main {
    font-family: var(--font-outfit);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-name-sub {
    font-family: var(--font-outfit);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-purple);
}

.logo-name-main.cx-main { font-size: 2.2rem; }
.logo-name-sub.cx-sub { font-size: 2.2rem; color: var(--neon-purple); text-shadow: 0 0 10px var(--neon-purple-glow); }
.logo-name-main.gabi-main { font-size: 2.2rem; font-weight: 900; letter-spacing: 0.08em;}
.logo-name-sub.gabi-sub { font-size: 2.2rem; font-weight: 900; color: #ffffff; letter-spacing: 0.08em;}

.dossier-name {
    font-family: var(--font-outfit);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.dossier-tag {
    font-family: var(--font-outfit);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.8rem;
}

.dossier-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--neon-purple);
    width: 100%;
}

.dossier-social-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.dossier-social-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-outfit);
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    transition: var(--transition-fast);
    border: 1px solid var(--border-glass);
}

.dossier-social-btn-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dossier-social-count {
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.dossier-social-btn.yt:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 0 10px rgba(255,0,0,0.45); }
.dossier-social-btn.ig:hover { background: #e1306c; border-color: #e1306c; box-shadow: 0 0 10px rgba(225,48,108,0.45); }
.dossier-social-btn.tt:hover { background: #ffffff; color: #000000; border-color: #ffffff; box-shadow: 0 0 10px rgba(255,255,255,0.45); }
.dossier-social-btn.tt:hover .dossier-social-count { background: rgba(0, 0, 0, 0.08); color: rgba(0, 0, 0, 0.8); }

/* Booking / Hiring Box styles */
.dossier-booking-box {
    width: 100%;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.dossier-booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.2rem;
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, #1a75ff, #9d4edd);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(26, 117, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.dossier-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(157, 78, 221, 0.35);
    filter: brightness(1.1);
}

.dossier-contact-email-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.dossier-email-label {
    font-family: var(--font-inter);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dossier-email-link {
    font-family: var(--font-inter);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dossier-email-link:hover {
    color: var(--neon-cyan);
}

/* Tarjeta de Canal Secundario Especial */
.dossier-sec-channel-card {
    margin-top: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 51, 102, 0.2);
    background: rgba(255, 51, 102, 0.02);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 100%;
}

.dossier-sec-channel-card:hover {
    border-color: rgba(255, 51, 102, 0.5);
    background: rgba(255, 51, 102, 0.04);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.15);
    transform: translateY(-2px);
}

.sec-channel-slogan {
    font-family: var(--font-outfit);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff3366;
    text-align: center;
}

.sec-channel-link-box {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.sec-channel-banner-wrap {
    width: 100%;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.sec-channel-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sec-channel-link-box:hover .sec-channel-banner {
    transform: scale(1.08);
}

.sec-channel-badge-yt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 0, 0, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.sec-channel-link-box:hover .sec-channel-badge-yt {
    transform: translate(-50%, -50%) scale(1.12);
}

.sec-channel-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.sec-channel-title {
    font-family: var(--font-outfit);
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
}

.sec-channel-subs {
    font-family: var(--font-inter);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}


/* Columna Derecha modal */
.dossier-right-col {
    display: flex;
    flex-direction: column;
}

.dossier-section-title {
    font-family: var(--font-outfit);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.dossier-metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex-grow: 1;
    min-height: 520px;
    /* Isolate layout so tab-switch reflows don't propagate upward */
    contain: layout;
}

.dossier-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 1.8rem;
}

.stat-card-title {
    font-family: var(--font-outfit);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Gráfico donut de Sexo */
.donut-chart-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.donut-svg {
    width: 110px;
    height: 110px;
    transform: rotate(-90deg);
}

.donut-fill {
    transition: stroke-dashoffset 1s ease-out;
    filter: drop-shadow(0 0 6px var(--neon-purple-glow));
}

.donut-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.donut-percent {
    font-family: var(--font-outfit);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    /* Tabular nums: cada dígito ocupa el mismo ancho — elimina el temblor */
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 5ch;
    text-align: center;
}

.donut-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gender-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-color.male { background-color: var(--neon-purple); box-shadow: 0 0 6px var(--neon-purple); }
.legend-color.female { background-color: rgba(255, 255, 255, 0.2); }

/* Barras de Edad */
.age-bars-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.dossier-stat-bar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-group-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}

.bar-label { color: var(--text-secondary); }
.bar-val {
    color: #ffffff;
    /* Tabular nums: ancho constante durante la animación */
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 4.5ch;
    text-align: right;
}

.bar-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.03);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-violet));
    border-radius: 3px;
    box-shadow: 0 0 8px var(--neon-purple-glow);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Lista de Países */
.countries-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.country-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.country-name {
    font-weight: 600;
    color: var(--text-secondary);
    width: 100px;
}

.country-val-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
}

.country-mini-bar {
    height: 4px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan-glow);
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-pct {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: auto;
    color: #ffffff;
    /* Tabular nums: ancho constante durante la animación */
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 4.5ch;
    text-align: right;
}

/* Regla global: todos los contadores usan dígitos tabulares */
.counter-value {
    font-variant-numeric: tabular-nums;
}

.dossier-footer-note {
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.note-logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.note-xxx {
    font-family: var(--font-outfit);
    font-size: 1.3rem;
    font-weight: 900;
    color: rgba(157, 78, 221, 0.1);
}

/* ==========================================================================
   SECCIÓN CONTACTO
   ========================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.contact-info {
    text-align: left;
}

.section-title.text-left {
    text-align: left;
    font-size: 3.5rem;
    line-height: 1;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 480px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-bottom: 4rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.detail-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.1);
    color: var(--neon-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-link {
    font-family: var(--font-outfit);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-premium);
}

.detail-link:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 8px rgba(157, 78, 221, 0.5);
}

.brand-signature {
    margin-top: 2rem;
}

.signature-xxx {
    font-family: var(--font-outfit);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(157, 78, 221, 0.15);
    letter-spacing: 0.15em;
    user-select: none;
}

.contact-form-container {
    padding: 3.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    transition: var(--transition-premium);
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--neon-purple);
    background: rgba(157, 78, 221, 0.05);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.2);
}

.custom-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 12px;
    padding-right: 3rem;
}

.custom-select option {
    background: #0c0817;
    color: #ffffff;
}

.form-status-msg {
    font-size: 0.9rem;
    text-align: center;
    margin-top: -0.5rem;
    opacity: 0;
    transition: var(--transition-premium);
}

.form-status-msg.success {
    opacity: 1;
    color: #10b981;
}

.form-status-msg.error {
    opacity: 1;
    color: #f87171;
}

/* ==========================================================================
   PIE DE PÁGINA (FOOTER)
   ========================================================================== */
.footer {
    position: relative;
    background-color: #020204;
    padding: 6rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, #1a75ff, #9d4edd, #ff3366, #1a75ff);
    background-size: 300% 100%;
    animation: pulseBorder 8s linear infinite;
}

@keyframes pulseBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-ownership {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.footer-ownership strong {
    color: var(--text-secondary);
}

.footer-col-title {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-menu a {
    font-family: var(--font-inter);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-premium);
    width: fit-content;
}

.footer-menu a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-email-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-email-value {
    font-family: var(--font-inter);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.footer-email-value:hover {
    color: var(--neon-cyan);
}

/* ==========================================================================
   SEDES GLOBALES & MAPA DE SEDES
   ========================================================================== */
.footer-sedes-card {
    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.005);
}

.sedes-header {
    margin-bottom: 2rem;
    border-left: 3px solid var(--neon-purple);
    padding-left: 1rem;
}

.sedes-title {
    font-family: var(--font-outfit);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
}

.sedes-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.sedes-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sedes-map-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.footer-world-map {
    width: 100%;
    height: auto;
    display: block;
    background: #020204;
    padding: 1rem;
}

.footer-world-map path {
    fill: rgba(255, 255, 255, 0.03);
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 0.8;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-world-map path:hover {
    fill: rgba(157, 78, 221, 0.15);
    stroke: rgba(157, 78, 221, 0.4);
    filter: drop-shadow(0 0 4px rgba(157, 78, 221, 0.2));
}

.footer-world-map #es,
.footer-world-map #us,
.footer-world-map #id {
    fill: rgba(255, 255, 255, 0.06);
    stroke: rgba(255, 255, 255, 0.15);
}

.sedes-clocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.sede-clock-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.sede-clock-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.sede-clock-card.active {
    border-color: rgba(26, 117, 255, 0.25);
    background: rgba(26, 117, 255, 0.01);
}

.sede-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sede-badge {
    font-family: var(--font-inter);
    font-size: 0.58rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sede-badge.badge-primary {
    color: var(--neon-cyan);
}

.sede-name {
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.sede-time {
    font-family: var(--font-outfit);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
}

/* Ping Animations for map dots */
.ping-anim {
    transform-origin: center;
    animation: mapPing 2.5s ease-out infinite;
}

@keyframes mapPing {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
    margin: 3rem 0 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-disclaimer {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer-disclaimer strong {
    color: var(--text-secondary);
}

.footer-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.5rem;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    user-select: none;
}

.footer-logo-icon-wrap {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon-cyan);
}

.footer-logo-text-bz {
    font-family: var(--font-outfit);
    font-weight: 900;
    font-size: 0.85rem;
    color: #ffffff;
    letter-spacing: -0.05em;
}

.footer-logo-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.footer-logo-main {
    font-family: var(--font-outfit);
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.footer-logo-sub {
    font-family: var(--font-outfit);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.25em;
}

.footer-copyright-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-xxx-mark {
    font-family: var(--font-outfit);
    font-size: 1.6rem;
    font-weight: 900;
    color: rgba(157, 78, 221, 0.15);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   EFECTOS DE REVELACIÓN EN SCROLL (Intersection Observer)
   ========================================================================== */
.scroll-reveal-card, .about-card, .stats-bar {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.influencer-card.scroll-reveal-card {
    opacity: 0;
    transform: translate3d(0, 45px, 0);
    transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-card.revealed, .about-card.revealed, .stats-bar.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Delays escalonados para la rejilla about */
.about-grid .about-card:nth-child(1) { transition-delay: 0.1s; }
.about-grid .about-card:nth-child(2) { transition-delay: 0.2s; }
.about-grid .about-card:nth-child(3) { transition-delay: 0.3s; }

/* ==========================================================================
   DISEÑO RESPONSIVO (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-brand-name {
        font-size: 3.5rem;
    }
    
    .hero-brand-agency {
        font-size: 2.2rem;
        letter-spacing: 0.15em;
    }
    
    .dossier-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dossier-left-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 3rem;
    }
    
    .dossier-inner-content {
        height: auto;
        min-height: auto;
        overflow-y: visible;
        padding: 2.5rem 1.5rem;
    }
    
    .about-main-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats-right {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .about-stats-right .stat-card {
        flex: 1 1 200px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .section-title.text-left {
        text-align: center;
    }
    
    .contact-intro {
        margin: 0 auto 3rem auto;
    }
    
    .contact-details {
        align-items: center;
        gap: 2.5rem;
    }
    
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 0.7rem;
    }
    
    .detail-text {
        align-items: center;
    }
    
    .brand-signature {
        text-align: center;
        width: 100%;
        margin-top: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem 2rem;
    }
    
    .sedes-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    @media (max-width: 576px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        .sedes-clocks-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-copyright-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .about-section {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-brand-agency {
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        margin-bottom: 1.8rem;
    }
    .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-content {
        padding-bottom: 0;
        background: radial-gradient(circle, rgba(3, 3, 5, 0.65) 0%, transparent 80%);
        border-radius: 50%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 1rem;
        margin: 0 auto 2rem auto;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-arrow {
        display: none;
    }
    
    .hero-logo-row {
        gap: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-svg-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .svg-text-glow, .svg-text-front {
        font-size: 80px;
    }
    
    .hero-dossier-bz-badge {
        width: 80px;
        height: 80px;
        margin-bottom: 1.2rem;
    }
    
    .badge-bz-circle {
        font-size: 2.1rem;
    }
    
    .hero-dossier-footer {
        position: relative;
        margin-top: 2.5rem;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        padding-bottom: 2rem;
        width: 100%;
    }
    
    .dossier-footer-left,
    .dossier-footer-right,
    .footer-stat-group,
    .footer-stat-item,
    .hero-dossier-footer .dossier-footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        width: 100%;
    }

    .hero-triangles-decor {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(3, 3, 5, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2.5rem;
        transition: var(--transition-premium);
        border-top: 1px solid var(--border-glass);
    }
    
    .navbar.open {
        left: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .dossier-header-box {
        padding: 1rem 1.2rem;
    }
    
    .box-desc {
        display: none;
    }
    
    .box-divider {
        margin: 0 0.8rem;
    }
    
    .box-close-x {
        margin-right: 0.8rem;
    }
    
    .donut-chart-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .donut-text {
        text-align: center;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .view-dossier-hint {
        opacity: 0.85 !important;
        transform: translateY(0) !important;
        color: var(--neon-cyan);
    }
    
    /* Aparición suave de tarjetas de influencer en móvil */
    .influencer-card.scroll-reveal-card {
        opacity: 0;
        transform: translate3d(0, 60px, 0);
        transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .influencer-card.scroll-reveal-card.revealed {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }
    
    .hero-brand-agency {
        font-size: 1.3rem;
    }
    
    .svg-text-glow, .svg-text-front {
        font-size: 70px;
    }
}

/* Selector de Idiomas */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 1.2rem;
    border: 1px solid var(--border-glass);
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-premium);
    padding: 2px;
    display: flex;
    align-items: center;
    opacity: 0.5;
}

.lang-btn:hover, .lang-btn.active {
    opacity: 1;
    transform: scale(1.12);
}

.lang-btn.active {
    filter: drop-shadow(0 0 6px var(--neon-purple-glow));
}

.flag-icon {
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    display: block;
    pointer-events: none;
}

.lang-divider {
    color: var(--text-muted);
    font-size: 0.8rem;
    user-select: none;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .lang-selector {
        margin-left: auto;
        margin-top: 0;
        margin-right: 1.2rem;
        z-index: 101;
    }
}

/* ==========================================================================
   SECCIÓN SPONSORS Y MARCAS COLABORADORAS
   ========================================================================== */
.partners-section {
    padding: 3.5rem 0;
    position: relative;
}

.partners-sub-title {
    font-family: var(--font-outfit);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Decoración de línea para los subtítulos */
.partners-sub-title::before,
.partners-sub-title::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--border-neon));
}
.partners-sub-title::after {
    background: linear-gradient(90deg, var(--border-neon), transparent);
}

.sponsors-container {
    margin-bottom: 5.5rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.sponsor-card {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Efecto hover general de las tarjetas sponsor */
.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sponsor-card:hover::before {
    opacity: 1;
}

.sponsor-card:hover {
    transform: translateY(-5px);
}

/* Imagen del sponsor logo */
.sponsor-logo-img {
    height: 75px;
    max-width: 220px;
    width: 85%;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0.9;
    user-select: none;
    pointer-events: none;
}

.sponsor-logo-img.autodoc,
.sponsor-logo-img.carly {
    height: 125px;
    max-width: 280px;
    width: 90%;
}

/* Hover individualizado por sponsor */
.sponsor-card:hover .sponsor-logo-img {
    opacity: 1;
    transform: scale(1.08);
}

.sponsor-card:hover:has(.carfax) {
    border-color: rgba(26, 117, 255, 0.4);
    box-shadow: 0 0 25px rgba(26, 117, 255, 0.15);
}

.sponsor-card:hover:has(.autodoc) {
    border-color: rgba(255, 183, 3, 0.4);
    box-shadow: 0 0 25px rgba(255, 183, 3, 0.15);
}

.sponsor-card:hover:has(.carly) {
    border-color: rgba(251, 133, 0, 0.4);
    box-shadow: 0 0 25px rgba(251, 133, 0, 0.15);
}

.sponsor-card:hover:has(.dragy) {
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 0 25px rgba(255, 51, 51, 0.15);
}

.sponsor-card:hover:has(.bambulab) {
    border-color: rgba(6, 214, 160, 0.4);
    box-shadow: 0 0 25px rgba(6, 214, 160, 0.15);
}

/* Marcas Colaboradoras: Marquee Infinito */
.brands-container {
    width: 100%;
}

.brands-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.2rem;
    position: relative;
    width: 100%;
}

.brands-header-wrapper .partners-sub-title {
    margin-bottom: 0;
    flex-grow: 1;
}

.header-placeholder {
    width: 260px;
    flex-shrink: 0;
}

.dgt-partnership-card {
    width: 260px;
    height: 60px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(26, 117, 255, 0.25);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.dgt-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 117, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dgt-partnership-card:hover .dgt-card-glow {
    opacity: 1;
}

.dgt-partnership-card:hover {
    border-color: rgba(26, 117, 255, 0.6);
    box-shadow: 0 0 20px rgba(26, 117, 255, 0.25);
    transform: translateY(-2px);
}

.dgt-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.dgt-card-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dgt-card-title {
    font-family: var(--font-outfit);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-neon);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.dgt-card-desc {
    font-family: var(--font-inter);
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
}

.dgt-card-logo-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dgt-card-logo {
    max-height: 38px;
    max-width: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

@media (max-width: 992px) {
    .brands-header-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .header-placeholder {
        display: none;
    }
    
    .brands-header-wrapper .partners-sub-title {
        flex-grow: 0;
    }
}

.brands-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
    /* Efecto difuminado en los bordes izquierdo/derecho */
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.brands-marquee {
    display: flex;
    gap: 4rem;
    width: max-content;
    will-change: transform;
}

.brands-marquee.left {
    animation: marquee-scroll-left 70s linear infinite;
}

.brands-marquee.right {
    animation: marquee-scroll-right 70s linear infinite;
}

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

.brands-marquee-group {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Logos de marcas del carrusel */
.partner-logo-img {
    height: 48px;
    max-width: 155px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    user-select: none;
    cursor: pointer;
    opacity: 0.95;
}

.partner-logo-img:hover {
    opacity: 1;
    transform: scale(1.12);
}

.partner-logo-img.aliexpress {
    height: 68px;
    max-width: 210px;
}

.partner-logo-img.goodyear {
    height: 96px;
    max-width: 280px;
}

.partner-logo-img.xiaomi {
    height: 130px;
    max-width: 270px;
}

.partner-logo-img.mercedes {
    height: 130px;
    max-width: 270px;
}

.partner-logo-img.realme {
    height: 130px;
    max-width: 270px;
}

/* Autodoc moved to sponsors */

.partner-logo-img.epicgames,
.partner-logo-img.matutano {
    height: 70px;
    max-width: 170px;
}

.partner-logo-img.nordvpn,
.partner-logo-img.dgt,
.partner-logo-img.movistar {
    height: 80px;
    max-width: 180px;
}

.partner-logo-img.kia {
    height: 100px;
    max-width: 220px;
}

.partner-logo-img.tesla,
.partner-logo-img.bmw,
.partner-logo-img.volvo,
.partner-logo-img.shopify,
.partner-logo-img.temu {
    height: 80px;
    max-width: 180px;
}

.partner-logo-img.mcdonalds {
    height: 75px;
    max-width: 170px;
}

.partner-logo-img.sixt {
    height: 70px;
    max-width: 180px;
}

.partner-logo-img.repsol {
    height: 85px;
    max-width: 190px;
}

.partner-logo-img.flexicar {
    height: 55px;
    max-width: 155px;
}

.partner-logo-img.bosch {
    height: 75px;
    max-width: 220px;
}

.partner-logo-img.europcar,
.partner-logo-img.moeve {
    height: 65px;
    max-width: 180px;
}

/* Animaciones del Scroll Infinito en ambas direcciones */
@keyframes marquee-scroll-left {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marquee-scroll-right {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* Responsivo para Sponsors y Marcas */
@media (max-width: 992px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 2.5rem 0;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .sponsor-card {
        height: 85px;
        border-radius: 12px;
    }
    
    .partner-logo-img {
        height: 25px;
        max-width: 90px;
    }
    
    .brands-marquee {
        gap: 2.5rem;
    }
    .brands-marquee.left {
        animation-duration: 25s;
    }
    .brands-marquee.right {
        animation-duration: 25s;
    }
    .brands-marquee-group {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   PESTAÑAS DE REDES SOCIALES EN DOSSIER (DE MULTI-CANAL)
   ========================================================================== */
.dossier-network-tabs {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.2rem;
    flex-wrap: wrap;
}

.network-tab {
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-premium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
}

.network-tab svg {
    opacity: 0.7;
    transition: var(--transition-fast);
}

.network-tab:hover {
    color: #ffffff;
    border-color: rgba(157, 78, 221, 0.4);
    background: rgba(157, 78, 221, 0.05);
}

.network-tab:hover svg {
    opacity: 1;
}

.network-tab.active {
    color: #ffffff;
    background: rgba(157, 78, 221, 0.15);
    border-color: var(--neon-purple);
    box-shadow: 0 0 12px rgba(157, 78, 221, 0.4);
}

.network-tab.active svg {
    opacity: 1;
}

.network-tab.ig.active {
    border-color: #d62976;
    box-shadow: 0 0 12px rgba(214, 41, 118, 0.4);
    background: rgba(214, 41, 118, 0.12);
}

.network-tab.yt.active {
    border-color: #ff0000;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
    background: rgba(255, 0, 0, 0.12);
}

.network-tab.tt.active {
    border-color: #00f2fe;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
    background: rgba(0, 242, 254, 0.12);
}


/* ==========================================================================
   RANGO DE FECHA DINÁMICO DOSSIER
   ========================================================================== */
.dossier-date-range {
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    align-self: flex-start;
    transition: var(--transition-premium);
}

.dossier-date-range::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple);
    transition: var(--transition-fast);
}

.dossier-date-range.instagram::before {
    background-color: #d62976;
    box-shadow: 0 0 8px #d62976;
}

.dossier-date-range.youtube::before {
    background-color: #ff0000;
    box-shadow: 0 0 8px #ff0000;
}

.dossier-date-range.tiktok::before {
    background-color: #00f2fe;
    box-shadow: 0 0 8px #00f2fe;
}

/* ==========================================================================
   INTERACTIVIDAD PREMIUM ADICIONAL
   ========================================================================== */

/* Barra de progreso de scroll de lectura */
.scroll-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    z-index: 100;
    transition: width 0.1s ease-out;
}

/* Cursor Spotlight Glow Effect */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.05) 0%, rgba(26, 117, 255, 0.01) 45%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Mostrar glow del cursor solo en dispositivos con hover (escritorio) */
@media (hover: hover) and (pointer: fine) {
    body:hover .cursor-glow {
        opacity: 1;
    }
}

