/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 02 2026 | 17:43:36 */
/* ==========================================================================
   Variables de Diseño y Reset
   ========================================================================== */
:root {
    --bg-pure: #ffffff;
    --bg-soft: #f4f7f6;
    --text-main: #0a2540;
    --text-muted: #627d98;
    --accent-blue: #00a896; /* Azul/Verde cristalino */
    --accent-light: rgba(244, 247, 246, 0.8);
    --font-premium: 'Helvetica Neue', Arial, sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-premium);
    color: var(--text-main);
    background-color: var(--bg-pure);
}

body {
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

/* ==========================================================================
   Header & Navegación (Efecto Glassmorphism Claro)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
    transition: var(--transition-smooth);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-main);
}
.logo span { color: var(--accent-blue); font-weight: 300; }

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-menu a:hover { color: var(--accent-blue); }

.btn-nav {
    background: var(--text-main);
    color: var(--bg-pure) !important;
    padding: 10px 20px;
    border-radius: 50px;
}
.btn-nav:hover { background: var(--accent-blue); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5f3 100%);
    position: relative;
}

.hero-content {
    width: 50%;
    padding-left: 5%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-actions { display: flex; gap: 20px; }

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
	
    transition: var(--transition-smooth);
}

.btn-primary { background: var(--text-main); color: var(--bg-pure); }
.btn-primary:hover { background: var(--accent-blue); transform: translateY(-2px); color: #ffffff; }

.btn-secondary { border: 1px solid var(--text-main); color: var(--text-main); }
.btn-secondary:hover { background: rgba(10, 37, 64, 0.05); }

/* Representación visual abstracta de agua premium */
.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: #cbe3db url('https://images.unsplash.com/photo-1576013551627-0cc20b96c2a7?q=80&w=1200') center/cover no-repeat;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

/* ==========================================================================
   Secciones y Tarjetas Dinámicas
   ========================================================================== */
.philosophy-section {
    background: var(--bg-pure);
    text-align: center;
}

.subtitle {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent-blue);
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin: 15px 0 25px 0;
    letter-spacing: -0.5px;
}

.lead-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.services-section { background: var(--bg-soft); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-pure);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 168, 150, 0.08);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

/* ==========================================================================
   Efectos de Animación Dinámica (Efecto Entrada)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Minimalista */
.main-footer {
    background: #051321;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px 0;
}
.main-footer .logo { color: #fff; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding: 40px 0; }
.footer-grid h4 { color: #fff; margin-bottom: 15px; }
.footer-grid ul { list-style: none; }
.footer-grid a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.85rem; }

/* ==========================================================================
   Adaptación para Dispositivos Móviles y Tablets (Media Query)
   ========================================================================== */
@media (max-width: 768px) {
    
    /* Ocultar desbordamientos y ajustar contenedores */
    .container {
        padding: 60px 0;
    }

    h2 {
        font-size: 1.9rem;
    }

    .lead-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* --- MENÚ HAMBURGUESA (Estilo App) --- */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-main);
        transition: var(--transition-smooth);
        transform-origin: center;
    }

    /* Animación del botón al abrirse */
    .menu-toggle.open span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    
    .menu-toggle.open span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    /* Menú Desplegable Lateral */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
        padding: 120px 40px 40px 40px;
        transition: var(--transition-smooth);
        z-index: 1050;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        width: 100%;
    }

    .btn-nav {
        display: inline-block;
        text-align: center;
        padding: 14px 25px;
    }

    /* --- RESTRUCTURACIÓN DEL HERO --- */
    .hero-section {
        flex-direction: column-reverse; /* Envía la imagen arriba en orden visual táctil */
        padding-top: 70px;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        padding: 40px 5%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 0 auto 30px auto;
    }

    .hero-actions {
        flex-direction: column; /* Botones apilados, más fáciles de pulsar con el pulgar */
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 0;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 35vh; /* Altura ideal para no devorar toda la pantalla móvil */
        clip-path: none; /* Eliminamos el corte diagonal para mejor visualización */
    }

    /* --- SECCIÓN SERVICIOS Y PIE DE PÁGINA --- */
    .services-grid {
        grid-template-columns: 1fr; /* Una sola columna fluida */
        gap: 20px;
    }

    .service-card {
        padding: 30px 24px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
}

