/* ==========================================================================
   DMC SERVICIOS DE INGENIERIA SAS - SYSTEM STYLE SHEET (TEMA CLARO & DUAL HUD)
   Estilo Premium de Geomática de Alta Precisión
   Colores Principales: Blanco, #b9d3e7, #0d5286, #fec107
   ========================================================================== */

/* --- Importación & Variables Globales --- */
:root {
    --brand-primary: #0d5286;       /* Azul Corporativo Profundo */
    --brand-light-blue: #b9d3e7;    /* Azul Claro Glacial */
    --brand-gold: #fec107;          /* Amarillo Dorado / Acentos */
    --white: #ffffff;
    
    /* Variantes de Tono (Tema Claro) */
    --bg-light-primary: #ffffff;    /* Fondo Blanco Puro */
    --bg-light-secondary: #f4f8fb;  /* Fondo Glacial Claro */
    --bg-light-tertiary: #eef4f8;   /* Fondo Glacial Medio */
    
    --bg-dark-utility: #061623;     /* Barra superior oscura para contraste HUD */
    --bg-dark-hud: #030a0f;         /* Visor de Video HUD */
    
    --text-dark: #1b2e3c;           /* Texto Principal Oscuro */
    --text-muted: #4e6b82;          /* Texto Secundario */
    
    /* Bordes y Sombras */
    --border-light: rgba(13, 82, 134, 0.12);
    --border-gold: rgba(254, 193, 7, 0.35);
    --shadow-premium: 0 10px 30px rgba(13, 82, 134, 0.04);
    --shadow-hover: 0 18px 45px rgba(13, 82, 134, 0.08);
    
    /* Tipografías */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transiciones */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reseteo Moderno & Estilos Globales --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 155px; /* Ajuste por el header doble */
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-primary);
}

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

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

ul {
    list-style: none;
}

/* --- Scrollbar Personalizado --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 4px;
    border: 2px solid var(--bg-light-secondary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-gold);
}

/* --- Contenedores Comunes --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--brand-gold) !important; }
.text-white { color: var(--white) !important; }
.no-margin { margin: 0 !important; }

/* --- Degradados de Texto --- */
.text-gradient {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1e87d4 60%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HUD Real-time Telemetry Bar --- */
.hud-telemetry-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 28px;
    background: var(--bg-dark-utility);
    border-bottom: 1px solid rgba(185, 211, 231, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1.5rem;
    font-family: monospace;
    font-size: 11px;
    color: var(--brand-light-blue);
    gap: 2rem;
    letter-spacing: 1px;
    pointer-events: none;
}

.hud-telemetry-bar .telemetry-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hud-telemetry-bar .lbl {
    color: rgba(185, 211, 231, 0.5);
}

.hud-telemetry-bar .val {
    color: var(--white);
}

.green-glow {
    color: #4caf50 !important;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* ==========================================================================
   Header de Doble Nivel (Estilo Topodrone)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 28px; /* Detrás del HUD */
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: var(--transition-smooth);
}

/* 1. Fila Superior (Utility Bar) */
.header-top-bar {
    background: rgba(6, 22, 35, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.45rem 0;
    transition: var(--transition-smooth);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.top-nav-links {
    display: flex;
    gap: 1.5rem;
}

.top-link {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 500;
    color: #8fa6b8;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-link i {
    font-size: 0.85rem;
    color: var(--brand-light-blue);
    transition: var(--transition-fast);
}

.top-link:hover {
    color: var(--white);
}

.top-link:hover i {
    color: var(--brand-gold);
    transform: translateY(-1px);
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-phone, .top-email {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-light-blue);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-phone:hover, .top-email:hover {
    color: var(--white);
}

/* Enlace de Llamado a la Acción por WhatsApp en Barra Superior */
.top-cta-btn-whatsapp {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #25d366; /* Verde WhatsApp */
    color: var(--white) !important;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    transition: var(--transition-fast);
}

.top-cta-btn-whatsapp:hover {
    background-color: var(--brand-gold);
    color: var(--bg-dark-utility) !important;
    box-shadow: 0 2px 12px rgba(254, 193, 7, 0.4);
    transform: translateY(-1px);
}

/* 2. Fila Principal (Main Navigation Bar) - Estilo Simplificado Premium */
.header-main-bar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 82, 134, 0.08);
    padding: 0.7rem 0;
    box-shadow: 0 8px 32px rgba(13, 82, 134, 0.03);
    transition: var(--transition-smooth);
}

.main-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Izquierda: Logotipo de DMC y Tagline Alineado */
.brand-logo-left-wrapper {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1.2;
    max-width: 420px;
    transition: var(--transition-smooth);
}

.brand-logo-left-wrapper:hover {
    transform: translateY(-1px);
}

.brand-logo-left {
    height: 68px; /* Altura perfecta controlada y agrandada para el logo */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(13, 82, 134, 0.1));
}

.brand-logo-bic {
    height: 56px; /* Altura ideal alineada y equilibrada con el logo principal */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.brand-logo-bic:hover {
    transform: translateY(-1px);
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-primary);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-muted);
    margin-top: 3px;
    white-space: nowrap;
}

