/*
Theme Name: Avisar Traducciones
Theme URI: https://www.avisartraducciones.com
Author: Avisar & Focus Creative
Author URI: https://www.avisartraducciones.com
Description: Tema institucional minimalista, ultra rápido y responsivo para Avisar Traducciones. Diseñado conforme a la guía de estilo de Focus Creative con Google Fonts Montserrat y Open Sans.
Version: 2.4
Text Domain: avisar-theme
*/

/* ==========================================================================
   1. VARIABLES Y TOKENS DE DISEÑO (NAVY & GOLD PALETTE)
   ========================================================================== */
:root {
    /* Colores Principales */
    --color-navy: #0A1128;
    --color-navy-dark: #040914;
    --color-navy-card: #0A162E;
    --color-navy-light: #1E2942;
    
    --color-gold: #D4AF37;
    --color-gold-light: #F3E5AB;
    --color-gold-dark: #B8860B;
    
    --color-blue-cta: #2563EB;
    --color-blue-hover: #1D4ED8;
    --color-cyan-accent: #00F0FF;
    --color-green-whatsapp: #25D366;
    
    /* Neutros y Superficies */
    --color-bg-light: #F8FAFC;
    --color-bg-card-light: #FFFFFF;
    --color-text-dark: #0F172A;
    --color-text-muted: #64748B;
    --color-text-light: #F8FAFC;
    --color-text-dim: #94A3B8;
    --color-border-light: #E2E8F0;
    --color-border-glass: rgba(255, 255, 255, 0.1);
    
    /* Tipografía */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Sombras y Efectos */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.25);
    --glass-bg: rgba(10, 22, 46, 0.88);
    --glass-blur: blur(16px);
    
    /* Transitivas */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-dark);
}

h1 strong, h2 strong, h3 strong, p strong {
    font-weight: 600;
    color: inherit;
}

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

a:hover {
    color: var(--color-blue-hover);
}

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

ul, ol {
    list-style: none;
}

/* ==========================================================================
   3. LAYOUT & CONTENEDORES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container.wide-container {
    max-width: 1380px !important;
}

.section-padding {
    padding: 96px 0;
}

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

/* ==========================================================================
   4. CABECERA & NAVEGACIÓN (FONDO BLANCO PURO REAL)
   ========================================================================== */
.top-bar {
    background-color: #F8FAFC !important;
    color: #475569 !important;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid #E2E8F0 !important;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 24px;
}

.top-info a {
    color: #475569 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-info a:hover {
    color: var(--color-gold-dark) !important;
}

.top-location {
    color: #475569 !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: var(--transition-normal);
}

/* COMPATIBILIDAD CON BARRA DE ADMINISTRACIÓN DE WORDPRESS */
body.admin-bar .site-header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px !important;
    }

    body.admin-bar .main-navigation {
        top: 110px !important;
        height: calc(100vh - 110px) !important;
    }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px !important;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* LOGO EN TAMAÑO AJUSTADO Y COMPACTO */
.logo-img {
    height: 64px !important;
    max-height: 64px !important;
    width: auto !important;
    max-width: 320px !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: transform 0.2s ease;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

.main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.925rem;
    color: #0F172A !important;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold-dark) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-dark) !important;
    transition: var(--transition-fast);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Menu Hamburguesa Móvil */
.mobile-toggle {
    display: none;
    background: rgba(10, 17, 40, 0.05);
    border: 1px solid rgba(10, 17, 40, 0.12);
    border-radius: var(--radius-sm);
    color: var(--color-navy) !important;
    font-size: 1.35rem;
    cursor: pointer;
    padding: 8px 14px;
    transition: var(--transition-fast);
}

.mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold-dark) !important;
    border-color: var(--color-gold);
}

@media (max-width: 992px) {
    .top-bar { display: none; }

    .header-container {
        height: 64px !important;
    }

    .logo-img {
        height: 48px !important;
        max-height: 48px !important;
        max-width: 240px !important;
    }

    .main-navigation {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        z-index: 9999;
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 22px;
        margin-bottom: 32px;
    }

    .nav-link {
        font-size: 1.15rem;
        padding: 8px 16px;
    }

    .header-cta {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .header-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .gtranslate_wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ==========================================================================
   5. BOTONES (CTA BUTTONS)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #0A1128 !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.5);
    color: #0A1128 !important;
    filter: brightness(1.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--color-green-whatsapp);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.85rem;
}

/* ==========================================================================
   6. HERO INSTITUCIONAL CON TEXTO EN ALTO RELIEVE CON ANIMACIÓN DE LUCES
   ========================================================================== */
.hero-section.clear-map-hero {
    background-color: #040914;
    background-image: 
        radial-gradient(circle at 50% 15%, rgba(0, 240, 255, 0.18) 0%, transparent 65%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.14) 0%, transparent 55%);
    color: #FFFFFF;
    padding: 56px 0 70px 0;
    overflow: hidden;
}