/* Ajuste intermedio opcional para tablets */
@media (min-width: 769px) {
    .menu-toggle { display: none; } /* Oculto en escritorio */
}


/* ==========================================================================
   Sección FAQ - Estilo Corporativo Premium
   ========================================================================== */
.faq-section {
    background-color: var(--bg-pure);
    position: relative;
    overflow: hidden;
}

.faq-grid-container {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5%;
    align-items: start;
}

/* Normalización de Encabezados dentro del Acordeón para SEO */
.faq-item h3 {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: normal;
    line-height: normal;
}

/* Columna Izquierda Fija (Escritorio) */
.faq-sticky-sidebar {
    position: sticky;
    top: 120px; 
    padding-right: 20px;
}

.faq-sticky-sidebar p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 15px;
    font-size: 1.05rem;
}

/* Badge Decorativo (Efecto Onda de Agua) */
.faq-interactive-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 10px 20px;
    background: var(--bg-soft);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.ripple-effect {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    position: relative;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: faqWaterRipple 2.5s infinite ease-in-out;
}

@keyframes faqWaterRipple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}

/* Contenedor de Preguntas (Derecha) */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg-soft);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

/* Disparador del Acordeón (Botón) */
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    padding: 30px;
    cursor: pointer;
    position: relative;
    gap: 20px;
    font-family: inherit;
}

.faq-index {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-blue);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    flex: 1;
    transition: var(--transition-smooth);
}

/* Icono Minimalista Dinámico (+ / -) */
.faq-icon-plus {
    width: 18px;
    height: 18px;
    position: relative;
}

.faq-icon-plus::before, 
.faq-icon-plus::after {
    content: '';
    position: absolute;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

.faq-icon-plus::before {
    top: 8px; left: 0; width: 100%; height: 2px;
}

.faq-icon-plus::after {
    left: 8px; top: 0; width: 2px; height: 100%;
}

/* --- CONTROL EXCLUSIVO DE APERTURA (is-open) --- */
.faq-item.is-open {
    background: var(--bg-pure);
    box-shadow: 0 15px 40px rgba(0, 168, 150, 0.06);
    border-color: rgba(0, 168, 150, 0.15);
}

.faq-item.is-open .faq-index {
    opacity: 1;
    transform: scale(1.05);
}

/* Rota el icono vertical para ocultarlo y formar el signo menos (-) */
.faq-item.is-open .faq-icon-plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Estructura base del panel oculto */
.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Despliegue del panel condicionado únicamente a la clase is-open */
.faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
}

.faq-panel-content {
    overflow: hidden;
}

.faq-panel-content p {
    padding: 0 30px 30px 59px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ==========================================================================
   EFECTO GLOBAL DE REVELADO (Intersection Observer)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* El .active del observer maneja visibilidad general, no la lógica de los paneles */
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Adaptación Móvil Completa (App-Like Style)
   ========================================================================== */
@media (max-width: 768px) {
    .faq-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-sticky-sidebar {
        position: relative;
        top: 0;
        padding-right: 0;
        text-align: center;
    }

    .faq-trigger {
        padding: 24px;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-panel-content p {
        padding: 0 24px 24px 24px;
    }
}

/* ==========================================================================
   Sección Video Adaptable - Estilo Internacional
   ========================================================================== */
.video-section {
    background-color: var(--bg-soft);
    overflow: hidden;
}

.video-grid-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
}

.video-text-content {
    width: 45%;
}

.video-text-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 20px 0 35px 0;
    font-size: 1.05rem;
}

/* Contenedor del Video (Escritorio - Horizontal) */
.video-media-wrapper {
    width: 50%;
}

.video-inner-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Formato Cine Horizontal */
    background-color: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 37, 64, 0.08);
}

.video-inner-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botón Flotante con Efecto Cristal (Glassmorphism) */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: var(--text-main);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-play-btn:hover {
    background: var(--bg-pure);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 168, 150, 0.15);
}

.btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}

/* Badge de Audio */
.audio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(10, 37, 64, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 30px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}

.audio-badge.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Adaptación Formato Vertical (Mobile-First App Layout)
   ========================================================================== */
@media (max-width: 768px) {
    .video-grid-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .video-text-content {
        width: 100%;
    }

    .video-media-wrapper {
        width: 100%;
        max-width: 380px; /* Evita que el formato vertical se desborde a lo ancho */
        margin: 0 auto;
    }

    /* Transformación a Formato Vertical Tipo App */
    .video-inner-frame {
        aspect-ratio: 9 / 16; /* Formato Reel / Vertical Estricto */
        border-radius: 32px; /* Esquinas más curvas simulando pantalla móvil */
    }

    .video-play-btn {
        width: 80%;
        justify-content: center;
        bottom: 40px; /* Posicionado abajo, ideal para ergonomía del pulgar */
        top: auto;
        transform: translateX(-50%);
    }

    .btn-primary, .btn-secondary {
        display: inline-block; /* O 'block' para que tome el 100% real */
        width: 100%;
        text-align: center;
        padding: 16px 0;
        box-sizing: border-box;
    }

    .video-play-btn:hover {
        transform: translateX(-50%) scale(1.03);
    }
}


/* ==========================================================================
   Mosaico Asimétrico Premium - Clase: Glle2026QZ-01JUN
   ========================================================================== */
.Glle2026QZ-01JUN {
    background-color: var(--bg-pure);
    padding: 100px 0;
}

.Glle2026QZ-01JUN .gallery-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.Glle2026QZ-01JUN .gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Rejilla Maestra de 6 Columnas */
.Glle2026QZ-01JUN .gallery-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px; /* Espaciado idéntico a la referencia */
}

/* Propiedades de las Tarjetas (Fieles al diseño original) */
.Glle2026QZ-01JUN .gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 24px; /* Curvatura suave de la referencia */
    background-color: var(--bg-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    cursor: pointer;
}

/* Forzar que las imágenes cubran el 100% del ancho y alto asignado */
.Glle2026QZ-01JUN .gallery-item picture,
.Glle2026QZ-01JUN .gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Asignación de Espacios Matemáticos (Distribución de Filas)
   ========================================================================== */

/* Fila 1: Proporción 4 a 2 (Ancho e impacto visual) */
.Glle2026QZ-01JUN .item-row1-left {
    grid-column: span 4;
    aspect-ratio: 16 / 10;
}
.Glle2026QZ-01JUN .item-row1-right {
    grid-column: span 2;
    aspect-ratio: 8 / 10; /* Más esbelto, equilibra la fila */
}

/* Fila 2: Tres columnas idénticas de aspecto vertical (Retrato) */
.Glle2026QZ-01JUN .item-row2-vertical {
    grid-column: span 2;
    aspect-ratio: 3 / 4; /* Proporción áurea vertical */
}

/* Fila 3: Dos columnas simétricas perfectas */
.Glle2026QZ-01JUN .item-row3-half {
    grid-column: span 3;
    aspect-ratio: 16 / 11;
}

/* ==========================================================================
   Capas de Texto Minimalistas e Interacciones
   ========================================================================== */
.Glle2026QZ-01JUN .gallery-content-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-sizing: border-box;
}