/* Centro: Enlaces de Navegación */
.nav-center-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    flex: 2;
}

.nav-menu-link {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0.4rem;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
}

.nav-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-gold));
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu-link:hover {
    color: var(--brand-primary);
}

.nav-menu-link:hover::after {
    width: 100%;
    left: 0;
}

/* Derecha: Botón de WhatsApp de Cotización Directa */
.nav-right-actions-clean {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    max-width: 220px;
}

.nav-main-cta-btn {
    background-color: var(--brand-primary);
    color: var(--white) !important;
    padding: 0.65rem 1.25rem;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(13, 82, 134, 0.2);
    transition: var(--transition-smooth);
}

.nav-main-cta-btn:hover {
    background-color: var(--brand-gold);
    color: var(--text-dark) !important;
    box-shadow: 0 4px 18px rgba(254, 193, 7, 0.35);
    transform: translateY(-2px);
}

/* Estado Scrolled del Header Doble */
.main-header.scrolled .header-top-bar {
    transform: translateY(-100%);
    margin-bottom: -32px; /* Oculta la barra de arriba con gracia */
    opacity: 0;
    pointer-events: none;
}

.main-header.scrolled .header-main-bar {
    box-shadow: 0 12px 40px rgba(13, 82, 134, 0.06);
    background: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(13, 82, 134, 0.12);
}

/* --- Mobile Navigation Slide Panel --- */
.mobile-slide-nav {
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    height: calc(100vh - 92px);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.5rem;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(13, 82, 134, 0.1);
    transform: translateX(-120%);
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 998;
}

.mobile-slide-nav.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-slide-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--bg-light-secondary);
    padding-bottom: 0.75rem;
}

.mobile-slide-link i {
    color: var(--brand-primary);
}

.mobile-slide-cta {
    background-color: var(--brand-gold);
    color: var(--text-dark);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(254, 193, 7, 0.3);
}

/* --- Mobile Menu Toggle --- */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--brand-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* --- Hero Section (Tema Claro) --- */
.hero-section {
    position: relative;
    background-color: var(--bg-light-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(13, 82, 134, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(185, 211, 231, 0.15) 0%, transparent 50%);
    padding-top: 195px;
    padding-bottom: 110px;
    overflow: hidden;
    color: var(--text-dark);
}

.hero-radar-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(185, 211, 231, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: radar-pulse-light 8s infinite alternate ease-in-out;
}

/* --- Efecto Malla de Puntos LiDAR (Campo de Partículas Eficiente) --- */
.lidar-points-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
    background: transparent;
}
.lidar-points-overlay::before,
.lidar-points-overlay::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: transparent;
    animation: lidar-drift 24s infinite linear;
}
.lidar-points-overlay::before {
    box-shadow: 
        10vw 20vh 1.5px rgba(13, 82, 134, 0.25),
        25vw 15vh 1px rgba(185, 211, 231, 0.4),
        45vw 35vh 2px rgba(254, 193, 7, 0.25),
        60vw 10vh 1.5px rgba(13, 82, 134, 0.2),
        75vw 40vh 1px rgba(185, 211, 231, 0.35),
        85vw 25vh 2px rgba(254, 193, 7, 0.3),
        15vw 60vh 1.5px rgba(13, 82, 134, 0.3),
        35vw 75vh 2px rgba(254, 193, 7, 0.25),
        55vw 80vh 1px rgba(185, 211, 231, 0.4),
        70vw 65vh 1.5px rgba(13, 82, 134, 0.25),
        90vw 70vh 2px rgba(254, 193, 7, 0.2),
        5vw 85vh 1.5px rgba(185, 211, 231, 0.3),
        40vw 15vh 1.5px rgba(13, 82, 134, 0.2),
        65vw 85vh 2px rgba(254, 193, 7, 0.25),
        80vw 55vh 1px rgba(185, 211, 231, 0.3);
}
.lidar-points-overlay::after {
    animation-delay: -12s;
    animation-duration: 36s;
    box-shadow: 
        18vw 30vh 1.5px rgba(185, 211, 231, 0.35),
        30vw 50vh 2px rgba(254, 193, 7, 0.2),
        50vw 20vh 1px rgba(13, 82, 134, 0.25),
        72vw 30vh 2px rgba(254, 193, 7, 0.3),
        88vw 45vh 1.5px rgba(185, 211, 231, 0.4),
        12vw 70vh 2.5px rgba(13, 82, 134, 0.3),
        28vw 85vh 1.5px rgba(185, 211, 231, 0.3),
        48vw 60vh 2px rgba(254, 193, 7, 0.25),
        66vw 75vh 1.5px rgba(13, 82, 134, 0.2),
        82vw 80vh 1px rgba(185, 211, 231, 0.35),
        95vw 15vh 2.5px rgba(254, 193, 7, 0.3),
        22vw 10vh 1.5px rgba(185, 211, 231, 0.25),
        58vw 50vh 1px rgba(13, 82, 134, 0.2),
        76vw 15vh 2px rgba(254, 193, 7, 0.2),
        92vw 60vh 1.5px rgba(185, 211, 231, 0.3);
}
@keyframes lidar-drift {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.85; }
    100% { transform: translateY(-30px) rotate(10deg); opacity: 0.3; }
}

