/*
 * ============================================================
 *  SUDAMERICA BUSINESS LLC — Theme: Miami Corporate Tech Luxury
 *  Colocar DESPUÉS de style.css y ANTES de sudamerica-custom.css
 *
 *  Estrategia de color:
 *    70% — Negro profundo / neutros  (#141125, #f4f6f8, #4a5568)
 *    20% — Azul Miami                (#1d84be)
 *    10% — Dorado luxury             (#c4a673)
 *
 *  Este archivo solo redefine las variables del :root del template.
 *  Ninguna otra regla CSS necesita cambiar.
 * ============================================================
 */

:root {
    /* ── Colores principales ── */
    --heading-color:  #141125;   /* Negro profundo — sin cambio, ya era perfecto */
    --primary-color:  #1d84be;   /* Azul Miami — reemplaza violeta #5138ee       */
    --base-color:     #4a5568;   /* Gris neutro frío — reemplaza gris violáceo   */

    /* ── Colores de soporte ── */
    --light-color:    #f4f6f8;   /* Blanco frío neutro — reemplaza tinte violáceo */
    --border-color:   #dde3ea;   /* Borde gris azulado — reemplaza lila #edebfd   */
    --yellow-color:   #c4a673;   /* Dorado luxury — reemplaza amarillo plano      */

    /* ── Gradiente Miami Night (uso selectivo: hero, CTAs premium) ──
     * Definido como variable para usar donde convenga:
     * background: var(--gradient-miami)
     */
    --gradient-miami: linear-gradient(
        135deg,
        #06212b 0%,
        #1d84be 60%,
        #c4a673 100%
    );

    /* ── Variante sutil del gradiente (overlays, fondos de sección) ── */
    --gradient-miami-subtle: linear-gradient(
        135deg,
        rgba(6,  33, 43,  0.92) 0%,
        rgba(29,132,190, 0.75) 65%,
        rgba(196,166,115, 0.30) 100%
    );

    /* ── Tipografía — sin cambio ── */
    --base-font:    'Inter', sans-serif;
    --heading-font: 'Poppins', sans-serif;

    /* ── Comportamiento de scroll — sin cambio ── */
    scroll-behavior: auto;
}

/*
 * ── Aplicación del gradiente Miami Night ──
 * Se aplica solo donde el impacto es máximo (el 10% estratégico).
 * Sobreescribe el overlay sólido del hero principal.
 */

/* Hero principal — overlay con gradiente */
.parallax-section.overlay::before,
.hero-section.overlay::before {
    background: var(--gradient-miami-subtle);
    opacity: 1; /* el template usa opacity en el ::before — lo controlamos aquí */
}

/* Botón CTA primario — gradiente en hover */
.theme-btn:hover,
.theme-btn.style-two:hover {
    background: var(--gradient-miami);
    border-color: transparent;
    color: #ffffff;
}

/* Footer — gradiente sutil como fondo (refuerza el dark theme) */
.footer-section.footer-two {
    background: linear-gradient(
        180deg,
        #141125 0%,
        #0e1e28 100%
    );
}

/* Loader — gradiente Miami en las líneas del shimmer */
#page-loader {
    background: linear-gradient(
        180deg,
        #06212b 0%,
        #0d1e2e 100%
    );
}

#page-loader .loader-lines span {
    background: linear-gradient(
        90deg,
        rgba(29, 132, 190, 0.15)  0%,
        rgba(29, 132, 190, 0.15) 20%,
        rgba(196, 166, 115, 0.95) 50%,   /* dorado en el pico del shimmer */
        rgba(29, 132, 190, 0.15) 80%,
        rgba(29, 132, 190, 0.15) 100%
    );
    background-size: 250% 100%;
    background-position: -125% 0;
    animation: loaderShimmerV2 2s ease-in-out infinite;
}

/*
 * ============================================================
 *  SUDAMERICA BUSINESS LLC — Custom CSS Unificado
 *  Generado: 2026-02-17
 *
 *  Este archivo consolida todos los estilos personalizados
 *  de las páginas: index, about, contact, legal + header/footer.
 *  NO incluye ni modifica el CSS del template base (style.css).
 *
 *  ORDEN DE CARGA RECOMENDADO:
 *    1. style.css           (template Sland — no tocar)
 *    2. sudamerica-custom.css  (este archivo)
 *
 *  ÍNDICE
 *  ──────────────────────────────────────────────────────────
 *  01. Global / Helpers
 *  02. Tipografía — Patrones por página
 *  03. Header & Navegación
 *  04. Hero — Imagen de fondo + Overlay
 *  05. Hero — Video Hero
 *  06. Hero — Logo centrado
 *  07. Hero — Office Hero
 *  08. Parallax — Location Section
 *  09. Retail & Strategy Block
 *  10. Brand Showcase Sections
 *  11. Brand Header Logos
 *  12. About Us Page
 *  13. Contact Us Page
 *  14. Legal Page
 *  15. Footer
 *  16. Gallery & Video Showcase (Brands)
 *  17. Media Queries — Agrupadas
 * ============================================================
 */


/* ===== 01. GLOBAL / HELPERS ===== */

/*
 * Utilidad de margen derecho puntual.
 * Definida en style.css del template con !important para
 * sobreescribir Bootstrap. Se mantiene aquí para centralizar
 * todos los overrides custom.
 */
.mr-10 {
    margin-right: 10px !important;
}

/*
 * Espaciado de secciones adyacentes en home.
 * Elimina el gap visual entre about-section-three y brands-intro.
 */
.about-section-three {
    margin-bottom: 0;
}

.brands-intro {
    margin-top: 0;
}

/*
 * Lead paragraph global — usado en home (índice).
 * NOTA: max-width resuelto → 660px gana (segunda declaración
 * en index.css; la primera de 720px queda descartada).
 */
.section-lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--base-color);
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

/* Override específico de .section-lead dentro de .brands-intro */
.brands-intro .section-lead {
    max-width: 660px;
}


/* ===== 02. TIPOGRAFÍA — PATRONES POR PÁGINA ===== */
/*
 * Cada página define su propio eyebrow/heading/lead con prefijo
 * de namespace. Son estructuralmente idénticos pero se mantienen
 * separados porque sus selectores son distintos en el HTML.
 * Si en el futuro se quieren unificar, estos cuatro grupos son
 * candidatos directos a una sola clase global.
 */

/* ── About Us (au-) ── */
.au-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-color);
    background: rgba(81, 56, 238, 0.07);
    padding: 6px 18px;
    border-radius: 6px;
}

.au-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.25;
}

.au-lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--base-color);
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Contact (ct-) ── */
.ct-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-color);
    background: rgba(81, 56, 238, 0.07);
    padding: 6px 18px;
    border-radius: 6px;
}

.ct-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.25;
}

.ct-lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--base-color);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Legal (lg-) ── */
.lg-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-color);
    background: rgba(81, 56, 238, 0.07);
    padding: 6px 18px;
    border-radius: 6px;
}

.lg-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.25;
}

.lg-lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--base-color);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}


/* ===== 03. HEADER & NAVEGACIÓN ===== */

/*
 * Barra superior (header-top) — ya obtiene bg azul de .bg-blue
 * del template. Solo necesitamos ajuste de tipografía y altura.
 */
.header-top p {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin: 0;
    line-height: 1.4;
}

/*
 * Contenedor principal del header.
 * z-index 50 garantiza que quede sobre el hero.
 */
.main-header {
    position: relative;
    z-index: 50;
}

/*
 * Logo: el inline style="height:80px" en el HTML fuerza el alto.
 * Este CSS garantiza que el aspect-ratio y el display sean correctos
 * sin pelear contra el !important.
 */
.logo img,
.logo-mobile img {
    width: auto;
    display: block;
    object-fit: contain;
}

/*
 * Estado sticky / fixed (clase agregada por JS del template).
 * Fondo oscuro (dark header), sombra profunda.
 */
.main-header.fixed-header,
.main-header.sticky-header {
    background: #141125 !important;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.35) !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    animation: sticky 0.4s ease forwards;
}

/*
 * Links de navegación en estado sticky — texto blanco sobre oscuro.
 */
.main-header.fixed-header .main-menu .navigation > li > a,
.main-header.sticky-header .main-menu .navigation > li > a {
    /* color: rgba(255,255,255,0.82) !important; */
    mix-blend-mode: normal !important;
    text-shadow: none !important;
    transition: color 0.25s ease;
}