.Glle2026QZ-01JUN .project-details {
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.Glle2026QZ-01JUN .tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.Glle2026QZ-01JUN .gallery-content-overlay h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

/* Efectos Hover Premium */
.Glle2026QZ-01JUN .gallery-item:hover img {
    transform: scale(1.04);
}

.Glle2026QZ-01JUN .gallery-item:hover .gallery-content-overlay {
    opacity: 1;
}

.Glle2026QZ-01JUN .gallery-item:hover .project-details {
    transform: translateY(0);
}

/* ==========================================================================
   Adaptación Móvil Fluida (Mobile App Style Feed)
   ========================================================================== */
@media (max-width: 992px) {
    .Glle2026QZ-01JUN .gallery-bento-grid {
        grid-template-columns: repeat(2, 1fr); /* Pasa a dos columnas estables en tablets */
        gap: 16px;
    }
    
    .Glle2026QZ-01JUN .gallery-item,
    .Glle2026QZ-01JUN .item-row1-left,
    .Glle2026QZ-01JUN .item-row1-right,
    .Glle2026QZ-01JUN .item-row2-vertical,
    .Glle2026QZ-01JUN .item-row3-half {
        grid-column: span 1;
        aspect-ratio: 4 / 3; /* Unificamos proporciones para mantener simetría */
    }
}

@media (max-width: 576px) {
    .Glle2026QZ-01JUN {
        padding: 60px 0;
    }

    .Glle2026QZ-01JUN .gallery-bento-grid {
        grid-template-columns: 1fr; /* Colapsa en una sola columna limpia en móviles */
        gap: 20px;
    }

    .Glle2026QZ-01JUN .gallery-item {
        border-radius: 20px; /* Aligeramos las esquinas en pantallas pequeñas */
        aspect-ratio: 4 / 3;
    }

    .Glle2026QZ-01JUN .gallery-content-overlay {
        opacity: 1; /* Siempre visible para evitar doble tap táctil */
        padding: 20px;
    }
}

/* ==========================================================================
   Componente Mapa Corporativo - Clase: Glle2026QZ-01JUN-map
   ========================================================================== */
.Glle2026QZ-01JUN-map {
    width: 100%;
    position: relative;
    background-color: #ffffff;
    box-sizing: border-box;
}

/* Forzado de modelo de caja interno para blindaje absoluto */
.Glle2026QZ-01JUN-map *, 
.Glle2026QZ-01JUN-map *::before, 
.Glle2026QZ-01JUN-map *::after {
    box-sizing: border-box;
}

.Glle2026QZ-01JUN-map .map-master-wrapper {
    position: relative;
    width: 100%;
    height: 600px; /* Altura imponente del lienzo */
    display: flex;
    align-items: center;
}

/* Contenedor del Mapa Open Source al 100% del ancho */
.Glle2026QZ-01JUN-map .map-canvas-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* --- BLINDAJE VISUAL: Filtro de Estilo Internacional Claro --- */
/* Transforma el mapa nativo de OpenStreetMap en una versión de tonos cian/grises premium */
.Glle2026QZ-01JUN-map .leaflet-tile-container {
    filter: grayscale(100%) invert(8%) sepia(10%) hue-rotate(150deg) brightness(98%) contrast(93%);
}

/* Ocultar atribuciones intrusivas manteniendo legalidad en código */
.Glle2026QZ-01JUN-map .leaflet-control-attribution {
    font-size: 0.7rem !important;
    background: rgba(255, 255, 255, 0.7) !important;
    color: #627d98 !important;
}

/* --- TARJETA DE INFORMACIÓN FLOTANTE (Glassmorphic) --- */
.Glle2026QZ-01JUN-map .map-info-card {
    position: relative;
    z-index: 2;
    margin-left: 10%; /* Posicionamiento elegante hacia la izquierda */
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 70px rgba(10, 37, 64, 0.08);
}

.Glle2026QZ-01JUN-map .map-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue, #00a896);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.Glle2026QZ-01JUN-map .card-header-qz h2 {
    font-size: 1.75rem;
    color: var(--text-main, #0a2540);
    margin: 0 0 20px 0;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.Glle2026QZ-01JUN-map .card-body-qz {
    margin-bottom: 30px;
}

.Glle2026QZ-01JUN-map .address-text {
    font-size: 1.05rem;
    color: var(--text-main, #0a2540);
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.Glle2026QZ-01JUN-map .schedule-text {
    font-size: 0.9rem;
    color: var(--text-muted, #627d98);
    margin: 0;
}

/* Botón de acción hacia Google Maps */
.Glle2026QZ-01JUN-map .btn-map-gmaps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    background-color: var(--text-main, #0a2540);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.Glle2026QZ-01JUN-map .btn-map-gmaps:hover {
    background-color: var(--accent-blue, #00a896);
    box-shadow: 0 10px 25px rgba(0, 168, 150, 0.25);
    transform: translateY(-2px);
}

/* --- ICONO PREMIUM PERSONALIZADO (Pulsing Water Marker) --- */
.Glle2026QZ-01JUN-map .custom-qz-marker {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Glle2026QZ-01JUN-map .marker-core {
    width: 16px;
    height: 16px;
    background: var(--text-main, #0a2540);
    border: 3px solid #ffffff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.Glle2026QZ-01JUN-map .marker-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 168, 150, 0.25);
    border: 1px solid rgba(0, 168, 150, 0.5);
    border-radius: 50%;
    z-index: 1;
    animation: mapPulseQZ 2s infinite ease-out;
}

@keyframes mapPulseQZ {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================================================
   Adaptación Móvil Completa (Responsivo Táctil)
   ========================================================================== */
@media (max-width: 768px) {
    .Glle2026QZ-01JUN-map .map-master-wrapper {
        flex-direction: column-reverse; /* Apila el contenido de forma ergonómica */
        height: auto;
    }

    .Glle2026QZ-01JUN-map .map-canvas-container {
        position: relative;
        height: 350px; /* Reducción de área de mapa en móviles para mejor navegación de scroll */
    }

    .Glle2026QZ-01JUN-map .map-info-card {
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0; /* Integra la tarjeta de forma plana en el layout móvil */
        border: none;
        border-bottom: 1px solid rgba(10, 37, 64, 0.05);
        padding: 40px 5%;
        background: #ffffff;
    }
    
    .Glle2026QZ-01JUN-map .btn-map-gmaps {
        padding: 18px 24px; /* Mayor espacio de pulsación táctil */
    }
}
/* ==========================================================================
   Componente Cinta de Logos Infinita - Espacio de nombres: .qz-brands-ticker
   ========================================================================== */
.qz-brands-ticker {
    width: 100%;
    background-color: var(--bg-soft, #f4f7f6); /* Fondo claro muy limpio */
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.qz-brands-ticker .ticker-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Envoltura con máscara de desvanecimiento en los extremos (Efecto Premium) */
.qz-brands-ticker .ticker-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Degradados transparentes a los lados */
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

/* Carril de movimiento continuo */
.qz-brands-ticker .ticker-track {
    display: flex;
    align-items: center;
    gap: 80px; /* Distancia elegante entre logotipos */
    padding-right: 80px;
    flex-shrink: 0;
    will-change: transform; /* Notifica a la GPU para optimizar memoria */
    animation: qzInfiniteScroll 25s linear infinite;
}

/* Espacio individual de cada logotipo */
.qz-brands-ticker .ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qz-brands-ticker .ticker-item img {
    height: 45px; /* Altura ideal corporativa */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4); /* Fiel al estilo sobrio internacional */
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Micro-interacción: Encendido cromático al pasar el mouse */
.qz-brands-ticker .ticker-item img:hover {
    filter: grayscale(0%) opacity(1);
}

/* Pausar la animación cuando el usuario interactúa para facilitar la lectura */
.qz-brands-ticker .ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

/* ==========================================================================
   Lógica de Desplazamiento por Hardware (CSS3 Keyframes)
   ========================================================================== */
@keyframes qzInfiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Desplaza el carril equivalente a un set completo */
    }
}

/* ==========================================================================
   Adaptación para Dispositivos Móviles y Tablets
   ========================================================================== */
@media (max-width: 768px) {
    .qz-brands-ticker {
        padding: 40px 0;
    }

    .qz-brands-ticker .ticker-track {
        gap: 50px; /* Reducimos el espaciado en pantallas de mano */
        padding-right: 50px;
        animation-duration: 18s; /* Aceleramos levemente la velocidad por el cambio de ancho */
    }

    .qz-brands-ticker .ticker-item img {
        height: 35px; /* Reducción de escala proporcional */
    }
    
    /* En móviles se mantiene la opacidad activa para evitar depender del hover táctil */
    .qz-brands-ticker .ticker-item img {
        filter: grayscale(100%) opacity(0.6);
    }
}