/* --- Escáner Láser Diagonal de Geomática --- */
.hero-laser-scanner {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        transparent 45%,
        rgba(185, 211, 231, 0.08) 49%,
        rgba(254, 193, 7, 0.28) 50%,
        rgba(185, 211, 231, 0.08) 51%,
        transparent 55%
    );
    opacity: 0.6;
    animation: laser-diagonal-sweep 8s infinite ease-in-out;
}
@keyframes laser-diagonal-sweep {
    0% { transform: translate(-30%, -30%); opacity: 0; }
    10% { opacity: 0.85; }
    45% { opacity: 0.85; }
    55% { transform: translate(30%, 30%); opacity: 0; }
    100% { transform: translate(30%, 30%); opacity: 0; }
}

/* Anillos de Radar Concéntricos Rotativos en 3D sutil */
.hero-radar-rings {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
}

.hero-radar-rings .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(13, 82, 134, 0.07);
}

.hero-radar-rings .ring-1 {
    width: 100%;
    height: 100%;
    border-style: solid;
    border-color: rgba(13, 82, 134, 0.03);
    animation: radar-rotate 50s linear infinite;
}

.hero-radar-rings .ring-2 {
    width: 78%;
    height: 78%;
    border-color: rgba(13, 82, 134, 0.1);
    border-width: 1.5px;
    border-style: dashed;
    animation: radar-rotate-reverse 30s linear infinite;
}

.hero-radar-rings .ring-3 {
    width: 52%;
    height: 52%;
    border-color: rgba(254, 193, 7, 0.12);
    border-style: dotted;
    animation: radar-rotate 18s linear infinite;
}

/* Efecto de barrido de radar de geomática */
.hero-radar-rings .radar-sweep {
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, rgba(13, 82, 134, 0.08) 0deg, transparent 90deg, transparent 360deg);
    border-radius: 50%;
    animation: radar-rotate 12s linear infinite;
}

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

@keyframes radar-rotate-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes radar-pulse-light {
    0% { transform: scale(0.9) translate(0, 0); opacity: 0.6; }
    100% { transform: scale(1.1) translate(30px, -20px); opacity: 0.9; }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.bic-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(13, 82, 134, 0.15);
    border-radius: 30px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(13, 82, 134, 0.03);
    transition: var(--transition-smooth);
}

.bic-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--brand-primary);
    box-shadow: 0 6px 20px rgba(13, 82, 134, 0.08);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(13, 82, 134, 0.4);
    animation: beacon-pulse-primary 1.8s infinite;
}

@keyframes beacon-pulse-primary {
    0% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(13, 82, 134, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(13, 82, 134, 0); }
    100% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(13, 82, 134, 0); }
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brand-primary);
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--brand-primary);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* --- Botones Genéricos Premium --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--white);
    border: 1px solid var(--brand-primary);
    box-shadow: 0 10px 25px rgba(13, 82, 134, 0.15);
}

.btn-primary:hover {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(254, 193, 7, 0.35);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--brand-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
}

.btn-secondary:hover {
    background-color: var(--bg-light-secondary);
    border-color: var(--brand-primary);
    transform: translateY(-3px);
}

.video-hud-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 15px 40px rgba(13, 82, 134, 0.08);
}

.clean-video-frame {
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(13, 82, 134, 0.15);
    box-shadow: 0 20px 50px rgba(13, 82, 134, 0.12);
    overflow: hidden;
    background: var(--white);
}

.clean-video-frame .video-container {
    height: 100%;
    border: none;
    border-radius: 10px;
}

.hud-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--brand-primary);
    border-style: solid;
    z-index: 10;
}

.hud-corner.top-left { top: 6px; left: 6px; border-width: 2px 0 0 2px; }
.hud-corner.top-right { top: 6px; right: 6px; border-width: 2px 2px 0 0; }
.hud-corner.bottom-left { bottom: 6px; left: 6px; border-width: 0 0 2px 2px; }
.hud-corner.bottom-right { bottom: 6px; right: 6px; border-width: 0 2px 2px 0; }

.hud-scanner-line {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
    z-index: 8;
    pointer-events: none;
    animation: scanner-sweep-light 5s infinite linear;
}

@keyframes scanner-sweep-light {
    0% { top: 12px; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: calc(100% - 14px); opacity: 0; }
}

.hud-metadata {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 10px;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.rec-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #d32f2f;
}

.rec-indicator .dot {
    width: 6px;
    height: 6px;
    background-color: #d32f2f;
    border-radius: 50%;
    animation: rec-blink 1s infinite alternate;
}

.video-container {
    position: relative;
    width: 100%;
    height: calc(100% - 30px);
    background-color: var(--bg-dark-hud);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.video-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(185, 211, 231, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 211, 231, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 3;
    pointer-events: none;
}

.hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.4;
}

.hud-crosshair .circle {
    width: 100%;
    height: 100%;
    border: 1px dashed var(--brand-light-blue);
    border-radius: 50%;
}