/* .main-header.fixed-header .main-menu .navigation > li:hover > a,
.main-header.sticky-header .main-menu .navigation > li:hover > a,
.main-header.fixed-header .main-menu .navigation > li.current > a,
.main-header.sticky-header .main-menu .navigation > li.current > a {
    color:  !important;
} */

/*
 * Estado inicial en home: header sobre el hero oscuro.
 * Solo aplica antes de que el JS agregue .fixed-header.
 * Gradiente desde arriba para dar legibilidad al logo y nav blancos.
 */
body.home .main-header:not(.fixed-header):not(.sticky-header) {
    background: linear-gradient(
        180deg,
        rgba(4, 10, 30, 0.55) 0%,
        rgba(4, 10, 30, 0.0) 100%
    );
}

body.home .main-header:not(.fixed-header):not(.sticky-header) .main-menu .navigation > li > a {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
    transition: color 0.25s ease, opacity 0.25s ease;
}

body.home .main-header:not(.fixed-header):not(.sticky-header) .main-menu .navigation > li:hover > a {
    opacity: 0.8;
}

/*
 * Logo blanco en header transparente (home, antes del scroll).
 * En sticky se muestra el logo color (normal).
 */
body.home .main-header:not(.fixed-header):not(.sticky-header) .logo img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.main-header.fixed-header .logo img,
.main-header.sticky-header .logo img {
    /* filter: brightness(0) invert(1) !important; */
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.main-header.fixed-header .logo img:hover,
.main-header.sticky-header .logo img:hover {
    opacity: 1;
}

/*
 * Reducción de altura del header al hacer scroll.
 * El .header-inner tiene py-20 por defecto; lo comprimimos.
 */
.main-header.fixed-header .header-inner,
.main-header.sticky-header .header-inner {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    transition: padding 0.3s ease;
}

/*
 * Dropdown — siempre sobre fondo blanco sólido, legible.
 */
.main-header .main-menu .navigation > li > ul {
    background: #ffffff;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(20, 17, 37, 0.10);
    border-radius: 0 0 10px 10px;
}

.main-header .main-menu .navigation > li > ul > li > a {
    color: var(--heading-color);
    background: #ffffff;
    font-size: 14px;
    padding: 10px 22px;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-header .main-menu .navigation > li > ul > li > a:hover {
    color: var(--primary-color);
    background: var(--light-color);
}

/* Dropdown override para sticky oscuro */
.main-header.fixed-header .main-menu .navigation > li > ul,
.main-header.sticky-header .main-menu .navigation > li > ul {
    background: #141125 !important;
    border-top: 2px solid var(--primary-color) !important;
    box-shadow: 0 12px 36px rgba(0,0,0,0.45) !important;
    border-radius: 0 0 12px 12px !important;
}

.main-header.fixed-header .main-menu .navigation > li > ul > li > a,
.main-header.sticky-header .main-menu .navigation > li > ul > li > a {
    color: rgba(255,255,255,0.70) !important;
    background: transparent !important;
}

.main-header.fixed-header .main-menu .navigation > li > ul > li > a:hover,
.main-header.sticky-header .main-menu .navigation > li > ul > li > a:hover {
    color: var(--primary-color);
    background: rgba(255,255,255,0.06) !important;
}

/*
 * Selector de idioma (custom-select en .menu-right).
 * Reemplaza el estilo genérico del template para que sea
 * compacto y acorde al header.
 */
.menu-right .custom-select {
    height: auto;
    width: auto;
    min-width: 90px;
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--heading-color);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

/* Override para sticky oscuro — especificidad aumentada */
.main-header.fixed-header .menu-right .custom-select,
.main-header.sticky-header .menu-right .custom-select {
    /* color: rgba(255,255,255,0.75) !important; */
    background-color: rgba(255,255,255,0.57) !important;
    border-color: var(--primary-color) !important;
}

.main-header.fixed-header .menu-right .custom-select:hover,
.main-header.sticky-header .menu-right .custom-select:hover {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: rgba(255,255,255,0.10) !important;
}

.main-header.fixed-header .menu-right .custom-select option,
.main-header.sticky-header .menu-right .custom-select option {
    background: #141125;
    color: #ffffff;
}

/* CTA button en sticky oscuro */
.main-header.fixed-header .menu-right .theme-btn,
.main-header.sticky-header .menu-right .theme-btn,
.main-header.fixed-header .menu-right a.theme-btn,
.main-header.sticky-header .menu-right a.theme-btn {
    /* color: rgba(255,255,255,0.90) !important; */
    /* background: rgba(255,255,255,0.08) !important; */
    border: 1px solid rgba(255,255,255,0.25) !important;
}

.main-header.fixed-header .menu-right .theme-btn:hover,
.main-header.sticky-header .menu-right .theme-btn:hover,
.main-header.fixed-header .menu-right a.theme-btn:hover,
.main-header.sticky-header .menu-right a.theme-btn:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.menu-right .custom-select:hover,
.menu-right .custom-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

/* En header transparente (home) el select también es blanco */
body.home .main-header:not(.fixed-header):not(.sticky-header) .menu-right .custom-select {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.08);
}

/* CTA button */
.main-header .menu-right .theme-btn {
    font-size: 13px;
    padding: 9px 22px;
}

/* En sticky: botón usa colores sólidos normales del template */
.main-header.fixed-header .menu-right .theme-btn,
.main-header.sticky-header .menu-right .theme-btn {
    color: #ffffff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* ===== 04. HERO — IMAGEN DE FONDO + OVERLAY ===== */

.parallax-section.overlay {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
}

/*
 * Capa oscura sobre la foto del hero.
 * Gradiente vertical: más oscuro arriba (donde entra el header)
 * y más sutil en la zona baja.
 */
.parallax-section.overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 10, 30, 0.5) 0%,
        rgba(4, 10, 30, 0.75) 35%,
        rgba(4, 10, 30, 0.60) 65%,
        rgba(4, 10, 30, 0.55) 100%
    );
}

/* Contenido del hero por encima del overlay */
.parallax-section.overlay > .container {
    position: relative;
    z-index: 1;
}

/* Altura y espaciado vertical */
.parallax-section.overlay .py-200 {
    padding-top: 160px;
    padding-bottom: 160px;
}

/* Microcopy arriba del título */
.hero-microcopy {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
}

/* Título principal */
.hero-main-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Párrafo lead */
.hero-lead {
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.96;
}

/* Píldoras de valor */
.hero-pillars {
    list-style: none;
    padding: 0;
    margin: 28px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
}

.hero-pillars li {
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(3px);
    white-space: nowrap;
}

/* Trademark line */
.hero-trademarks {
    font-size: 13px;
    opacity: 0.9;
}

/* Indicadores corporativos */
.hero-indicators-wrapper {
    margin-top: 24px;
}

.hero-indicators {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 920px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hero-indicators li {
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.24);
    text-align: left;
}

.hero-indicators .label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.hero-indicators .value {
    display: block;
    font-size: 13px;
    margin-top: 4px;
}

/* Botones del hero */
.hero-btns .theme-btn {
    margin: 0 6px;
}


/* ===== 05. HERO — VIDEO HERO ===== */

.video-hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    color: #ffffff;
}

.video-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 10, 30, 0.95) 0%,
        rgba(4, 10, 30, 0.85) 40%,
        rgba(4, 10, 30, 0.75) 100%
    );
    pointer-events: none;
}

.video-hero-content {
    position: relative;
    z-index: 2;
}

.video-hero-kicker {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
}

.video-hero-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.video-hero-lead {
    max-width: 820px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.96;
}

.video-hero-cta .theme-btn {
    margin-top: 10px;
}

.video-hero-kicker,
.video-hero-title,
.video-hero-lead {
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.7);
}


/* ===== 06. HERO — LOGO CENTRADO ===== */

.hero-logo-wrapper {
    margin-bottom: 24px;
}

.hero-logo {
    max-height: 180px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.hero-logo:hover {
    opacity: 1;
}


/* ===== 07. HERO — OFFICE HERO ===== */

.office-hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    color: #ffffff;
}

.office-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.office-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    /*
     * CONFLICTO INTERNO RESUELTO:
     * Primera declaración: transition: transform 0.3s ease
     * Segunda declaración: transition: transform 0.4s ease-out
     * → Gana la segunda (más abajo en cascada).
     */
    transition: transform 0.4s ease-out;
}

/* Zoom sutil al hover sobre la sección */
.office-hero-section:hover .office-hero-image {
    transform: scale(1.02);
}

/* Overlay más sutil que el video hero */
.office-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 10, 30, 0.75) 0%,
        rgba(4, 10, 30, 0.55) 40%,
        rgba(4, 10, 30, 0.35) 100%
    );
    pointer-events: none;
}