/* BLOQUE DE TEXTO SUPERIOR CENTRADO */
.hero-header-text {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 40px auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-full);
    color: var(--color-gold-light);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.85rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.18;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--color-gold-light);
}

.hero-trust-horizontal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(10, 22, 46, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: #E2E8F0;
}

.trust-pill i {
    color: var(--color-gold-light);
    font-size: 0.8rem;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .hero-title { font-size: 2.1rem; }
    .hero-trust-horizontal { flex-direction: column; align-items: center; }
}

/* MARCA EN ALTO RELIEVE CON ANIMACIÓN DE LUCES BRILLANTES EN EL MAPA */
.map-embossed-brand {
    text-align: center;
    padding: 18px 24px 14px 24px;
    background: linear-gradient(180deg, rgba(10, 22, 46, 0.96) 0%, rgba(4, 9, 20, 0.9) 100%);
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    position: relative;
    z-index: 15;
}

.embossed-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(90deg, #F3E5AB 0%, #00F0FF 25%, #FFFFFF 50%, #D4AF37 75%, #F3E5AB 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lightShimmer 3.5s infinite linear;
    filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.95)) drop-shadow(0px 0px 18px rgba(0, 240, 255, 0.65));
}

.embossed-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: #00F0FF;
    margin-top: 4px;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.9), 0 2px 4px rgba(0,0,0,0.95);
    position: relative;
    display: inline-block;
}

.embossed-subtitle::before,
.embossed-subtitle::after {
    content: '✦';
    margin: 0 12px;
    color: #D4AF37;
    font-size: 0.85rem;
    animation: starPulse 2s infinite ease-in-out;
}

@keyframes lightShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes starPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.35); }
}

@media (max-width: 640px) {
    .embossed-title { font-size: 1.35rem; letter-spacing: 2px; }
    .embossed-subtitle { font-size: 0.725rem; letter-spacing: 3px; }
}

/* TABLERO ESTRUCTURADO Y NEÓN BRILLANTE DEL MAPA MUNDIAL */
.hero-map-board.bright-map-board {
    width: 100%;
    max-width: 1320px !important;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 240, 255, 0.15), 0 0 40px rgba(10, 22, 46, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.35);
    background: #040914;
}

/* BARRA DE ESTRUCTURA Y NAVEGACIÓN SUPERIOR DEL MAPA */
.map-board-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: linear-gradient(90deg, rgba(10, 22, 46, 0.95), rgba(4, 9, 20, 0.95));
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    font-family: var(--font-heading);
}

.map-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.map-header-title i {
    color: #00F0FF;
    font-size: 1rem;
}