.hud-crosshair .horizontal {
    position: absolute;
    top: 50%;
    left: -15px;
    right: -15px;
    height: 1px;
    background: var(--brand-light-blue);
}

.hud-crosshair .vertical {
    position: absolute;
    left: 50%;
    top: -15px;
    bottom: -15px;
    width: 1px;
    background: var(--brand-light-blue);
}

.hud-pitch-ladder {
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 10%;
    width: 80px;
    border-right: 1px solid rgba(185, 211, 231, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: monospace;
    font-size: 9px;
    color: rgba(185, 211, 231, 0.35);
    z-index: 4;
    pointer-events: none;
}

.ladder-line {
    padding-right: 5px;
    text-align: right;
}

.video-placeholder-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(6, 22, 35, 0.3) 0%, rgba(3, 10, 15, 0.9) 100%);
    transition: var(--transition-smooth);
}

.video-placeholder-ui.hidden {
    opacity: 0;
    pointer-events: none;
}

.hud-sensor-icon {
    font-size: 2.2rem;
    color: var(--brand-gold);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(254, 193, 7, 0.4));
}

.placeholder-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.placeholder-subtitle {
    font-size: 0.75rem;
    color: var(--brand-light-blue);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.play-hud-btn {
    position: relative;
    width: 64px;
    height: 64px;
    background: var(--brand-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    box-shadow: 0 0 20px rgba(13, 82, 134, 0.6);
    transition: var(--transition-fast);
    z-index: 10;
}

.play-hud-btn .play-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    animation: beacon-pulse 2s infinite;
}

.play-hud-btn:hover {
    background-color: var(--brand-gold);
    color: var(--bg-dark-utility);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(254, 193, 7, 0.7);
}

.main-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.hud-bottom-controls {
    position: absolute;
    bottom: 5px;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 9px;
    color: rgba(185, 211, 231, 0.45);
    z-index: 10;
    letter-spacing: 1px;
}

/* ==========================================================================
   Nueva Sección: Sobre Nosotros (Quiénes Somos, Misión, Visión)
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light-secondary);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(185, 211, 231, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(13, 82, 134, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.about-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.about-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-light-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.about-icon-box {
    width: 68px;
    height: 68px;
    background-color: var(--bg-light-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.about-card-title {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--brand-primary);
}

.about-card-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.about-card-footer {
    border-top: 1px solid var(--bg-light-secondary);
    padding-top: 1rem;
}

.tech-stamp {
    font-family: monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13, 82, 134, 0.25);
}

.about-card:hover .about-card-glow {
    transform: scaleX(1);
}

.about-card:hover .about-icon-box {
    background-color: var(--brand-primary);
    color: var(--white) !important;
}

.about-card:hover .about-icon-box i {
    -webkit-text-fill-color: var(--white);
}

/* ==========================================================================
   Sección Servicios: Geomatics Control Center
   ========================================================================== */
.services-section {
    padding: 110px 0;
    background: var(--white);
    background-image: 
        radial-gradient(circle at 50% 10%, rgba(185, 211, 231, 0.08) 0%, transparent 60%);
    position: relative;
}

/* Marco Tecnológico Destacado para Título de Servicios */
.advanced-services-title-frame {
    position: relative;
    border: 1px solid var(--border-light);
    background-color: var(--bg-light-secondary);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 5rem;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.advanced-services-title-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(185, 211, 231, 0.15) 0%, transparent 80%);
}

.frame-crosshair {
    position: absolute;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    color: var(--brand-primary);
    opacity: 0.6;
    pointer-events: none;
    z-index: 5;
}

.frame-crosshair.top-l { top: 8px; left: 12px; }
.frame-crosshair.top-r { top: 8px; right: 12px; }
.frame-crosshair.bottom-l { bottom: 8px; left: 12px; }
.frame-crosshair.bottom-r { bottom: 8px; right: 12px; }

.tech-glow-tag {
    font-weight: 800 !important;
    color: var(--brand-primary) !important;
    text-shadow: 0 0 10px rgba(13, 82, 134, 0.1);
}

.massive-section-title {
    font-size: 3rem;
    letter-spacing: -1.5px;
    color: var(--brand-primary);
    text-transform: uppercase;
    margin: 0.5rem 0 1rem;
    font-weight: 800;
}

.services-title-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-gold));
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
}

.text-dark-subtitle {
    color: var(--text-dark) !important;
    font-weight: 400 !important;
}

/* Tabs Bar */
.tech-tabs-wrapper {
    margin-bottom: 3.5rem;
    border-bottom: 1px solid var(--border-light);
}

.tech-tabs-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.tech-tab-btn {
    background: transparent;
    border: none;
    padding: 1.5rem 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
}

.tech-tab-btn .tab-index {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}