.office-hero-content {
    position: relative;
    z-index: 2;
}

.office-hero-kicker {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.office-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.office-hero-lead {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.office-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
    margin-top: 30px;
}

.office-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 22px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.office-feature-item i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.office-hero-cta .theme-btn {
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/* ===== 08. PARALLAX — LOCATION SECTION ===== */

.location-parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    margin: 60px 0;
    color: #ffffff;
    overflow: hidden;
}

.location-parallax-section.overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 10, 30, 0.65) 0%, rgba(4, 10, 30, 0.45) 100%);
    z-index: 0;
}

.location-parallax-section > .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 100px 15px;
}

.location-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.location-content:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.35);
}

.location-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: #ffffff;
    animation: pulse-location 2.5s infinite ease-in-out;
}

@keyframes pulse-location {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
}

.location-address {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.location-city {
    font-size: 28px;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.location-divider {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.location-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.location-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: var(--heading-color);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.location-cta i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.location-cta:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.3);
}

.location-cta:hover i {
    transform: translateX(6px);
}


/* ===== 09. RETAIL & STRATEGY BLOCK ===== */

/* Main container */
.retail-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 6px 48px rgba(20, 17, 37, 0.06);
}

/* Header bar */
.retail-block__header {
    background: var(--heading-color);
    color: #ffffff;
    padding: 36px 44px;
}

.retail-block__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.retail-block__title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.3;
}

.retail-block__intro {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

/* Brand Plan Cards */
/* .retail-block .row.mt-45 {
    padding: 0 34px;
} */

.brand-plan-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 30px 28px 28px;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.brand-plan-card:hover {
    box-shadow: 0 8px 32px rgba(81, 56, 238, 0.08);
}

.brand-plan-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.brand-plan-card__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.brand-plan-card__icon--alt {
    background: var(--heading-color);
}

.brand-plan-card__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2px;
    line-height: 1.2;
}

.brand-plan-card__tag {
    font-size: 13px;
    color: var(--base-color);
    font-weight: 500;
}

.brand-plan-card__body p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--base-color);
    margin-bottom: 12px;
}

.brand-plan-card__body p:last-child {
    margin-bottom: 0;
}

/* Checklist inside brand card */
.brand-plan-card__checklist {
    background: var(--light-color);
    border-radius: 10px;
    padding: 18px 20px 14px;
    margin-top: 14px;
}

.brand-plan-card__checklist p {
    font-size: 14px;
    color: var(--heading-color);
}

.brand-plan-card__checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-plan-card__checklist li {
    font-size: 14px;
    line-height: 2;
    color: var(--base-color);
}

.brand-plan-card__checklist li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 12px;
}

/* Activation Grid */
.activation-grid {
    margin: 10px 34px 0;
    padding: 36px 32px 28px;
    background: var(--light-color);
    border-radius: 16px;
    margin-bottom: 40px;
}

.activation-grid__label {
    text-align: center;
    margin-bottom: 28px;
}

.activation-grid__label h5 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--heading-color);
    margin: 0;
    position: relative;
    display: inline-block;
}

.activation-grid__label h5::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    margin: 8px auto 0;
}

.activation-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.activation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(81, 56, 238, 0.08);
}

.activation-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(81, 56, 238, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
}

.activation-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.activation-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--base-color);
    margin: 0;
}

/* Footer note */
.activation-grid__footer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--border-color);
}

.activation-grid__footer i {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 2px;
    min-width: 18px;
}

.activation-grid__footer span {
    font-size: 14px;
    line-height: 1.65;
    color: var(--base-color);
}

/* Support Cards */
.support-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.support-card:hover {
    box-shadow: 0 8px 28px rgba(81, 56, 238, 0.07);
}

.support-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 18px;
}

.support-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.support-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--base-color);
    margin: 0;
}

/* Summary Pills */
.summary-pills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.summary-pills li {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--heading-color);
}


/* ===== 10. BRAND SHOWCASE SECTIONS ===== */

/* Showcase Card Container */
.brand-showcase__card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 40px rgba(20, 17, 37, 0.05);
    border: 1px solid var(--border-color);
}

.brand-showcase--alt {
    background: var(--light-color);
}

.brand-showcase--alt .brand-showcase__card {
    background: #ffffff;
}

/* Content Side */
.brand-showcase__content {
    padding: 10px 0;
}

.brand-showcase__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: rgba(81, 56, 238, 0.07);
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.brand-showcase__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
    margin-bottom: 16px;
}

.brand-showcase__content p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--base-color);
    margin-bottom: 10px;
}

/* Feature list */
.brand-showcase__features {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.brand-showcase__features li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--base-color);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.brand-showcase__features li i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 3px;
    min-width: 14px;
}

/* Media Side */
.brand-showcase__media {
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    position: relative;
    max-height: 750px;
}

.brand-showcase__video {
    width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: cover;
    display: block;
}

/* Image Gallery Carousel */
.brand-gallery {
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
}

.brand-gallery__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.brand-gallery__header h6 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--heading-color);
    margin: 0;
}

/* Arrow buttons */
.brand-gallery__arrows {
    display: flex;
    gap: 8px;
}

.brand-gallery__prev,
.brand-gallery__next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.brand-gallery__prev:hover,
.brand-gallery__next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Slider */
.brand-gallery__slider {
    margin: 0 -8px;
}

.brand-gallery__slide {
    padding: 0 8px;
}

.brand-gallery__slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: var(--light-color);
    transition: transform 0.3s ease;
}

.brand-gallery__slide img:hover {
    transform: scale(1.03);
}

/* Slick dots override */
.brand-gallery__slider .slick-dots {
    margin-top: 14px;
    position: relative;
    bottom: auto;
}

.brand-gallery__slider .slick-dots li button::before {
    color: var(--primary-color);
}

/* Video Sound Toggle */
.video-sound-toggle {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    z-index: 3;
    padding: 0;
    outline: none;
}

.video-sound-toggle:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.08);
}

.video-sound-toggle.is-unmuted {
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* ===== 11. BRAND HEADER LOGOS ===== */

.brand-header-logo {
    display: inline-block;
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-header-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(81, 56, 238, 0.08);
}

.brand-logo-img {
    max-height: 120px;
    width: auto;
    display: block;
}

.brand-showcase--alt .brand-header-logo {
    background: #ffffff;
}


/* ===== 12. ABOUT US PAGE ===== */

/* Image with badge */
.au-company-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(20, 17, 37, 0.08);
}

.au-company-image img {
    width: 100%;
    height: auto;
    min-height: 460px;
    max-height: 560px;
    object-fit: cover;
    display: block;
}

.au-company-image__badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.au-company-image__badge i {
    color: var(--primary-color);
}

/* Intro text */
.au-company-intro {
    padding-left: 10px;
}

.au-company-intro p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--base-color);
    margin-bottom: 14px;
}

.au-company-intro p:last-child {
    margin-bottom: 0;
}

/* Operations Card */
.au-ops-card {
    background: var(--heading-color);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.au-ops-card__header {
    padding: 36px 44px 0;
    text-align: center;
}

.au-ops-card__header h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.au-ops-card__header h4 i {
    font-size: 20px;
    opacity: 0.7;
}

.au-ops-card__header p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
}

.au-ops-card__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 28px 44px 0;
}

.au-ops-card__row:last-child {
    padding-bottom: 44px;
}

.au-ops-card__row--centered {
    grid-template-columns: repeat(2, 1fr);
    max-width: 68%;
    margin: 0 auto;
    padding-top: 18px;
}

.au-ops-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 32px 26px 28px;
    text-align: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.au-ops-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.au-ops-item__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(81, 56, 238, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 18px;
    border: 1px solid rgba(81, 56, 238, 0.2);
}

.au-ops-item h6 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.au-ops-item p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Brand Cards */
.au-brand-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 34px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.au-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(81, 56, 238, 0.07);
}

.au-brand-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-color);
}

.au-brand-card__logo-wrap {
    flex-shrink: 0;
}

.au-brand-card__logo-wrap img {
    max-height: 65px;
    width: auto;
    display: block;
}

.au-brand-card__tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    background: rgba(81, 56, 238, 0.06);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(81, 56, 238, 0.1);
    white-space: nowrap;
}

.au-brand-card__name {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 14px;
}

.au-brand-card__desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--base-color);
    margin-bottom: 20px;
}

.au-brand-card__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.au-brand-card__highlights li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--base-color);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.au-brand-card__highlights li i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 3px;
    min-width: 14px;
}