.map-header-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.map-pill {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.map-pill.glow-pill {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #00F0FF;
}

/* HERO HEADER ULTRA AMPLIO CON ESQUINAS BIFUMINADAS Y DEGRADADOS */
.hero-header-ultra-wide {
    position: relative;
    padding: 60px 0 80px 0;
    background: radial-gradient(ellipse at 50% 30%, #f9f9f9 0%, #e0e5ec 60%, #c8d0db 100%);
    overflow: hidden;
}

.ultra-wide-container {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.ultra-wide-map-board {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.9), inset 0 0 100px rgba(0, 0, 0, 0.95);
    background: #0A162E;

}

/* SOBRECAPAS DE DEGRADADO Y BIFUMINADO EN LAS 4 ESQUINAS DEL MAPA */
.corner-feather {
    position: absolute;
    width: 250px;
    height: 200px;
    z-index: 4;
    pointer-events: none;
    filter: blur(25px);
    opacity: 0.85;
}

.feather-top-left {
    top: 0;
    left: 0;
    background: radial-gradient(circle at top left, #050C1A 20%, rgba(5, 12, 26, 0.8) 60%, transparent 100%);
}

.feather-top-right {
    top: 0;
    right: 0;
    background: radial-gradient(circle at top right, #050C1A 20%, rgba(5, 12, 26, 0.8) 60%, transparent 100%);
}

.feather-bottom-left {
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at bottom left, #050C1A 20%, rgba(5, 12, 26, 0.8) 60%, transparent 100%);
}

.feather-bottom-right {
    bottom: 0;
    right: 0;
    background: radial-gradient(circle at bottom right, #050C1A 20%, rgba(5, 12, 26, 0.8) 60%, transparent 100%);
}

.map-pill.gold-pill {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #F3E5AB;
}

.map-pill.blue-pill {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.4);
    color: #93C5FD;
}

@media (max-width: 768px) {
    .map-board-header { flex-direction: column; gap: 10px; text-align: center; }
}

.map-board-inner {
    position: relative;
    width: 100%;
    padding-bottom: 52%; /* Aspect ratio 1000x520 */
    height: 0;
    overflow: hidden;
}

.world-map-bg-clean {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.98;
    filter: brightness(1.15) contrast(1.1);
}

/* RED DE CONEXIONES SVG ANIMADAS GSAP NEÓN BRILLANTE */
.map-connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* LÍNEAS DE CONEXIÓN BASE EN NEÓN CIAN DE FONDO */
.arc-line-bg {
    fill: none;
    stroke: rgba(0, 240, 255, 0.35);
    stroke-width: 2px;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5));
}

/* LÍNEAS ANIMADAS ESTILO CONEXIÓN DE DATOS / LÁSER CON FLUJO CONTINUO DESDE COLOMBIA */
.arc-line-flow {
    fill: none;
    stroke: #00F0FF;
    stroke-width: 3.5px;
    stroke-linecap: round;
    stroke-dasharray: 14 26;
    animation: flowNetworkStream 1.6s linear infinite;
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.95)) drop-shadow(0 0 22px rgba(255, 255, 255, 0.8));
    transition: stroke-width 0.3s ease, filter 0.3s ease, stroke 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes flowNetworkStream {
    from {
        stroke-dashoffset: 80;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.arc-line-flow.active,
.map-board-inner.colombia-hover-active .arc-line-flow {
    stroke: #FFFFFF !important;
    stroke-width: 5.5px !important;
    stroke-dasharray: 18 18 !important;
    animation-duration: 0.9s !important;
    filter: drop-shadow(0 0 22px rgba(0, 240, 255, 1)) drop-shadow(0 0 35px rgba(255, 255, 255, 1)) !important;
}

/* HUB CENTRAL COLOMBIA (UBICACIÓN NOROCCIDENTE SURAMÉRICA EXACTA) */
.colombia-hub {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 50;
    cursor: pointer;
    padding: 16px;
    border-radius: 50%;
}

.colombia-hub::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: auto;
}

.colombia-hub:hover .colombia-badge {
    transform: scale(1.35);
    box-shadow: 0 0 45px rgba(0, 240, 255, 1), 0 0 30px rgba(212, 175, 55, 1);
    border-color: #00F0FF;
}

/* EFECTO CUANDO EL CURSOR ESTÁ SOBRE COLOMBIA (TODAS LAS LÍNEAS Y POPUPS REVELADOS) */
.map-board-inner.colombia-hover-active .arc-line {
    stroke: #00F0FF !important;
    stroke-width: 5.5px !important;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 1)) drop-shadow(0 0 35px rgba(255, 255, 255, 0.9)) !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
}

.map-board-inner.colombia-hover-active .map-marker-node {
    transform: translate(-50%, -50%) scale(1.22) !important;
    opacity: 1 !important;
    z-index: 100 !important;
}

.map-board-inner.colombia-hover-active .marker-popup {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.map-board-inner.colombia-hover-active .marker-popup.popup-top {
    transform: translateX(-50%) translateY(0) !important;
}
.map-board-inner.colombia-hover-active .marker-popup.popup-bottom {
    transform: translateX(-50%) translateY(0) !important;
}
.map-board-inner.colombia-hover-active .marker-popup.popup-left {
    transform: translateY(-50%) translateX(0) !important;
}
.map-board-inner.colombia-hover-active .marker-popup.popup-right {
    transform: translateY(-50%) translateX(0) !important;
}
.map-board-inner.colombia-hover-active .marker-popup.popup-top-left,
.map-board-inner.colombia-hover-active .marker-popup.popup-top-right,
.map-board-inner.colombia-hover-active .marker-popup.popup-bottom-left,
.map-board-inner.colombia-hover-active .marker-popup.popup-bottom-right {
    transform: translateY(0) !important;
}

.colombia-badge {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #0A162E, #1E2942);
    border: 2.5px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.95);
    position: relative;
    z-index: 3;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseExpand 2.5s infinite ease-out;
}