.tech-tab-btn .tab-label {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.tech-tab-btn:hover {
    border-bottom-color: var(--brand-light-blue);
}

.tech-tab-btn:hover .tab-label {
    color: var(--brand-primary);
}

.tech-tab-btn.active {
    border-bottom-color: var(--brand-primary);
}

.tech-tab-btn.active .tab-label {
    color: var(--brand-primary);
}

.tech-tab-btn.active .tab-index {
    color: var(--brand-gold);
}

/* Tab Panes */
.tech-tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 
        opacity var(--transition-smooth),
        transform var(--transition-smooth),
        visibility var(--transition-smooth);
    z-index: 1;
}

.tab-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.pane-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.service-pane-title {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    color: var(--brand-primary);
}

.service-pane-desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.includes-container {
    background-color: var(--bg-light-secondary);
    border-left: 4px solid var(--brand-primary);
    border-radius: 0 12px 12px 0;
    padding: 2rem;
    box-shadow: var(--shadow-premium);
}

.includes-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--brand-primary);
}

.includes-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.include-item {
    border-bottom: 1px solid rgba(13, 82, 134, 0.06);
    padding-bottom: 1rem;
}

.include-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.include-header {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-primary);
    margin-bottom: 0.35rem;
}

.include-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Pane Visual (Technical Placeholder Frame) */
.image-telemetry-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.2rem;
    overflow: hidden;
}

.img-hud-top {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 9px;
    color: var(--brand-primary);
    opacity: 0.7;
    margin-bottom: 0.6rem;
    z-index: 10;
    position: relative;
}

.img-hud-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 4;
}

.img-hud-cross::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(13, 82, 134, 0.1);
}

.img-hud-cross::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(13, 82, 134, 0.1);
}

.img-scale-bar {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    width: 120px;
    z-index: 10;
}

.scale-ticks {
    height: 6px;
    border: 1px solid var(--brand-primary);
    border-top: none;
    border-radius: 0 0 2px 2px;
}

.scale-label {
    font-family: monospace;
    font-size: 7px;
    color: var(--brand-primary);
    margin-top: 2px;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.photo-placeholder-box {
    width: 100%;
    height: calc(100% - 25px);
    background-color: var(--white);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    border: 1px dashed var(--border-light);
    padding: 2rem;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: var(--transition-fast);
}

.photo-placeholder-box:hover {
    border-style: solid;
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background-color: var(--bg-light-tertiary);
}

.photo-icon {
    font-size: 2.2rem;
    color: var(--brand-primary);
    opacity: 0.8;
    transition: var(--transition-fast);
}

.photo-placeholder-box:hover .photo-icon {
    color: var(--brand-gold);
}

.sub-placeholder-txt {
    font-family: monospace;
    font-size: 0.7rem;
    opacity: 0.6;
    font-weight: normal;
}

/* --- Added Styles for Real Assets & Slideshows --- */
.pane-service-image {
    width: 100%;
    height: calc(100% - 25px);
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.image-telemetry-container:hover .pane-service-image {
    transform: scale(1.03);
    border-color: var(--brand-primary);
}

.lidar-slideshow {
    width: 100%;
    height: calc(100% - 25px);
    border-radius: 6px;
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.image-telemetry-container:hover .lidar-slideshow {
    transform: scale(1.03);
    border-color: var(--brand-primary);
}

.lidar-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.lidar-slide.active {
    opacity: 1;
}

/* --- Sección Ventajas LiDAR (Tema Oscuro Premium) --- */
.advantages-section {
    padding: 100px 0;
    background-color: #061623; /* Fondo oscuro tecnológico */
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.advantages-section .section-title {
    color: #ffffff !important;
}

.advantages-section .section-subtitle {
    color: #a8c0d1 !important;
}

.advantages-section .section-tag {
    color: var(--brand-gold) !important;
    border-color: rgba(254, 193, 7, 0.3) !important;
    background: rgba(254, 193, 7, 0.08) !important;
}

.advantages-section .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #3ca0ec 60%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.advantage-card {
    grid-column: span 2;
    background: #0e2537; /* Tarjeta oscura elegante */
    border: 1px solid rgba(185, 211, 231, 0.1);
    border-radius: 12px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 10, 15, 0.35);
    transition: var(--transition-smooth);
}

.advantages-grid .advantage-card:nth-child(4) {
    grid-column: span 3;
}

.advantages-grid .advantage-card:nth-child(5) {
    grid-column: span 3;
}

.adv-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(185, 211, 231, 0.25);
}

.adv-icon {
    font-size: 2rem;
    color: var(--brand-gold); /* Icono dorado brillante en fondo oscuro */
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.adv-title {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.adv-desc {
    font-size: 0.95rem;
    color: #a8c0d1; /* Texto secundario claro */
    line-height: 1.6;
    font-weight: 400;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold), #1e87d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(13, 82, 134, 0.25);
    border-color: rgba(254, 193, 7, 0.45);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover .adv-icon {
    color: #ffffff;
}

/* --- Avalúos: Deck de 6 Categorías (Tema Claro) --- */
.appraisals-section {
    padding: 100px 0;
    background-color: var(--white);
}

.appraisals-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.appraisal-card {
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.2rem;
    position: relative;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.appraisal-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--brand-primary);
    transition: var(--transition-fast);
}

.card-category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.card-icon {
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 1.25rem;
    transition: var(--transition-fast);
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--brand-primary);
}

.card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.appraisal-card:hover {
    background-color: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13, 82, 134, 0.25);
}