/* Mission & Vision Tabs */
.au-mv-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0;
}

.au-mv-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border: 2px solid var(--border-color);
    background: #ffffff;
    border-radius: 14px 14px 0 0;
    color: var(--base-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    position: relative;
    bottom: -2px;
    z-index: 1;
}

.au-mv-tab i {
    font-size: 16px;
}

.au-mv-tab:hover {
    color: var(--primary-color);
    border-color: rgba(81, 56, 238, 0.3);
}

.au-mv-tab.active {
    background: #ffffff;
    color: var(--primary-color);
    border-color: var(--border-color);
    border-bottom-color: #ffffff;
    z-index: 3;
}

.au-mv-panels {
    border: 2px solid var(--border-color);
    border-radius: 18px;
    background: #ffffff;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.au-mv-panel {
    display: none;
}

.au-mv-panel.active {
    display: block;
}

.au-mv-panel__inner {
    display: flex;
    gap: 30px;
    padding: 44px 40px;
    align-items: flex-start;
}

.au-mv-panel__icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

#panel-mission .au-mv-panel__icon {
    background: rgba(81, 56, 238, 0.08);
    color: var(--primary-color);
}

#panel-vision .au-mv-panel__icon {
    background: rgba(20, 17, 37, 0.06);
    color: var(--heading-color);
}

.au-mv-panel__content {
    flex: 1;
}

.au-mv-panel__content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 14px;
}

.au-mv-panel__statement {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--heading-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.au-mv-panel__details p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--base-color);
    margin-bottom: 12px;
}

.au-mv-panel__details p:last-child {
    margin-bottom: 0;
}


/* ===== 13. CONTACT US PAGE ===== */

/* Info Cards */
.ct-info-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 38px 30px 34px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ct-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(81, 56, 238, 0.07);
}

.ct-info-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(81, 56, 238, 0.07);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
    border: 1px solid rgba(81, 56, 238, 0.12);
    transition: all 0.3s ease;
}

.ct-info-card:hover .ct-info-card__icon {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.ct-info-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.ct-info-card__text {
    font-size: 13.5px;
    color: var(--base-color);
    margin-bottom: 14px;
    line-height: 1.5;
}

.ct-info-card__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.ct-info-card__link:hover {
    color: var(--heading-color);
}

.ct-info-card__link--address {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
}

/* Contact Form wrapper */
.ct-form-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 48px rgba(20, 17, 37, 0.05);
}

/* Left Sidebar */
.ct-form-sidebar {
    background: var(--heading-color);
    padding: 48px 38px;
    height: 100%;
    border-radius: 22px 0 0 22px;
    color: #ffffff;
}

.ct-form-sidebar__title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.ct-form-sidebar__text {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.ct-form-sidebar__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 30px 0;
}

.ct-form-sidebar__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.ct-form-sidebar__item:last-of-type {
    margin-bottom: 0;
}

.ct-form-sidebar__item i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(81, 56, 238, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 2px;
}

.ct-form-sidebar__item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.ct-form-sidebar__item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

/* Social links */
.ct-form-sidebar__social {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ct-form-sidebar__social > span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.ct-form-sidebar__social-links {
    display: flex;
    gap: 10px;
}

.ct-form-sidebar__social-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ct-form-sidebar__social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Right: Form Area */
.ct-form-area {
    padding: 48px 42px;
}

.ct-form-group {
    margin-bottom: 22px;
}

.ct-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.ct-form-group label span {
    color: var(--primary-color);
}

.ct-form-group input,
.ct-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 14.5px;
    color: var(--heading-color);
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    font-family: inherit;
}

.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder {
    color: #aaa;
    font-weight: 400;
}

.ct-form-group input:focus,
.ct-form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(81, 56, 238, 0.08);
}

.ct-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit Button */
.ct-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.ct-form-submit:hover {
    background: var(--heading-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 17, 37, 0.15);
}

.ct-form-submit i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ct-form-submit:hover i {
    transform: translateX(4px);
}

/* Map */
.ct-map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(20, 17, 37, 0.05);
}

.ct-map-wrapper #map {
    width: 100%;
    height: 420px;
    display: block;
}


/* ===== 14. LEGAL PAGE ===== */

.lg-block {
    margin-bottom: 44px;
    scroll-margin-top: 130px;
}

.lg-block:last-child {
    margin-bottom: 0;
}

.lg-block__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.lg-block__number {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(81, 56, 238, 0.07);
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}

.lg-block__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.3;
}

.lg-block__body p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--base-color);
    margin-bottom: 14px;
}

.lg-block__body p:last-child {
    margin-bottom: 0;
}

.lg-block__body a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lg-block__body a:hover {
    color: var(--heading-color);
    text-decoration: underline;
}

/* Highlight callout */
.lg-block__highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(81, 56, 238, 0.04);
    border: 1px solid rgba(81, 56, 238, 0.1);
    border-radius: 12px;
    padding: 20px 22px;
    margin-top: 18px;
}

.lg-block__highlight i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
    min-width: 18px;
}

.lg-block__highlight p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
}

/* Contact Card */
.lg-contact-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.lg-contact-card__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--light-color);
    border-radius: 12px;
    padding: 20px 18px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.25s ease;
}

.lg-contact-card__item:hover {
    box-shadow: 0 6px 20px rgba(81, 56, 238, 0.05);
}

.lg-contact-card__item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(81, 56, 238, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-top: 2px;
}

.lg-contact-card__item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 2px;
}

.lg-contact-card__item strong a {
    color: var(--primary-color);
    text-decoration: none;
}

.lg-contact-card__item strong a:hover {
    color: var(--heading-color);
}

.lg-contact-card__item span {
    font-size: 13px;
    color: var(--base-color);
}

/* CTA Button */
a.lg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

a.lg-cta-btn:visited,
a.lg-cta-btn:active,
a.lg-cta-btn:focus {
    color: #ffffff;
    text-decoration: none;
}

a.lg-cta-btn:hover {
    background: var(--heading-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 17, 37, 0.15);
    text-decoration: none;
}

.lg-cta-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.lg-cta-btn:hover i {
    transform: translateX(4px);
}


/* ===== 15. FOOTER ===== */

/*
 * El footer usa .footer-section.footer-two del template.
 * El template ya define:
 *   - .footer-two:before / :after  (blur decorativo)
 *   - .footer-section.text-white   (links y textos en blanco)
 *   - .copyright-area              (border-top + padding)
 *   - .social-style-one            (íconos sociales circulares)
 *   - .list-style-two / .list-style-three
 *
 * Aquí solo agregamos ajustes específicos del proyecto
 * que NO están cubiertos por el template.
 */

/* Asegura que el footer no tenga overflow por los shapes */
.footer-section {
    overflow: hidden;
}

/* Logo del footer: altura controlada sin !important */
.footer-section .footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Footer title — refuerza peso y espaciado */
.footer-section .footer-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}

/* Línea decorativa bajo el footer-title */
.footer-section .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/*
 * .list-style-three en footer: el template lo define pero
 * no tiene suficiente separación vertical para el diseño actual.
 */
.footer-section .list-style-three li {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.footer-section .list-style-three li i {
    font-size: 14px;
    width: 18px;
    margin-right: 8px;
}

/* Links de Quick Links (.list-style-two) */
.footer-section .list-style-two li {
    margin-bottom: 8px;
}

.footer-section .list-style-two a {
    font-size: 14px;
    line-height: 1.5;
}

/* Social icons en footer */
.footer-section .social-style-one {
    gap: 6px;
    flex-wrap: wrap;
}

.footer-section .social-style-one a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
}

/* Copyright bar */
.footer-section .copyright-area {
    padding-top: 22px;
    padding-bottom: 16px;
}

.footer-section .copyright-area p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-section .copyright-area strong {
    font-weight: 700;
}

/* Separación superior del container del footer */
.footer-section .container.mt-100 {
    padding-bottom: 20px;
}


/* ===== 16. GALLERY & VIDEO SHOWCASE ===== */