.pulse-ring.delay {
    animation-delay: 1.25s;
}

@keyframes pulseExpand {
    0% { width: 46px; height: 46px; opacity: 1; }
    100% { width: 130px; height: 130px; opacity: 0; }
}

/* MARCADORES DESTINO INTERNACIONAL CON POPUPS DIRECCIONALES NEÓN */
.map-marker-node {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.map-marker-node:hover {
    z-index: 100 !important;
}

.marker-thumb {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2.5px solid #00F0FF;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.85);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    background: #0A162E;
}

.marker-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-marker-node:hover .marker-thumb, .map-marker-node.active .marker-thumb {
    transform: scale(1.38);
    border-color: #D4AF37;
    box-shadow: 0 0 35px rgba(212, 175, 55, 1);
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    border: 2px solid #00F0FF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseMarker 2s infinite ease-out;
    pointer-events: none;
}

@keyframes pulseMarker {
    0% { width: 46px; height: 46px; opacity: 0.8; }
    100% { width: 90px; height: 90px; opacity: 0; }
}

/* POPUPS DIRECCIONALES INTELIGENTES CON EFECTO VIDRIO BRILLANTE */
.marker-popup {
    position: absolute;
    background: rgba(10, 22, 46, 0.97);
    border: 1px solid #00F0FF;
    backdrop-filter: blur(14px);
    border-radius: 8px;
    padding: 8px 16px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px rgba(0, 240, 255, 0.3);
    z-index: 100;
}

.marker-popup strong {
    display: block;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.875rem;
}

.marker-popup span {
    font-size: 0.75rem;
    color: var(--color-gold-light);
}

/* Posición: Arriba */
.marker-popup.popup-top {
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
}
.map-marker-node:hover .marker-popup.popup-top {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Posición: Abajo */
.marker-popup.popup-bottom {
    top: 58px;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
}
.map-marker-node:hover .marker-popup.popup-bottom {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Posición: Izquierda */
.marker-popup.popup-left {
    right: 58px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
}
.map-marker-node:hover .marker-popup.popup-left {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Posición: Derecha */
.marker-popup.popup-right {
    left: 58px;
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
}
.map-marker-node:hover .marker-popup.popup-right {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Posición: Arriba Izquierda */
.marker-popup.popup-top-left {
    bottom: 54px;
    right: 15px;
    transform: translateY(8px);
}
.map-marker-node:hover .marker-popup.popup-top-left {
    opacity: 1;
    transform: translateY(0);
}

/* Posición: Arriba Derecha */
.marker-popup.popup-top-right {
    bottom: 54px;
    left: 15px;
    transform: translateY(8px);
}
.map-marker-node:hover .marker-popup.popup-top-right {
    opacity: 1;
    transform: translateY(0);
}

/* Posición: Abajo Izquierda */
.marker-popup.popup-bottom-left {
    top: 54px;
    right: 15px;
    transform: translateY(-8px);
}
.map-marker-node:hover .marker-popup.popup-bottom-left {
    opacity: 1;
    transform: translateY(0);
}

/* Posición: Abajo Derecha */
.marker-popup.popup-bottom-right {
    top: 54px;
    left: 15px;
    transform: translateY(-8px);
}
.map-marker-node:hover .marker-popup.popup-bottom-right {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   7. SECCIÓN 2 — QUIÉNES SOMOS
   ========================================================================== */
.about-section {
    background-color: #FFFFFF;
}

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

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.section-header {
    margin-bottom: 24px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold-dark);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-box {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.box-icon {
    font-size: 1.8rem;
    color: var(--color-gold-dark);
    margin-bottom: 12px;
}

.box-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.box-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   8. SECCIÓN 3 — NUESTROS SERVICIOS
   ========================================================================== */
.services-section {
    background-color: var(--color-bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 992px) {
    .services-grid { grid-template-columns: 1fr; }
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(10, 17, 40, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-navy);
}

.service-card.gold-card .service-icon-wrapper {
    background: rgba(212, 175, 55, 0.12);
    color: var(--color-gold-dark);
}

.service-title {
    font-size: 1.6rem;
    color: var(--color-navy);
}

.service-description {
    color: var(--color-text-muted);
    font-size: 0.975rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.service-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.docs-list, .lang-tags {
    margin-bottom: 24px;
}

.docs-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.docs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold-dark);
    font-weight: 700;
}

.lang-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lang-badge {
    background: rgba(10, 17, 40, 0.06);
    color: var(--color-navy);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.service-info-box {
    background: #F1F5F9;
    border-left: 4px solid var(--color-gold-dark);
    padding: 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

/* ==========================================================================
   9. SECCIÓN 4 — ¿POR QUÉ ELEGIRNOS?
   ========================================================================== */
.why-us-section {
    background-color: #FFFFFF;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

@media (max-width: 992px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .why-grid { grid-template-columns: 1fr; }
}

.why-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: #FFFFFF;
    border-color: var(--color-gold);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.why-title {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 10px;
}

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

/* ==========================================================================
   10. SECCIÓN 5 — ARTÍCULOS DE INTERÉS
   ========================================================================== */
.articles-section {
    background-color: var(--color-bg-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

@media (max-width: 992px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .articles-grid { grid-template-columns: 1fr; }
}

.article-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.article-category {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-dark);
    margin-bottom: 12px;
}

.article-title {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 20px;
}

.article-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-link:hover {
    color: var(--color-gold-dark);
}

/* ==========================================================================
   11. SECCIÓN 6 — CONTACTO Y COTIZACIÓN
   ========================================================================== */
.contact-section {
    background-color: var(--color-navy);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    margin-top: 48px;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    color: #94A3B8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Formulario de Cotización */
.quote-form-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--color-text-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    background: #F8FAFC;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-dark);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   12. SECCIÓN DE ALIADOS Y PIE DE PÁGINA (FOOTER)
   ========================================================================== */
.allies-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.allies-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94A3B8;
    margin-bottom: 24px;
}

.allies-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ally-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.site-footer {
    background-color: var(--color-navy-dark);
    color: #94A3B8;
    padding: 32px 0;
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-tagline {
    color: var(--color-gold-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   DESTELLOS MINIMALISTAS DE LUZ EN EL MAPA MUNDIAL
   ========================================================================== */
.map-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 10px #00F0FF, 0 0 20px #FFFFFF, 0 0 30px #D4AF37;
    pointer-events: none;
    z-index: 3;
    opacity: 0.08;
    animation: minimalistSparkle 4.5s infinite ease-in-out;
}

.map-sparkle::before,
.map-sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 240, 255, 0.85);
    border-radius: 2px;
}

.map-sparkle::before {
    width: 14px;
    height: 1.5px;
}

.map-sparkle::after {
    width: 1.5px;
    height: 14px;
}

.sparkle-1 { left: 12%; top: 18%; animation-delay: 0s; }
.sparkle-2 { left: 38%; top: 22%; animation-delay: 0.8s; }
.sparkle-3 { left: 65%; top: 16%; animation-delay: 1.6s; }
.sparkle-4 { left: 88%; top: 48%; animation-delay: 2.4s; }
.sparkle-5 { left: 20%; top: 82%; animation-delay: 3.2s; }
.sparkle-6 { left: 45%; top: 78%; animation-delay: 0.4s; }
.sparkle-7 { left: 72%; top: 75%; animation-delay: 1.2s; }
.sparkle-8 { left: 32%; top: 45%; animation-delay: 2.0s; }
.sparkle-9 { left: 58%; top: 45%; animation-delay: 2.8s; }
.sparkle-10 { left: 82%; top: 18%; animation-delay: 3.6s; }

/* ==========================================================================
   MEJORAS EXCLUSIVAS DE RESPONSIVIDAD Y NAVEGACIÓN MÓVIL
   ========================================================================== */
@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 10000 !important;
    }
    
    .hero-section.clear-map-hero {
        padding: 32px 0 48px 0;
    }

    .hero-header-text {
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .map-board-inner {
        padding-bottom: 64% !important; /* Proporción ideal para interactividad táctil */
    }

    /* Reducción proporcional de marcadores en pantallas móviles */
    .marker-thumb, .colombia-badge {
        width: 36px !important;
        height: 36px !important;
    }

    .colombia-badge {
        font-size: 1.1rem !important;
    }

    .pulse-ring {
        width: 36px !important;
        height: 36px !important;
    }

    .marker-popup {
        padding: 5px 10px !important;
    }

    .marker-popup strong {
        font-size: 0.75rem !important;
    }

    .marker-popup span {
        font-size: 0.65rem !important;
    }
}
.hero-header-ultra-wide { background: radial-gradient(ellipse at 50% 30%, #ffffff 0%, #f0f2f5 60%, #e5e9f0 100%) !important; }
.hero-header-ultra-wide .hero-title { color: #111827 !important; }
.hero-header-ultra-wide .hero-subtitle { color: #4B5563 !important; }
.hero-header-ultra-wide .hero-subtitle strong { color: #0369a1 !important; }
.hero-header-ultra-wide .hero-badge { background: rgba(3, 105, 161, 0.1) !important; border-color: rgba(3, 105, 161, 0.3) !important; color: #0369a1 !important; }
.hero-header-ultra-wide .trust-pill { background: #ffffff !important; border: 1px solid #d1d5db !important; color: #374151 !important; }
.hero-header-ultra-wide .btn-secondary { color: #111827 !important; border: 1px solid #d1d5db !important; background: #ffffff !important; }
.hero-header-ultra-wide .btn-secondary:hover { background: #f3f4f6 !important; }
.ultra-wide-container { max-width: 1920px !important; width: 100% !important; padding: 0 40px !important; }
.ultra-wide-map-board { max-width: 1800px !important; border: 1px solid rgba(0, 0, 0, 0.05) !important; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15) !important; background: #ffffff !important; }
.map-connections-svg .arc-line-bg { stroke: #cbd5e1 !important; }
.map-connections-svg .arc-line-flow { stroke: #0369a1 !important; }
.embossed-title { color: #111827 !important; -webkit-text-fill-color: #111827 !important; background: none !important; filter: none !important; }
.embossed-subtitle { color: #4b5563 !important; text-shadow: none !important; }
.map-embossed-brand { background: rgba(255, 255, 255, 0.9) !important; border-bottom: 1px solid #e2e8f0 !important; }

/* ==========================================================================
   CORRECCIONES MÓVIL — Hero, Scroll, Layout General
   ========================================================================== */

/* Hero iframe: altura correcta en móvil usando dvh (dynamic viewport height) */
.hero-header-ultra-wide iframe {
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Excluye barra del browser en iOS/Android */
    border: none;
    display: block;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior: contain;
}

/* Scroll global */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .hero-header-ultra-wide {
        min-height: 100svh;
        padding: 0 !important;
    }

    .hero-header-ultra-wide iframe {
        height: 100svh;
        min-height: 500px;
    }

    .container {
        padding: 0 16px;
    }

    .ultra-wide-container {
        padding: 0 12px !important;
    }

    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
    }

    .hero-header-text {
        padding: 0 8px;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-trust-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .section-padding {
        padding: 48px 0;
    }

    .avisar-quote-banner .banner-inner {
        padding: 16px 16px;
    }

    .avisar-quote-banner .bbold.grandeza {
        font-size: 38px !important;
    }

    .avisar-quote-banner .bscript.pensamientos {
        font-size: 36px !important;
    }

    .avisar-quote-banner .bscript.cree {
        font-size: 28px !important;
    }

    .map-board-inner {
        padding-bottom: 70% !important;
    }

    .top-bar {
        display: none !important;
    }

    .header-container {
        padding: 0 16px;
    }

    .embossed-title {
        font-size: 1.1rem !important;
        letter-spacing: 1.5px !important;
    }

    .embossed-subtitle {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 5px 14px;
    }

    .hero-header-ultra-wide iframe {
        height: 100svh;
        min-height: 480px;
    }

    .embossed-title {
        font-size: 0.95rem !important;
        letter-spacing: 1px !important;
    }

    .map-board-header {
        padding: 8px 12px;
    }

    .map-pill {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* --------------------------------------------------------------------------
   SOLUCIONES MÓVIL OPTIMIZADAS (Sin dañar el scroll)
   -------------------------------------------------------------------------- */
body {
    overflow-x: hidden;
}

@media (max-width: 992px) {
    .container, .ultra-wide-container, .hero-section, .avisar-quote-banner {
        overflow-x: hidden;
    }
    
    /* Prevenir desbordamiento de textos sin forzar en todos los span/a */
    h1, h2, h3, h4, h5, h6, p {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