.appraisal-card:hover .appraisal-card-border {
    background-color: var(--brand-gold);
    width: 6px;
}

.appraisal-card:hover .card-icon {
    color: var(--brand-gold);
}

/* ==========================================================================
   Nueva Sección: Repositorios Geoespaciales en Línea
   ========================================================================== */
.repositories-section {
    padding: 100px 0;
    background-color: var(--bg-light-secondary);
    position: relative;
    border-top: 1px solid var(--border-light);
    overflow: hidden;
}

.repo-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(13, 82, 134, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

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

.repo-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.repo-icon {
    font-size: 2.2rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-fast);
}

.repo-title {
    font-size: 1.25rem;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.repo-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-repo-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--bg-light-secondary);
    color: var(--brand-primary);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.btn-repo-download:hover {
    background-color: var(--brand-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 82, 134, 0.15);
}

.repo-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: monospace;
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 1.25rem;
    border-top: 1px solid var(--bg-light-secondary);
    padding-top: 0.75rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.online {
    background-color: #4caf50;
    box-shadow: 0 0 6px #4caf50;
    animation: beacon-pulse-primary 2s infinite; /* Simula parpadeo online */
}

.repo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13, 82, 134, 0.25);
}

.repo-card:hover .repo-icon {
    transform: scale(1.1);
}

/* ==========================================================================
   Relocated Partner Slider Marquee (Light Translúcido)
   ========================================================================== */
.partner-slider-section {
    background-color: var(--bg-light-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(13, 82, 134, 0.02);
}

.slider-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.slider-title-accent {
    width: 6px;
    height: 6px;
    background: var(--brand-primary);
    transform: rotate(45deg);
}

.slider-title-text {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--brand-primary);
}

.infinite-marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.infinite-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 75s infinite linear;
}

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

.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 80px;
    padding: 0.5rem 1.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border-right: 1px solid rgba(13, 82, 134, 0.06);
}

.partner-logo-img {
    max-height: 48px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover .partner-logo-img {
    filter: grayscale(0) opacity(1) drop-shadow(0 4px 12px rgba(13, 82, 134, 0.15));
    transform: scale(1.16);
}

/* --- Formulario de Contacto Georreferenciado (Tema Claro) --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(185, 211, 231, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(13, 82, 134, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.contact-title {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--brand-primary);
}

.contact-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-light-secondary);
    border: 1px solid var(--border-light);
    padding: 1.25rem 1.75rem;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.contact-item-card .item-icon {
    font-size: 1.35rem;
    color: var(--brand-primary);
    width: 42px;
    height: 42px;
    background: rgba(13, 82, 134, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.contact-item-card .item-text {
    display: flex;
    flex-direction: column;
}

.contact-item-card .item-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-card .item-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-primary);
}

.contact-item-card:hover {
    background: var(--bg-light-tertiary);
    border-color: var(--brand-primary);
    transform: translateX(5px);
}

.contact-item-card:hover .item-icon {
    background: var(--brand-primary);
    color: var(--white);
    box-shadow: 0 0 12px rgba(13, 82, 134, 0.3);
}

/* Contact Form UI */
.contact-form-panel {
    background: var(--bg-light-secondary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.form-hud-header {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 10px;
    color: var(--brand-primary);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.75rem;
    font-weight: 700;
}

.form-hud-title {
    letter-spacing: 1.5px;
}

.form-hud-id {
    opacity: 0.6;
}

.tech-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.tech-input {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.tech-input::placeholder {
    color: #8fa6b8;
}

.tech-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 8px rgba(13, 82, 134, 0.15);
}

.input-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.tech-input:focus ~ .input-icon {
    color: var(--brand-primary);
}

select.tech-input {
    appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

textarea.tech-input {
    resize: none;
}

.form-submit-btn {
    border: none;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    padding: 1.1rem;
    font-size: 1rem;
}

.form-feedback {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: monospace;
    font-size: 11px;
    color: var(--brand-primary);
    padding: 0.75rem 1rem;
    border: 1px solid rgba(13, 82, 134, 0.2);
    border-radius: 6px;
    background: rgba(13, 82, 134, 0.05);
}

.form-feedback.hidden {
    display: none;
}

.form-feedback.success {
    color: #4caf50;
    border-color: rgba(76, 175, 80, 0.2);
    background: rgba(76, 175, 80, 0.05);
}

/* --- Footer (Tema Oscuro Premium) --- */
.main-footer {
    background-color: #061623; /* Fondo oscuro coincidiendo con ventajas LiDAR */
    color: #a0b9cc;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    padding-bottom: 60px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.brand-logo-footer {
    height: 50px !important;
    width: auto !important;
    max-height: 50px !important;
    object-fit: contain !important;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-brand-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #a0b9cc;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #b9d3e7;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--brand-gold);
    color: var(--bg-dark-utility);
    border-color: var(--brand-gold);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff; /* Título blanco */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.footer-link {
    font-size: 0.9rem;
    color: #b0c5d4;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--brand-gold) !important;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
    font-size: 0.8rem;
    color: #8fa5b8;
}

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

.copyright-text {
    max-width: 70%;
    line-height: 1.5;
}

.telemetry-stamp {
    font-family: monospace;
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- Video Modal Player --- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 960px;
    background-color: var(--bg-dark-utility);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--bg-dark-hud);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: #90a4ae;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--white);
}

.modal-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.modal-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 2;
}

.modal-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--brand-light-blue);
    font-family: monospace;
    font-size: 11px;
    z-index: 1;
}

.modal-loading i {
    font-size: 2rem;
}

.modal-footer {
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-dark-hud);
    font-family: monospace;
    font-size: 9px;
    color: rgba(185, 211, 231, 0.35);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Animaciones de Aparición (Reveal on Scroll) --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity var(--transition-slow),
        transform var(--transition-slow);
}

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

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ==========================================================================
   Advanced Custom Animation Keyframes for Icons
   ========================================================================== */