/* Animaciones del parallax general */
.parallax-section {
    position: relative;
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-image {
    animation: parallaxZoom 10s ease-in-out infinite;
}

.py-200 {
    padding: 200px 0;
}

@keyframes parallaxZoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Full Width Video Showcase */
.video-showcase-fullwidth {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.video-container-fullwidth {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.product-video-fullwidth {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-content-fullwidth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        180deg,
        rgba(81, 56, 238, 0.7) 0%,
        rgba(81, 56, 238, 0.4) 100%
    );
    padding: 40px 20px;
}

.video-overlay-content-fullwidth .container {
    position: relative;
    z-index: 2;
}

.video-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Gallery Items */
.gallery-item {
    margin-bottom: 30px;
}

.gallery-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(81, 56, 238, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(81, 56, 238, 0) 0%,
        rgba(81, 56, 238, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-content {
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.gallery-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 14px;
}

.gallery-links {
    display: flex;
    gap: 10px;
}

.gallery-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    background: var(--yellow-color);
    color: white;
    transform: translateY(-3px);
}

/* Hover Effects */
.gallery-item:hover .gallery-image {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(81, 56, 238, 0.2);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

/* Marketplace */
.marketplace-availability {
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
}

.marketplace-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.marketplace-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.marketplace-logo:hover {
    transform: translateY(-5px);
}

.marketplace-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
    transition: filter 0.3s ease;
}

.marketplace-logo:hover img {
    filter: grayscale(0);
}

.marketplace-logo span {
    font-weight: 600;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.marketplace-logo:hover span {
    color: var(--primary-color);
}


/* ===== 17. MEDIA QUERIES — AGRUPADAS ===== */
/*
 * Breakpoints usados (consistentes con Bootstrap 4/5 del template):
 *   xl: 1199.98px
 *   lg: 991.98px
 *   md: 767.98px
 *   sm: 575.98px
 *   xs: 375px
 */

/* ── 1199.98px ── */
@media (max-width: 1199.98px) {

    /* Hero imagen */
    .parallax-section.overlay .py-200 {
        padding-top: 140px;
        padding-bottom: 140px;
    }
    .hero-main-title { font-size: 38px; }
    .hero-lead { font-size: 15px; }

    /* Video hero */
    .video-hero-title { font-size: 32px; }
    .video-hero-section { min-height: 55vh; }

    /* Office hero */
    .office-hero-title { font-size: 36px; }
    .office-hero-section { min-height: 60vh; }

    /* Location parallax */
    .location-parallax-section { min-height: 550px; margin: 50px 0; }
    .location-content { padding: 50px 40px; }
    .location-address { font-size: 42px; }
    .location-city { font-size: 24px; }
    .location-description { font-size: 17px; }

    /* Retail */
    .retail-block__header { padding: 30px 32px; }
    .retail-block .row.mt-45,
    .activation-grid { margin-left: 24px; margin-right: 24px; }

    /* Brand showcase */
    .brand-showcase__card { padding: 32px; }
    .brand-showcase__title { font-size: 22px; }
    .brand-showcase__media,
    /* .brand-showcase__video { max-height: 360px; } */

    /* Brand logos */
    .brand-header-logo { padding: 15px 30px; }
    .brand-logo-img { max-height: 50px; }
    .mb-40 { margin-bottom: 30px; }

    /* About */
    .au-heading { font-size: 32px; }
    .au-ops-card__row { grid-template-columns: repeat(3, 1fr); padding: 24px 32px 0; }
    .au-ops-card__row:last-child { padding-bottom: 32px; }
    .au-ops-card__row--centered { max-width: 72%; }

    /* Contact */
    .ct-heading { font-size: 32px; }
    .ct-form-sidebar { padding: 40px 32px; }
    .ct-form-area { padding: 40px 34px; }

    /* Legal */
    .lg-heading { font-size: 32px; }

    /* Gallery */
    .video-container-fullwidth { height: 60vh; }
}

/* ── 991.98px ── */
@media (max-width: 991.98px) {

    /* Header */
    .main-header .main-menu .navigation > li > a {
        color: #111;
        mix-blend-mode: normal;
        text-shadow: none;
    }
    /* En móvil el nav siempre tiene fondo, sin transparencia */
    body.home .main-header:not(.fixed-header):not(.sticky-header) {
        background: transparent;
    }
    body.home .main-header:not(.fixed-header):not(.sticky-header) .logo img {
        filter: none;
    }

    /* Hero imagen */
    .parallax-section.overlay .py-200 { padding-top: 120px; padding-bottom: 120px; }
    .hero-main-title { font-size: 32px; }
    .hero-indicators { grid-template-columns: 1fr; }

    /* Parallax general */
    .parallax-section { min-height: 80vh; background-position: center center; }
    .py-200 { padding: 120px 0; }
    .parallax-section h2 { font-size: 36px; line-height: 1.3; }
    .parallax-section p { font-size: 16px; }

    /* Video hero */
    .video-hero-section { min-height: 50vh; }
    .video-hero-title { font-size: 28px; }
    .video-hero-lead { font-size: 14px; }
    .video-hero-content.py-200 { padding-top: 140px; padding-bottom: 140px; }

    /* Office hero */
    .office-hero-section { min-height: 55vh; }
    .office-hero-title { font-size: 32px; }
    .office-hero-lead { font-size: 15px; padding: 0 20px; }
    .office-hero-content.py-200 { padding-top: 140px; padding-bottom: 140px; }
    .office-features { gap: 15px; }
    .office-feature-item { font-size: 14px; padding: 6px 18px; }

    /* Location parallax */
    .location-parallax-section {
        min-height: 500px;
        margin: 40px 0;
        background-attachment: scroll; /* performance en móvil */
    }
    .location-content { padding: 45px 35px; max-width: 600px; }
    .location-address { font-size: 38px; }
    .location-city { font-size: 22px; margin-bottom: 25px; }
    .location-icon { width: 80px; height: 80px; font-size: 32px; }
    .location-description { font-size: 16px; max-width: 450px; }
    .location-cta { padding: 14px 35px; font-size: 15px; }

    /* Retail */
    .retail-block__header { padding: 28px 24px; text-align: center; }
    .retail-block__title { font-size: 22px; }
    .retail-block__intro { margin-top: 12px; }
    .retail-block .row.mt-45,
    .activation-grid { margin-left: 16px; margin-right: 16px; }
    .activation-grid { padding: 28px 20px 22px; }

    /* Brand showcase */
    .brand-showcase__card { padding: 24px; }
    .brand-showcase__title { font-size: 20px; }
    .brand-showcase__content { padding: 0; margin-top: 10px; }
    .brand-showcase__media,
    /* .brand-showcase__video { max-height: 320px; } */

    /* Brand logos */
    .brand-header-logo { padding: 15px 30px; }
    .brand-logo-img { max-height: 50px; }

    /* About */
    .au-heading { font-size: 28px; }
    .au-company-intro { padding-left: 0; margin-top: 10px; }
    .au-company-image img { min-height: 360px; max-height: 420px; }
    .au-ops-card__header { padding: 28px 24px 0; }
    .au-ops-card__row { grid-template-columns: repeat(2, 1fr); padding: 20px 24px 0; gap: 14px; }
    .au-ops-card__row:last-child { padding-bottom: 28px; }
    .au-ops-card__row--centered { max-width: 100%; }
    .au-ops-item { padding: 26px 20px 22px; }
    .au-brand-card { padding: 32px 26px; }
    .au-brand-card__name { font-size: 22px; }
    .au-mv-panel__inner { padding: 32px 28px; gap: 22px; }
    .au-mv-panel__statement { font-size: 17px; }
    .au-mv-tab { padding: 14px 28px; font-size: 14px; }

    /* Contact */
    .ct-heading { font-size: 28px; }
    .ct-form-sidebar { border-radius: 22px 22px 0 0; padding: 36px 28px; }
    .ct-form-area { padding: 36px 28px; }
    .ct-info-card { padding: 32px 24px 28px; }
    .ct-map-wrapper #map { height: 360px; }

    /* Gallery */
    .video-container-fullwidth { height: 50vh; min-height: 400px; }
    .video-overlay-content-fullwidth { padding: 30px 20px; }
    .video-overlay-content-fullwidth h3 { font-size: 24px; }
    .marketplace-logos { gap: 30px; }
    .marketplace-logo img { height: 50px; }
}

/* ── 767.98px ── */
@media (max-width: 767.98px) {

    /* Office features */
    .office-features { flex-direction: column; align-items: center; gap: 10px; }
    .office-feature-item { width: auto; min-width: 200px; justify-content: center; }

    /* Location */
    .location-parallax-section { min-height: 450px; }
    .location-content { padding: 40px 25px; }
    .location-address { font-size: 32px; }
    .location-city { font-size: 20px; }
    .location-description { font-size: 15px; line-height: 1.7; }
    .location-icon { width: 70px; height: 70px; font-size: 28px; margin-bottom: 25px; }
    .location-divider { width: 60px; margin-bottom: 25px; }

    /* About */
    .au-ops-card__row,
    .au-ops-card__row--centered { grid-template-columns: 1fr; max-width: 100%; }
    .au-brand-card__top { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Contact */
    .ct-info-card__icon { width: 56px; height: 56px; font-size: 20px; }
    .ct-info-card__title { font-size: 17px; }
    .ct-form-sidebar__title { font-size: 22px; }
    .ct-form-submit { width: 100%; justify-content: center; }

    /* Gallery */
    .video-container-fullwidth { height: 45vh; min-height: 350px; }
    .video-overlay-content-fullwidth h3 { font-size: 20px; }
    .video-overlay-content-fullwidth p { font-size: 14px; }
    .video-cta-buttons { flex-direction: column; align-items: center; }
    .video-cta-buttons .theme-btn { margin: 5px 0; }
    .marketplace-logos { gap: 20px; }
    .marketplace-logo img { height: 40px; }
    .marketplace-logo span { font-size: 14px; }
}

/* ── 575.98px ── */
@media (max-width: 575.98px) {

    /* Hero imagen */
    .parallax-section.overlay .py-200 { padding-top: 110px; padding-bottom: 110px; }
    .hero-main-title { font-size: 26px; }
    .hero-lead { font-size: 14px; }
    .hero-pillars { justify-content: center; gap: 8px 12px; }
    .hero-pillars li { font-size: 12px; padding: 5px 10px; white-space: normal; }

    /* Hero logo */
    .hero-logo { max-height: 56px; }
    .hero-logo-wrapper { margin-bottom: 16px; }

    /* Parallax general */
    .parallax-section { min-height: 70vh; background-position: center center; }
    .py-200 { padding: 120px 0; }
    .parallax-section h2 { font-size: 26px; }
    .parallax-section p { font-size: 14px; line-height: 1.6; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .hero-btns a { width: 100%; }

    /* Video hero */
    .video-hero-section { min-height: 45vh; }
    .video-hero-title { font-size: 24px; }
    .video-hero-content.py-200 { padding-top: 120px; padding-bottom: 120px; }

    /* Office hero */
    .office-hero-section { min-height: 50vh; }
    .office-hero-title { font-size: 26px; }
    .office-hero-lead { font-size: 14px; padding: 0 15px; }
    .office-hero-content.py-200 { padding-top: 120px; padding-bottom: 120px; }
    .office-feature-item { font-size: 13px; padding: 5px 16px; width: 100%; max-width: 240px; }

    /* Location */
    .location-parallax-section { min-height: 400px; margin: 30px 0; }
    .location-content { padding: 30px 20px; border-radius: 20px; }
    .location-address { font-size: 28px; word-break: break-word; }
    .location-city { font-size: 18px; margin-bottom: 20px; }
    .location-description { font-size: 14px; margin-bottom: 25px; max-width: 100%; }
    .location-cta { padding: 12px 30px; font-size: 14px; gap: 8px; }
    .location-cta i { font-size: 16px; }
    .location-icon {
        width: 60px; height: 60px; font-size: 24px;
        margin-bottom: 20px;
        animation: pulse-location 2s infinite ease-in-out;
    }
    .location-divider { width: 50px; margin-bottom: 20px; }

    /* Retail */
    .retail-block__header { padding: 24px 18px; }
    .retail-block__title { font-size: 20px; }
    .retail-block .row.mt-45,
    .activation-grid { margin-left: 10px; margin-right: 10px; }
    .brand-plan-card { padding: 24px 20px 22px; }
    .brand-plan-card__head { flex-direction: column; text-align: center; gap: 10px; }
    .activation-grid { padding: 24px 14px 18px; }
    .activation-card { padding: 18px 14px; }
    .activation-grid__footer { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
    .summary-pills { flex-direction: column; align-items: center; }
    .summary-pills li { font-size: 12px; padding: 6px 16px; }
    .support-card { padding: 24px 20px; }

    /* Brand showcase */
    .brand-showcase__card { padding: 18px; }
    .brand-showcase__title { font-size: 19px; }
    .brand-showcase__content p { font-size: 14px; }
    .brand-showcase__media,
    /* .brand-showcase__video { max-height: 240px; } */

    /* Brand logos */
    .brand-header-logo { padding: 12px 25px; }
    .brand-logo-img { max-height: 40px; }
    .mb-40 { margin-bottom: 25px; }

    /* About */
    .au-heading { font-size: 24px; }
    .au-company-image img { min-height: 280px; max-height: 340px; }
    .au-company-intro p { font-size: 14.5px; }
    .au-ops-card__header { padding: 24px 18px 0; }
    .au-ops-card__header h4 { font-size: 18px; }
    .au-ops-card__row { padding: 16px 18px 0; gap: 12px; }
    .au-ops-card__row:last-child { padding-bottom: 22px; }
    .au-ops-item { padding: 24px 18px 20px; }
    .au-ops-item__icon { width: 48px; height: 48px; font-size: 18px; }
    .au-ops-item h6 { font-size: 15px; }
    .au-brand-card { padding: 28px 22px; }
    .au-brand-card__logo-wrap img { max-height: 50px; }
    .au-brand-card__name { font-size: 20px; }
    .au-brand-card__desc { font-size: 14px; }
    .au-brand-card__highlights li { font-size: 13px; }
    .au-mv-tabs { flex-direction: column; gap: 0; }
    .au-mv-tab { border-radius: 0; justify-content: center; padding: 14px 20px; bottom: 0; }
    .au-mv-tab:first-child { border-radius: 14px 14px 0 0; }
    .au-mv-tab.active { border-bottom-color: var(--border-color); }
    .au-mv-panels { border-radius: 0 0 18px 18px; }
    .au-mv-panel__inner { flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; gap: 18px; }
    .au-mv-panel__icon { width: 56px; height: 56px; min-width: 56px; font-size: 20px; }
    .au-mv-panel__content h3 { font-size: 20px; }
    .au-mv-panel__statement { font-size: 16px; }
    .au-mv-panel__details p { font-size: 14px; }

    /* Contact */
    .ct-heading { font-size: 24px; }
    .ct-lead { font-size: 14.5px; }
    .ct-info-card { padding: 28px 20px 24px; }
    .ct-form-sidebar { padding: 28px 22px; border-radius: 22px 22px 0 0; }
    .ct-form-sidebar__title { font-size: 20px; }
    .ct-form-sidebar__item i { width: 34px; height: 34px; min-width: 34px; font-size: 13px; }
    .ct-form-area { padding: 28px 20px; }
    .ct-form-group input,
    .ct-form-group textarea { padding: 12px 16px; font-size: 14px; }
    .ct-form-submit { padding: 14px 30px; font-size: 14px; }
    .ct-map-wrapper #map { height: 300px; }

    /* Legal */
    .lg-heading { font-size: 24px; }
    .lg-lead { font-size: 14.5px; }
    .lg-block { margin-bottom: 36px; }
    .lg-block__header { gap: 12px; }
    .lg-block__number { width: 36px; height: 36px; min-width: 36px; font-size: 13px; }
    .lg-block__title { font-size: 18px; }
    .lg-block__body p { font-size: 14.5px; }
    .lg-block__highlight { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 18px; }
    .lg-contact-card { grid-template-columns: 1fr; }
    .lg-contact-card__item { padding: 16px 14px; }
    a.lg-cta-btn { width: 100%; justify-content: center; padding: 14px 28px; font-size: 14px; }

    /* Gallery */
    .video-container-fullwidth { height: 40vh; min-height: 300px; }
    .video-overlay-content-fullwidth { padding: 20px 15px; }
    .video-overlay-content-fullwidth h3 { font-size: 18px; margin-bottom: 10px; }
    .marketplace-logos { flex-direction: column; gap: 20px; }
}

/* ── 375px ── */
@media (max-width: 375px) {

    /* Location */
    .location-parallax-section { min-height: 380px; }
    .location-content { padding: 25px 15px; }
    .location-address { font-size: 24px; }
    .location-city { font-size: 16px; }
    .location-description { font-size: 13px; }
    .location-cta { padding: 10px 25px; font-size: 13px; }
    .location-icon { width: 50px; height: 50px; font-size: 20px; }
}


/* ================================================================
   APPEND — 2026-02-17  (rev 2)
   Secciones añadidas / corregidas:
     18. Footer — Tema oscuro (estilo ct-form-sidebar)
     19. Header sticky — Tema oscuro (fix cascada)
     20. Page Loader — Silueta Sudamérica + shimmer
   ================================================================ */


/* ===== 18. FOOTER — TEMA OSCURO ===== */
/*
 * El footer mantiene su estructura HTML actual.
 * Solo cambiamos el tratamiento visual: fondo oscuro
 * (var(--heading-color) = #141125) con tipografía blanca,
 * adoptando la estética del ct-form-sidebar.
 */

/* ── Fondo y color base ── */
.footer-section.footer-two {
    background: var(--heading-color);
    color: rgba(255, 255, 255, 0.72);
}

.footer-section.footer-two p,
.footer-section.footer-two span,
.footer-section.footer-two li,
.footer-section.footer-two address {
    color: rgba(255, 255, 255, 0.65);
}

.footer-section.footer-two a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.25s ease;
}

.footer-section.footer-two a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* ── Pseudo-elementos del template base — NEUTRALIZADOS ──
 *
 * .footer-two:before → blur naranja (izquierda)
 * .footer-two:after  → blur verde (#00ff12) — el "punto verde feo"
 *
 * Solución escalable: reescribimos ambos pseudo-elementos
 * sobreescribiendo color y opacidad en lugar de usar display:none,
 * así si el template los modifica en futuras versiones, siguen
 * siendo neutralizados sin romper la estructura.
 */
.footer-section.footer-two::before,
.footer-section.footer-two::after {
    background: transparent !important;
    opacity: 0 !important;
    pointer-events: none;
}

/* ── Footer title ── */
.footer-section.footer-two .footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
    padding-bottom: 14px;
    position: relative;
}

.footer-section.footer-two .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ── Logo ── */
.footer-section.footer-two .footer-logo img {
    height: 156px;
    width: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    transition: opacity 0.25s ease;
}

.footer-section.footer-two .footer-logo img:hover {
    opacity: 1;
}

/* ── Quick Links (.list-style-two) ── */
.footer-section.footer-two .list-style-two a {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-weight: 400;
    padding-left: 0;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-section.footer-two .list-style-two a:hover {
    color: #ffffff;
    padding-left: 6px;
    text-decoration: none;
}

.footer-section.footer-two .list-style-two a::before {
    display: none;
}

/* ── Contact Info (.list-style-three) ── */
.footer-section.footer-two .list-style-three li {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-section.footer-two .list-style-three li i {
    color: var(--primary-color);
    font-size: 14px;
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-section.footer-two .list-style-three a {
    color: rgba(255, 255, 255, 0.60);
}

.footer-section.footer-two .list-style-three a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* ── Social Icons ── */
.footer-section.footer-two .social-style-one a {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.footer-section.footer-two .social-style-one a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── Copyright ── */
.footer-section.footer-two .copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 22px;
    padding-bottom: 18px;
    margin-top: 10px;
}

.footer-section.footer-two .copyright-area p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    line-height: 1.7;
}

.footer-section.footer-two .copyright-area p strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.footer-section.footer-two .copyright-area p a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-section.footer-two .copyright-area p a:hover {
    color: #ffffff;
}

/* ── Shapes decorativos del template ── */
.footer-section.footer-two .dots-shape,
.footer-section.footer-two .tringle-shape,
.footer-section.footer-two .close-shape,
.footer-section.footer-two .circle-shape {
    opacity: 0.05;
    filter: brightness(10);
}


/* ===== 19. HEADER STICKY — consolidado en sección 03 ===== */

/* ===== 20. PAGE LOADER — SILUETA SUDAMÉRICA + SHIMMER ===== */
/*
 * Las 12 líneas replican las proporciones del ícono del logo:
 * anchos y offsets izquierdos calculados para que el conjunto
 * forme la silueta del mapa de Sudamérica.
 * Las líneas NO cambian de largo — la forma siempre es la misma.
 * La animación es un shimmer (brillo) que recorre cada línea
 * de izquierda a derecha con delay escalonado, generando la oleada.
 *
 * HTML necesario (pegar justo después de <body>):
 * ─────────────────────────────────────────────
 * <div id="page-loader">
 *   <div class="loader-lines">
 *     <span></span>  ×12
 *   </div>
 * </div>
 */

/* ─────────────────────────────────────────────────────────────
   SA LOADER — Variables & Wrapper
───────────────────────────────────────────────────────────── */
#sa-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 5vw, 28px);
    background: #06212b;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

#sa-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   SVG container — Responsive con clamp
───────────────────────────────────────────────────────────── */
#sa-loader svg {
    width: clamp(120px, 40vw, 160px);
    height: auto;
    overflow: visible;
}

/* ─────────────────────────────────────────────────────────────
   Líneas
───────────────────────────────────────────────────────────── */
#sa-loader .sa-line {
    stroke: rgba(29, 132, 190, 0.22);
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: var(--len);
    stroke-dashoffset: var(--len);
    animation:
        saReveal  0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        saShimmer 2.2s  ease-in-out infinite;
    animation-delay: var(--d), calc(var(--d) + 0.65s);
}

@keyframes saReveal {
    to { stroke-dashoffset: 0; }
}

@keyframes saShimmer {
    0%   { stroke: rgba(29, 132, 190, 0.22); }
    45%  { stroke: rgba(196, 166, 115, 1.00); }
    55%  { stroke: rgba(196, 166, 115, 1.00); }
    100% { stroke: rgba(29, 132, 190, 0.22); }
}

/* ─────────────────────────────────────────────────────────────
   Label — Responsive con clamp
───────────────────────────────────────────────────────────── */
#sa-loader .sa-label {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(11px, 3.5vw, 20px);
    font-weight: 600;
    letter-spacing: clamp(0.08em, 0.2vw, 0.28em);
    text-transform: uppercase;
    color: rgba(29, 132, 190, 0.45);
    text-align: center;
    max-width: 90%;
    opacity: 0;
    transform: translateY(8px);
    animation: saLabelIn 0.5s ease forwards;
    animation-delay: 1.1s;
}

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


/* Wrapper del link (para que el <a> no rompa Slick) */
.brand-gallery__slide a.glightbox {
    display: block;
    cursor: zoom-in;
}

.brand-gallery__slide a.glightbox img {
    pointer-events: none;  /* El click pasa al <a> */
}

/* Tema Miami para el lightbox */
.glightbox-container {
    background: #06212b !important;
}

.glightbox-container .gclose,
.glightbox-container .gprev,
.glightbox-container .gnext {
    background: #1d84be !important;
    color: #fff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
}

.glightbox-container .gclose:hover,
.glightbox-container .gprev:hover,
.glightbox-container .gnext:hover {
    background: #1d84be !important;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev{
    top: 45%!important;
}


/* ══════════════════════════════════════════════════════════════
   LOCATION SECTION
   ══════════════════════════════════════════════════════════════ */

.location-parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 700px;
    margin: 60px 0;
    overflow: hidden;
}

/* Overlay muy sutil */
.location-parallax-section.overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,33,43,0.08) 0%, rgba(6,33,43,0.03) 100%);
    z-index: 0;
}

/* ── Botón flotante ────────────────────────────────────────── */
.location-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.location-btn:hover {
    transform: translateY(-6px);
    text-decoration: none;
}

/* ── Ícono circular ──────────────────────────────────────── */
.location-btn__icon {
    width: 60px;
    height: 60px;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow:
        0 4px 20px rgba(0,0,0,0.15),
        0 0 0 0 rgba(29,132,190,0.5);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    color: var(--primary-color);

    transition: all 0.3s ease;
    animation: pulse-location 2.5s infinite ease-in-out;
}

.location-btn:hover .location-btn__icon {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(29,132,190,0.4);
    animation: none;
}

/* Animación pulse sutil */
@keyframes pulse-location {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 0 0 0 rgba(29,132,190,0.5);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 0 0 15px rgba(29,132,190,0);
    }
}