.fa-spin-slow {
    animation: fa-spin 15s infinite linear;
}

/* 1. Orbit satellite drift */
.sat-pulse {
    animation: sat-drift 4s infinite alternate ease-in-out;
}
@keyframes sat-drift {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
    100% { transform: translateY(1px) rotate(-3deg); }
}

/* 2. Pulsing / Glowing georeferencing */
.icon-pulse {
    animation: pulse-glow-scale 2s infinite ease-in-out;
}
@keyframes pulse-glow-scale {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(13, 82, 134, 0.2)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(13, 82, 134, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(13, 82, 134, 0.2)); }
}

/* 3. Orbit radar sweep icon */
.radar-sweep-icon {
    animation: radar-sweep-frame 5s infinite linear;
}
@keyframes radar-sweep-frame {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 4. Eye scanning effect */
.eye-scan {
    animation: eye-scan-y 3s infinite alternate ease-in-out;
}
@keyframes eye-scan-y {
    0% { transform: scaleY(0.9) translateY(-2px); }
    100% { transform: scaleY(1.1) translateY(2px); }
}

/* 5. Database bouncing backup */
.db-bounce {
    animation: database-pulsate 2.5s infinite ease-in-out;
}
@keyframes database-pulsate {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* 6. Satellite dish beat */
.sat-dish-beat {
    animation: dish-beat 3s infinite ease-in-out;
}
@keyframes dish-beat {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* 7. Waving point cloud */
.point-cloud-pulse {
    animation: p-cloud 4s infinite alternate ease-in-out;
}
@keyframes p-cloud {
    0% { transform: rotate(0deg) scale(0.95); }
    100% { transform: rotate(8deg) scale(1.05); }
}

/* 8. Floating folders / items */
.folder-bounce {
    animation: folder-up-down 3s infinite alternate ease-in-out;
}
@keyframes folder-up-down {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.img-float {
    animation: float-drift 5s infinite alternate ease-in-out;
}
@keyframes float-drift {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-5px) rotate(4deg); }
}

.user-float {
    animation: user-scale 4s infinite alternate ease-in-out;
}
@keyframes user-scale {
    0% { transform: scale(0.95); }
    100% { transform: scale(1.05); }
}

.award-pulse {
    animation: award-shine 4s infinite ease-in-out;
}
@keyframes award-shine {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2) drop-shadow(0 0 10px rgba(254, 193, 7, 0.4)); }
    100% { transform: scale(1); filter: brightness(1); }
}

.icon-bounce {
    animation: simple-bounce 2s infinite ease-in-out;
}
@keyframes simple-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ==========================================================================
   Responsive Adaptability (Mobile-First)
   ========================================================================== */