/* ── Micro-texto debajo ────────────────────────────────────── */
.location-btn__text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;

    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 4px 10px;
    border-radius: 12px;

    transition: all 0.3s ease;
}

.location-btn:hover .location-btn__text {
    background: rgba(29,132,190,0.9);
    color: #ffffff;
    text-shadow: none;
}

/* ── Responsive ────────────────────────────────────────────── */

/* Tablets (768px - 991px) */
@media (max-width: 991.98px) {
    .location-parallax-section {
        background-attachment: scroll;
        min-height: 450px;
    }
}

/* Mobile landscape / small tablets (576px - 767px) */
@media (max-width: 767.98px) {
    .location-parallax-section {
        min-height: 400px;
        margin: 40px 0;
    }

    .location-btn {
        bottom: 30px;
        right: 30px;
        gap: 6px;
    }

    .location-btn__icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .location-btn__text {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* iPhone 12/13/14 Pro, standard phones (375px - 575px) */
@media (max-width: 575.98px) {
    .location-parallax-section {
        min-height: 350px;
        margin: 30px 0;
    }

    .location-btn {
        bottom: 20px;
        right: 20px;
    }

    .location-btn__icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .location-btn__text {
        font-size: 9px;
    }
}

/* iPhone SE, Galaxy Fold (< 375px) */
@media (max-width: 374.98px) {
    .location-parallax-section {
        min-height: 320px;
    }

    .location-btn {
        bottom: 15px;
        right: 15px;
        gap: 5px;
    }

    .location-btn__icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .location-btn__text {
        font-size: 8px;
        padding: 2px 6px;
    }
}


/* ─────────────────────────────────────────────────────────────
   Hero Container
───────────────────────────────────────────────────────────── */
.parallax-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 10vh, 100px) 20px;
}