@media (max-width: 1200px) {
    .nav-search-container {
        max-width: 200px;
    }
    .nav-right-actions {
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    html { font-size: 15px; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .bic-badge {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pane-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pane-visual {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .advantage-card {
        grid-column: span 2;
    }
    
    .advantages-grid .advantage-card:nth-child(4),
    .advantages-grid .advantage-card:nth-child(5) {
        grid-column: span 2;
    }
    
    .appraisals-deck {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .repos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 900px) {
    /* Ocultar barra superior en tablets y móviles */
    .header-top-bar {
        display: none;
    }
    .main-header {
        top: 28px;
    }
    
    /* Ocultar elementos de navegación y botón CTA de la barra principal */
    .nav-center-menu,
    .nav-right-actions-clean {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .brand-logo-left-wrapper {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .hud-telemetry-bar {
        justify-content: space-around;
        padding: 0 0.5rem;
    }
    
    .hidden-mobile {
        display: none !important;
    }
    
    .mobile-slide-nav {
        top: 92px;
        height: calc(100vh - 92px);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .massive-section-title {
        font-size: 2.2rem;
    }
    
    .tech-tabs-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-tab-btn:last-child {
        grid-column: span 2;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card,
    .advantages-grid .advantage-card:nth-child(4),
    .advantages-grid .advantage-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .appraisals-deck {
        grid-template-columns: 1fr;
    }
    
    .repos-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .copyright-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .tech-tabs-nav {
        grid-template-columns: 1fr;
    }
    .tech-tab-btn, .tech-tab-btn:last-child {
        grid-column: span 1;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .contact-form-panel {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   HUD Toast Notification System (Interactive Coordinates Search)
   ========================================================================== */
.hud-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 320px;
    background: rgba(6, 22, 35, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(185, 211, 231, 0.25);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(6, 22, 35, 0.5);
    color: var(--white);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.hud-toast.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hud-toast-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(13, 82, 134, 0.4);
    border-bottom: 1px solid rgba(185, 211, 231, 0.15);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--brand-light-blue);
}

.hud-toast-header i {
    color: var(--brand-gold);
}

.hud-toast-close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.hud-toast-close:hover {
    color: var(--white);
}

.hud-toast-body {
    padding: 1rem;
    font-family: monospace;
    font-size: 0.75rem;
}

.hud-toast-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.hud-toast-lbl {
    color: rgba(185, 211, 231, 0.6);
}

.hud-toast-val {
    color: var(--white);
    font-weight: bold;
}

.hud-toast-val.yellow-blink {
    color: var(--brand-gold);
    animation: text-pulse-blink 1s infinite alternate;
}

@keyframes text-pulse-blink {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hud-toast-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.hud-toast-bar {
    width: 100%;
    height: 100%;
    background: var(--brand-gold);
    animation: toast-loader-run 1.8s linear forwards;
}

@keyframes toast-loader-run {
    0% { width: 0%; }
    100% { width: 100%; }
}

.hud-toast-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4caf50;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.text-green {
    color: #4caf50 !important;
}

/* ==========================================================================
   WhatsApp Premium Floating Button
   ========================================================================== */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.95rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.whatsapp-floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    opacity: 0.5;
    animation: whatsapp-pulse 2s infinite ease-out;
}

.whatsapp-floating-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2ae772 0%, #14a393 100%);
}

.whatsapp-floating-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #061623; /* Coincide con nuestro tono premium oscuro */
    color: #ffffff;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(185, 211, 231, 0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: #061623;
    border-right: 1px solid rgba(185, 211, 231, 0.15);
    border-top: 1px solid rgba(185, 211, 231, 0.15);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ==========================================================================
   Custom Video HUD Controls
   ========================================================================== */
.video-hud-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(3, 10, 15, 0.95) 0%, rgba(3, 10, 15, 0.5) 75%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

/* Mostrar controles cuando el mouse está encima o cuando el video está activo */
.video-container:hover .video-hud-controls,
.video-hud-controls.active {
    opacity: 1;
    visibility: visible;
}

.hud-ctrl-left {
    display: flex;
    gap: 0.75rem;
}

.hud-btn {
    background: rgba(6, 22, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.hud-btn:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    background: rgba(254, 193, 7, 0.15);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(254, 193, 7, 0.2);
}

.hud-ctrl-right {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
}

.time-elapsed.telemetry-stamp {
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   LiDAR Manual Slideshow Controls
   ========================================================================== */
.lidar-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.lidar-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}

.lidar-slide.active {
    opacity: 1;
    z-index: 2;
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(6, 22, 35, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(185, 211, 231, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all var(--transition-fast);
}

.slideshow-arrow:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(13, 82, 134, 0.4);
}

.slideshow-arrow.prev {
    left: 1.25rem;
}

.slideshow-arrow.next {
    right: 1.25rem;
}

.slideshow-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
    background: rgba(6, 22, 35, 0.5);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.slideshow-dot.active {
    background: var(--brand-gold);
    width: 22px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--brand-gold);
}

/* ==========================================================================
   Interactive Map Section
   ========================================================================== */
.map-section {
    padding: 0 0 60px 0;
    background-color: var(--white);
}

.map-hud-frame {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.map-hud-header {
    background-color: var(--bg-dark-utility);
    border-radius: 12px 12px 0 0;
    padding: 0.85rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(185, 211, 231, 0.15);
    border-bottom: none;
    font-family: monospace;
    font-size: 11px;
    color: var(--brand-light-blue);
    letter-spacing: 1px;
}

.map-hud-header .hud-coords {
    color: var(--brand-gold);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(254, 193, 7, 0.4);
}

.map-container {
    border: 1px solid var(--border-light);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    height: 300px; /* Reducido según comentarios del usuario */
    box-shadow: 0 15px 40px rgba(13, 82, 134, 0.08);
}

/* ==========================================================================
   Floating Vertical Social Sidebar
   ========================================================================== */
.floating-social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fec107; /* Color naranja/dorado tal como en la foto */
    display: flex;
    flex-direction: column;
    padding: 12px 8px;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 20px rgba(254, 193, 7, 0.35);
    z-index: 9998; /* Un nivel por debajo de WhatsApp */
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-social-sidebar:hover {
    padding-left: 14px;
    box-shadow: -6px 0 25px rgba(254, 193, 7, 0.5);
}

.social-side-btn {
    color: var(--white) !important;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.social-side-btn:hover {
    color: var(--bg-dark-utility) !important;
    transform: scale(1.2);
}