/* ─────────────────────────────────────────────────────────────
   Hero Logo
───────────────────────────────────────────────────────────── */
.hero-logo-wrapper {
    margin-bottom: clamp(20px, 4vh, 35px);
}

.hero-logo {
    max-height: clamp(60px, 12vw, 110px);
    width: auto;
    display: block;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
   Hero Microcopy
───────────────────────────────────────────────────────────── */
.hero-microcopy {
    font-size: clamp(12px, 2.5vw, 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: clamp(300px, 85vw, 720px);
    margin: 0 auto clamp(25px, 5vh, 40px);
    font-weight: 400;
}

/* ─────────────────────────────────────────────────────────────
   Hero Main Title — Responsive fluido
───────────────────────────────────────────────────────────── */
.hero-main-title {
    font-size: clamp(24px, 6vw, 56px);
    line-height: clamp(1.2, 1.3, 1.4);
    font-weight: 700;
    color: #ffffff;
    max-width: clamp(300px, 90vw, 900px);
    margin: 0 auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ─────────────────────────────────────────────────────────────
   Ajustes específicos por breakpoint
───────────────────────────────────────────────────────────── */

/* Mobile pequeño (< 375px) */
@media (max-width: 374.98px) {
    #sa-loader svg {
        width: 100px;
    }

    #sa-loader .sa-label {
        font-size: 10px;
        letter-spacing: 0.05em;
    }

    .hero-main-title {
        font-size: 22px;
    }
}

/* Mobile estándar (375px - 575px) */
@media (max-width: 575.98px) {
    .parallax-section {
        padding: 50px 15px;
    }
}

/* Tablet (576px - 991px) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-main-title {
        max-width: 85vw;
    }
}

/* Desktop grande (> 1400px) */
@media (min-width: 1400px) {
    .hero-main-title {
        font-size: 58px;
    }
}


/* ══════════════════════════════════════════════════════════════
   CEO CONTACT SECTION - Base
   ══════════════════════════════════════════════════════════════ */

.ceo-contact-section {
    background: linear-gradient(135deg, #1d84be 0%, #1a77ab 100%);
    position: relative;
    overflow: visible;

    /* Padding adaptativo - más compacto */
    padding: clamp(5px, 7vh, 10px) 0;
}

/* ══════════════════════════════════════════════════════════════
   FOTO CEO - Efecto breakout sutil
   ══════════════════════════════════════════════════════════════ */

.ceo-photo-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    transform: translateY(70px);
}

.ceo-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;

    /* Sombra que sigue contorno PNG */
    filter:
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.12))
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));

    /* Breakout sutil */
    transform: translateY(-60px);

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ceo-photo:hover {
    transform: translateY(-28px) scale(1.04);
    filter:
        drop-shadow(0 0 16px rgba(196, 166, 115, 0.35))
        drop-shadow(0 28px 55px rgba(0, 0, 0, 0.5));
}

/* ══════════════════════════════════════════════════════════════
   HEADER CEO
   ══════════════════════════════════════════════════════════════ */

.ceo-header {
    margin-bottom: 30px;
}

.ceo-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    background: rgba(196, 166, 115, 0.25);
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.ceo-name {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.ceo-tagline {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT CARDS - Glassmorphism con hover states
   ══════════════════════════════════════════════════════════════ */

.ceo-contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.contact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px;

    text-decoration: none;
    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(196, 166, 115, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

/* Card estática (no clicable) */
.contact-card--static {
    cursor: default;
}

.contact-card--static:hover {
    transform: none;
}

/* Íconos */
.contact-card-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    color: #ffffff;

    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: rgba(196, 166, 115, 0.25);
    transform: scale(1.08);
}

/* WhatsApp verde */
.contact-card-icon--whatsapp {
    background: rgba(37, 211, 102, 0.15);
}

.contact-card:hover .contact-card-icon--whatsapp {
    background: rgba(37, 211, 102, 0.3);
}

/* Contenido */
.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.contact-card-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
}

.contact-card-value {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;

    /* Truncate largo */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   CTA BUTTON - Outline blanco con contraste alto
   ══════════════════════════════════════════════════════════════ */

.ceo-cta-wrapper {
    display: flex;
    justify-content: flex-start;
}

.ceo-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #ffffff;
    color: #1d84be;

    font-size: 15px;
    font-weight: 600;
    font-family: var(--heading-font);

    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid #ffffff;

    text-decoration: none;
    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ceo-cta-button:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.ceo-cta-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ceo-cta-button:hover i {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* Desktop grande */
@media (min-width: 1200px) {
    .ceo-contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptop / Tablet landscape */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ceo-photo-container {
        max-width: 260px;
    }

    .ceo-photo {
        transform: translateY(-15px);
    }

    .ceo-photo:hover {
        transform: translateY(-22px) scale(1.03);
    }

    .ceo-contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* Tablet portrait / Mobile landscape */
@media (max-width: 767.98px) {
    .ceo-contact-section {
        padding: clamp(50px, 6vh, 10px) 0;
    }

    .ceo-photo-container {
        max-width: 240px;
        margin-bottom: 35px;
    }

    .ceo-photo {
        transform: translateY(-12px);
    }

    .ceo-photo:hover {
        transform: translateY(-16px) scale(1.02);
    }

    .ceo-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .ceo-contact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ceo-cta-wrapper {
        justify-content: center;
    }
}

/* Mobile pequeño */
@media (max-width: 575.98px) {
    .ceo-photo-container {
        max-width: 200px;
    }

    .contact-card {
        padding: 14px;
    }

    .contact-card-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .contact-card-value {
        font-size: 13px;
    }

    .ceo-cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}


/* ══════════════════════════════════════════════════════════════
   UX ENHANCEMENTS
   ══════════════════════════════════════════════════════════════ */

/* Accesibilidad: Focus states */
.contact-card:focus,
.ceo-cta-button:focus {
    outline: 3px solid rgba(196, 166, 115, 0.5);
    outline-offset: 3px;
}

/* Performance: GPU acceleration */
.ceo-photo,
.contact-card,
.ceo-cta-button {
    will-change: transform;
}
/* Contenedor principal para botón + tooltip */
.whatsapp-container {
  position: fixed;
  right: 17px;
  bottom: 80px;
  z-index: 9999;
  display: flex;
  flex-direction: column; /* Cambiado a columna */
  align-items: center;    /* Centrado horizontal */
  gap: 8px;               /* Espacio entre tooltip y botón */
}

/* Tu botón existente */
.whatsapp-container .whatsapp-btn {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 10px 4px 5px 5px;
  margin: 5px;
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  background-color: #25D366;
  box-shadow: 1px 2px 8px #6a6a6a;
  animation: gentle-whatsapp 2.8s infinite ease-in-out;
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-container .whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #20b859;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
}

/* Tooltip flotante - ENCIMA del botón */
.whatsapp-tooltip {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 10px;       /* Un poco más pequeño */
  font-weight: 500;
  padding: 3px 7px;      /* Más compacto */
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 5px;     /* Espacio extra con el botón */
}

/* Flecha del tooltip - AHORA ABAJO */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;           /* Cambiado de right a bottom */
  left: 50%;              /* Centrado horizontal */
  transform: translateX(-50%) rotate(90deg); /* Rotada para que apunte hacia abajo */
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #0f172a;
}

/* Efecto hover en el contenedor */
.whatsapp-container:hover .whatsapp-tooltip {
  transform: translateY(-3px);  /* Ahora se mueve hacia arriba */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Tu animación existente se mantiene igual */
@keyframes gentle-whatsapp {
  0% {
    transform: scale(1) translateY(0);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  25% {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1) translateY(0);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  75% {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  }
  100% {
    transform: scale(1) translateY(0);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}
