/* =========================================================
   ENCAEX — Sistema de diseño
   Paleta oficial de marca: azul navy brillante + dorado + rojo vinotinto
   ========================================================= */

:root {
    --ex-primary: #0F2A4D;
    --ex-primary-dark: #081A31;
    --ex-primary-light: #E3E9F2;
    --ex-primary-soft: #F2F5F9;
    --ex-gold: #FFD84D;
    --ex-gold-deep: #E08E00;
    --ex-accent: #E08E00;
    --ex-accent-dark: #B98200;
    --ex-accent-light: #FFF6DA;
    --ex-navy: #0F2A4D;
    --ex-wine: #8A1338;
    --ex-wine-dark: #55101F;
    --ex-wine-light: #F7E4E8;
    --ex-gray: #5B6270;
    --ex-gray-light: #8C93A3;
    --ex-border: #E4E5F1;
    --ex-bg: #F5F6FC;
    --ex-white: #FFFFFF;
    --ex-success: #16A34A;
    --ex-radius: 16px;
    --ex-radius-sm: 10px;
    --ex-shadow: 0 1px 3px rgba(15,42,77,0.08), 0 1px 2px rgba(15,42,77,0.05);
    --ex-shadow-lg: 0 20px 40px rgba(15,42,77,0.16);
    --ex-gradient-primary: linear-gradient(135deg, #0A1F3A 0%, #14539F 50%, #3D93FF 100%);
    --ex-gradient-accent: linear-gradient(135deg, #FFE066 0%, #FFC61A 55%, #FF9500 100%);
    --ex-gradient-wine: linear-gradient(135deg, #8A1338 0%, #B31E4D 55%, #D62C63 100%);
    --ex-gradient-page: linear-gradient(160deg, #E9F2F5 0%, #FFFCF0 45%, #F4F7FC 100%);
    --ex-font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--ex-font);
    color: var(--ex-navy);
    background: var(--ex-gradient-page);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.ex-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Topbar de contacto ---------- */
.ex-topbar {
    background: var(--ex-navy);
    color: #C7D0DC;
    font-size: 13px;
}
.ex-topbar .ex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 6px;
}
.ex-topbar a { text-decoration: none; color: #C7D0DC; }
.ex-topbar a:hover { color: #fff; }
.ex-topbar-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 18px; }
.ex-topbar-social { display: inline-flex; gap: 12px; align-items: center; }
.ex-topbar-social a {
    display: flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    transition: background .15s, transform .15s;
}
.ex-topbar-social a:hover { background: var(--ex-gold); color: var(--ex-primary-dark); transform: translateY(-1px); }
.ex-topbar-social svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- Header / navegación ---------- */
.ex-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ex-border);
}
.ex-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.ex-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ex-logo-img {
    height: 44px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(15,42,77,0.25);
    flex-shrink: 0;
}
.ex-logo-tagline { font-size: 10.5px; color: var(--ex-gray); letter-spacing: .04em; margin-top: 3px; font-weight: 600; }
.ex-footer .ex-logo-tagline { color: #C7D0DC; }
.ex-footer .ex-logo {
    display: inline-flex;
    background: #fff;
    padding: 10px 16px;
    border-radius: 12px;
}

.ex-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.ex-menu a {
    display: block;
    padding: 9px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ex-navy);
    transition: background .15s, color .15s;
}
.ex-menu a:hover { background: var(--ex-primary-light); color: var(--ex-primary-dark); }
.ex-menu a.activo { background: var(--ex-gradient-primary); color: #fff; box-shadow: 0 4px 12px rgba(15,42,77,.3); }

.ex-nav-cta {
    display: flex; align-items: center; gap: 10px;
}

.ex-menu-movil-btn {
    display: none;
    background: var(--ex-primary-light);
    border: none;
    width: 42px; height: 42px;
    border-radius: 10px;
    font-size: 18px;
    color: var(--ex-primary-dark);
    cursor: pointer;
}

@media (max-width: 980px) {
    .ex-menu { display: none; }
    .ex-menu-movil-btn { display: block; }
    .ex-menu.abierto {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        padding: 12px;
        box-shadow: var(--ex-shadow-lg);
        border-bottom: 1px solid var(--ex-border);
    }
    .ex-menu.abierto a { text-align: left; }
}

/* ---------- Botones ---------- */
.ex-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, filter .15s;
}
.ex-btn-primary {
    background: var(--ex-gradient-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(15,42,77,0.32);
}
.ex-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.ex-btn-gold {
    background: var(--ex-gradient-accent);
    color: var(--ex-primary-dark);
    box-shadow: 0 8px 20px rgba(216,154,0,0.35);
}
.ex-btn-gold:hover { transform: translateY(-2px); filter: brightness(1.03); }
.ex-btn-wine {
    background: var(--ex-gradient-wine);
    color: #fff;
    box-shadow: 0 8px 20px rgba(122,23,48,0.35);
}
.ex-btn-wine:hover { transform: translateY(-2px); filter: brightness(1.06); }
.ex-btn-outline {
    background: #fff;
    color: var(--ex-primary-dark);
    border: 1.5px solid var(--ex-border);
}
.ex-btn-outline:hover { border-color: var(--ex-primary); }
.ex-btn-ghost-light {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.ex-btn-ghost-light:hover { background: rgba(255,255,255,0.25); }
.ex-btn-block { width: 100%; }
.ex-btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---------- Hero ---------- */
.ex-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 80px;
    background:
        linear-gradient(100deg, rgba(6,15,28,0.95) 0%, rgba(15,42,77,0.90) 32%, rgba(15,42,77,0.68) 55%, rgba(15,42,77,0.38) 100%),
        url('../img/hero-banner-encaex.jpg') center 40% / cover no-repeat;
}
.ex-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.ex-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ex-primary-light);
    color: var(--ex-primary-dark);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.ex-hero .ex-eyebrow {
    background: rgba(255,255,255,0.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}
.ex-hero h1 {
    font-size: 46px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    color: #fff;
}
.ex-hero h1 em {
    font-style: normal;
    color: var(--ex-gold);
}
.ex-hero p.lead {
    font-size: 17px;
    color: rgba(255,255,255,0.88);
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.6;
}
.ex-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.ex-hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.ex-hero-stat b { display: block; font-size: 26px; font-weight: 800; color: #fff; }
.ex-hero-stat span { font-size: 12.5px; color: rgba(255,255,255,0.75); }

.ex-hero-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--ex-shadow-lg);
    padding: 28px;
    border: 1px solid var(--ex-border);
}
.ex-hero-card-track {
    background: var(--ex-gradient-primary);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
    margin-bottom: 18px;
}
.ex-hero-card-track .lbl { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; opacity: .85; margin-bottom: 6px; }
.ex-track-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    background: #fff;
    border-radius: 999px;
    padding: 4px 18px 4px 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.ex-track-form-ico { font-size: 17px; opacity: .5; flex-shrink: 0; }
.ex-track-form input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 13px 0;
    font-size: 14px;
    font-family: inherit;
    color: var(--ex-navy);
}
.ex-track-form input:focus { outline: none; }
.ex-track-form input::placeholder { color: var(--ex-gray-light); }
.ex-track-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.ex-track-dual a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    background: rgba(255,255,255,0.14);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    padding: 14px 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    transition: background .15s;
}
.ex-track-dual a:hover { background: rgba(255,255,255,0.24); }
.ex-track-dual a .ico { font-size: 20px; }

/* ---------- Dupla de marcas (ENCAEX + Rápido Cargo Miami) ---------- */
.ex-brands-duo { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.ex-brands-duo img { height: 56px; width: auto; border-radius: 10px; box-shadow: var(--ex-shadow); }

/* ---------- Tabla de agencias ---------- */
.ex-tabla-agencias { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.ex-tabla-agencias th, .ex-tabla-agencias td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--ex-border); }
.ex-tabla-agencias th { color: var(--ex-gray); text-transform: uppercase; font-size: 11px; letter-spacing: .04em; }
.ex-tabla-agencias tr:last-child td { border-bottom: none; }
.ex-hero-mini-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ex-hero-mini-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--ex-navy); }
.ex-hero-mini-item .ico {
    width: 30px; height: 30px; border-radius: 9px;
    background: var(--ex-accent-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
}

@media (max-width: 900px) {
    .ex-hero-grid { grid-template-columns: 1fr; }
    .ex-hero h1 { font-size: 34px; }
}

/* ---------- Secciones genéricas ---------- */
.ex-section { padding: 64px 0; }
.ex-section-alt { background: var(--ex-white); }
.ex-section-head { max-width: 620px; margin: 0 auto 40px; text-align: center; }
.ex-section-head.izq { margin-left: 0; text-align: left; }
.ex-section-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 12px; }
.ex-section-head p { color: var(--ex-gray); font-size: 15.5px; line-height: 1.6; }

/* ---------- Tarjetas ---------- */
.ex-card {
    background: #fff;
    border: 1px solid var(--ex-border);
    border-radius: var(--ex-radius);
    padding: 26px;
    box-shadow: var(--ex-shadow);
    transition: transform .18s, box-shadow .18s;
}
.ex-card:hover { transform: translateY(-3px); box-shadow: var(--ex-shadow-lg); }

.ex-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ex-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ex-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.ex-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 1100px) { .ex-grid-5 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px) { .ex-grid-3, .ex-grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .ex-grid-3, .ex-grid-4, .ex-grid-5, .ex-grid-2 { grid-template-columns: 1fr; } }

.ex-service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    background: var(--ex-primary-light);
}
.ex-service-icon img { width: 28px; height: 28px; object-fit: contain; }
.ex-grid-3 .ex-card:nth-child(2) .ex-service-icon,
.ex-grid-4 .ex-card:nth-child(2) .ex-service-icon { background: var(--ex-accent-light); }
.ex-grid-3 .ex-card:nth-child(3) .ex-service-icon,
.ex-grid-4 .ex-card:nth-child(3) .ex-service-icon { background: #E0E7FF; }
.ex-grid-4 .ex-card:nth-child(4) .ex-service-icon { background: #FCE7F3; }

/* Íconos de "Nuestros servicios" en Inicio: más grandes que el tamaño base
   (antes se veían pequeños dentro de la tarjeta) y un color distinto por
   tarjeta — antes 3 de las 5 compartían el mismo tono pálido y la sección
   se sentía monocroma. */
.ex-grid-5 .ex-service-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    font-size: 34px;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(15,42,77,.10);
}
.ex-grid-5 .ex-service-icon img { width: 40px; height: 40px; }
.ex-grid-5 .ex-card:nth-child(1) .ex-service-icon { background: var(--ex-accent-light); }
.ex-grid-5 .ex-card:nth-child(2) .ex-service-icon { background: #E0E7FF; }
.ex-grid-5 .ex-card:nth-child(3) .ex-service-icon { background: var(--ex-wine-light); }
.ex-grid-5 .ex-card:nth-child(4) .ex-service-icon { background: #DCFCE7; }
.ex-grid-5 .ex-card:nth-child(5) .ex-service-icon { background: #FCE7F3; }

.ex-card h3 { font-size: 17px; font-weight: 800; margin: 0 0 8px; }
.ex-card p { font-size: 14px; color: var(--ex-gray); line-height: 1.6; margin: 0; }
.ex-card .ex-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ex-primary-dark);
    background: var(--ex-primary-light);
    padding: 4px 10px;
    border-radius: 999px;
}

/* ---------- Banda de estadísticas ---------- */
.ex-stats-band {
    background: var(--ex-navy);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.ex-stats-band::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--ex-gradient-primary);
    opacity: .18;
}
.ex-stats-band .item { position: relative; text-align: center; }
.ex-stats-band .item b { display: block; font-size: 34px; font-weight: 800; color: #fff; }
.ex-stats-band .item span { font-size: 12.5px; color: #A9B7C9; }
@media (max-width: 800px) { .ex-stats-band { grid-template-columns: repeat(2,1fr); } }

/* ---------- Rutas / cobertura (acordeón) ---------- */
.ex-rutas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 800px) { .ex-rutas-grid { grid-template-columns: 1fr; } }
.ex-ruta {
    border: 1px solid var(--ex-border);
    border-radius: var(--ex-radius-sm);
    background: #fff;
    overflow: hidden;
}
.ex-ruta summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    font-weight: 700;
    font-size: 14.5px;
}
.ex-ruta summary::-webkit-details-marker { display: none; }
.ex-ruta summary .cnt {
    font-weight: 600;
    font-size: 12px;
    color: var(--ex-gray);
    background: var(--ex-bg);
    padding: 3px 9px;
    border-radius: 999px;
}
.ex-ruta summary::after {
    content: "+";
    font-size: 18px;
    color: var(--ex-primary);
    margin-left: 10px;
}
.ex-ruta[open] summary::after { content: "–"; }
.ex-ruta .paradas {
    padding: 0 18px 16px;
    font-size: 13px;
    color: var(--ex-gray);
    line-height: 1.9;
    border-top: 1px solid var(--ex-border);
    padding-top: 12px;
}

/* ---------- Agencias ---------- */
.ex-agencia-filtros { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.ex-agencia-filtros input {
    flex: 1;
    min-width: 220px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1.5px solid var(--ex-border);
    font-size: 14px;
}
.ex-agencia-filtros input:focus { outline: none; border-color: var(--ex-primary); box-shadow: 0 0 0 3px var(--ex-primary-light); }
.ex-agencia-card { display: flex; flex-direction: column; gap: 10px; }
.ex-agencia-card .ciudad { font-weight: 800; font-size: 16px; }
.ex-agencia-card .principal-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ex-primary-dark);
    background: var(--ex-gold);
    padding: 3px 9px;
    border-radius: 999px;
    margin-left: 8px;
}
.ex-agencia-card .direccion { font-size: 13.5px; color: var(--ex-gray); line-height: 1.55; }
.ex-agencia-card .tel { font-size: 13.5px; font-weight: 700; color: var(--ex-primary-dark); }
.ex-wa-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 4px;
    font-size: 12.5px; font-weight: 700;
    color: #fff;
    background: #25D366;
    padding: 6px 12px;
    border-radius: 999px;
    text-decoration: none;
    width: fit-content;
    transition: filter .15s;
}
.ex-wa-link:hover { filter: brightness(1.06); }

/* ---------- Formularios ---------- */
.ex-field { margin-bottom: 18px; }
.ex-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ex-navy); }
.ex-field input, .ex-field select, .ex-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--ex-border);
    font-size: 14px;
    font-family: inherit;
    background: #FCFEFE;
}
.ex-field input:focus, .ex-field select:focus, .ex-field textarea:focus {
    outline: none; border-color: var(--ex-primary); box-shadow: 0 0 0 3px var(--ex-primary-light); background: #fff;
}
.ex-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .ex-field-row { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.ex-faq-item { border-bottom: 1px solid var(--ex-border); padding: 18px 0; }
.ex-faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ex-faq-item summary::-webkit-details-marker { display: none; }
.ex-faq-item summary::after { content: "+"; font-size: 20px; color: var(--ex-accent); margin-left: 12px; }
.ex-faq-item[open] summary::after { content: "–"; }
.ex-faq-item p { color: var(--ex-gray); font-size: 14px; line-height: 1.65; margin: 12px 0 0; }

/* ---------- Timeline valores / franjas con icono ---------- */
.ex-valor-card { text-align: center; }
.ex-valor-icon {
    width: 56px; height: 56px; border-radius: 50%;
    margin: 0 auto 14px;
    background: var(--ex-primary-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}
.ex-valor-card:nth-child(2) .ex-valor-icon { background: var(--ex-accent-light); }
.ex-valor-card:nth-child(3) .ex-valor-icon { background: #E0E7FF; }
.ex-valor-card:nth-child(4) .ex-valor-icon { background: var(--ex-wine-light); }

/* ---------- Casillero (compras en línea) ---------- */
.ex-eyebrow-wine { background: var(--ex-wine-light); color: var(--ex-wine-dark); }
.ex-casillero-panel { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
@media (max-width: 900px) { .ex-casillero-panel { grid-template-columns: 1fr; } }

/* ---------- Logo "Tax Free" ---------- */
.ex-casillero-heading-row {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin: 8px 0 16px;
}
.ex-casillero-heading-row h2 { margin: 0; }
.ex-taxfree-logo {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff;
    border: 1.5px solid var(--ex-gold);
    border-radius: 999px;
    padding: 5px 14px 5px 5px;
    box-shadow: 0 4px 10px rgba(216,154,0,0.25);
    flex-shrink: 0;
}
.ex-taxfree-logo .icon {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: var(--ex-gradient-accent);
    color: var(--ex-primary-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800;
}
.ex-taxfree-logo .txt {
    font-size: 13.5px; font-weight: 800; letter-spacing: .03em;
    white-space: nowrap;
}
.ex-taxfree-logo .txt b { color: var(--ex-navy); }
.ex-taxfree-logo .txt em { font-style: normal; color: var(--ex-wine); }

/* ---------- Insignia "One Box" ---------- */
.ex-onebox-strip {
    display: flex; align-items: center; gap: 16px;
    background: #fff;
    border: 1.5px solid var(--ex-border);
    border-radius: var(--ex-radius-sm);
    padding: 14px 18px;
    margin: 20px 0 26px;
}
@media (max-width: 480px) { .ex-onebox-strip { flex-direction: column; align-items: flex-start; } }
.ex-onebox-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ex-onebox-icon {
    width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
    background: var(--ex-gradient-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(216,154,0,0.3);
}
.ex-onebox-word { display: flex; flex-direction: column; line-height: 1.1; }
.ex-onebox-word b { font-size: 16px; font-weight: 800; letter-spacing: .02em; color: var(--ex-navy); }
.ex-onebox-word b em { font-style: normal; color: var(--ex-wine); }
.ex-onebox-word small { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ex-gray-light); }
.ex-onebox-strip p { margin: 0; font-size: 13.5px; color: var(--ex-gray); line-height: 1.55; }
.ex-onebox-strip p b { color: var(--ex-navy); }

.ex-pasos-grandes { margin: 22px 0 26px; }
.ex-paso-grande {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--ex-border);
}
.ex-paso-grande:first-child { border-top: none; padding-top: 0; }
.ex-paso-grande .num {
    font-size: 32px; font-weight: 800; line-height: 1;
    width: 38px; flex-shrink: 0;
    color: var(--ex-wine);
}
.ex-paso-grande .txt b { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.ex-paso-grande .txt span { font-size: 13.5px; color: var(--ex-gray); line-height: 1.55; }

/* Tarjeta de dirección del casillero (estilo formulario) */
.ex-direccion-card {
    background: var(--ex-accent-light);
    border: 1.5px solid var(--ex-gold);
    border-radius: var(--ex-radius);
    padding: 26px;
}
.ex-direccion-card h3 { margin: 0 0 16px; font-size: 15.5px; font-weight: 800; color: var(--ex-primary-dark); }
.ex-taxfree-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ex-gradient-wine);
    padding: 3px 10px;
    border-radius: 999px;
    margin-left: 8px;
    vertical-align: middle;
}
.ex-direccion-row {
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(216,154,0,0.18);
}
.ex-direccion-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.ex-direccion-grid3 .ex-direccion-row { margin-bottom: 0; }
@media (max-width: 480px) { .ex-direccion-grid3 { grid-template-columns: 1fr; } }
.ex-direccion-row .lbl {
    display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .04em;
    text-transform: uppercase; color: var(--ex-gray-light); margin-bottom: 3px;
}
.ex-direccion-row .val { font-size: 14px; font-weight: 700; color: var(--ex-navy); }
.ex-direccion-nota {
    display: flex; gap: 8px; align-items: flex-start;
    font-size: 12.5px; color: var(--ex-wine-dark); background: var(--ex-wine-light);
    padding: 12px 14px; border-radius: 10px; margin-top: 4px; line-height: 1.55;
}

/* ---------- Cotizador (resultado) ---------- */
.ex-resultado {
    background: var(--ex-gradient-primary);
    border-radius: var(--ex-radius);
    padding: 26px;
    color: #fff;
    text-align: center;
    display: none;
}
.ex-resultado.visible { display: block; }
.ex-resultado .monto { font-size: 40px; font-weight: 800; margin: 8px 0; }
.ex-resultado .nota { font-size: 12.5px; opacity: .85; }

/* ---------- CTA banda final ---------- */
.ex-cta-band {
    background: var(--ex-gradient-primary);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ex-cta-band h2 { font-size: 28px; margin: 0 0 10px; font-weight: 800; }
.ex-cta-band p { opacity: .92; margin: 0 0 24px; }

/* ---------- Footer ---------- */
.ex-footer { background: var(--ex-navy); color: #A9B7C9; padding: 56px 0 24px; margin-top: 40px; }
.ex-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 800px) { .ex-footer-grid { grid-template-columns: 1fr 1fr; } }
.ex-footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 16px; }
.ex-footer ul { list-style: none; margin: 0; padding: 0; }
.ex-footer li { margin-bottom: 10px; font-size: 13.5px; }
.ex-footer a { text-decoration: none; color: #A9B7C9; }
.ex-footer a:hover { color: #fff; }
.ex-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
    font-size: 12.5px;
    color: #7E93A6;
}
.ex-footer-social { display: flex; gap: 10px; }
.ex-footer-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: #fff;
    color: var(--ex-navy);
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s, transform .15s;
}
.ex-footer-social a:hover { background: var(--ex-gold); color: var(--ex-primary-dark); transform: translateY(-2px); }

/* ---------- Carrusel de imágenes ---------- */
.ex-carousel { position: relative; }
.ex-carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.ex-carousel-track::-webkit-scrollbar { display: none; }
.ex-carousel-slide {
    position: relative;
    flex: 0 0 auto;
    width: min(560px, 84vw);
    scroll-snap-align: start;
    border-radius: var(--ex-radius);
    overflow: hidden;
    box-shadow: var(--ex-shadow);
    aspect-ratio: 16/9;
}
.ex-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ex-carousel-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 16px 18px;
    background: linear-gradient(0deg, rgba(15,42,77,0.85) 0%, rgba(15,42,77,0) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
.ex-carousel-nav { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.ex-carousel-nav button {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid var(--ex-border);
    background: #fff;
    color: var(--ex-primary);
    font-size: 16px;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.ex-carousel-nav button:hover { background: var(--ex-primary); color: #fff; }

/* ---------- Franja de imágenes secundarias ---------- */
.ex-img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .ex-img-grid { grid-template-columns: 1fr; } }
.ex-img-card { border-radius: var(--ex-radius); overflow: hidden; box-shadow: var(--ex-shadow); aspect-ratio: 4/3; }
.ex-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.ex-img-card:hover img { transform: scale(1.04); }

/* ---------- Mapa de Honduras (Nosotros) ---------- */
.ex-mapa-panel {
    background: #fff;
    border: 1px solid var(--ex-border);
    border-radius: var(--ex-radius);
    padding: 32px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: center;
}
@media (max-width: 800px) { .ex-mapa-panel { grid-template-columns: 1fr; } }
.ex-mapa-panel img { width: 100%; height: auto; }

/* ---------- Tarjeta de equipo ---------- */
.ex-equipo-card { border-radius: var(--ex-radius); overflow: hidden; box-shadow: var(--ex-shadow-lg); }
.ex-equipo-card img { width: 100%; height: auto; display: block; }

/* ---------- Página interior: encabezado simple ---------- */
.ex-page-hero {
    padding: 48px 0 40px;
    text-align: center;
}
.ex-page-hero h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin: 10px 0 12px; }
.ex-page-hero p { color: var(--ex-gray); max-width: 560px; margin: 0 auto; }

/* ---------- Mensajes de formulario (envío real por correo) ---------- */
.ex-form-msg { display:none; margin-top:14px; padding:12px 16px; border-radius:10px; font-size:13.5px; font-weight:600; }
.ex-form-msg.visible { display:block; }
.ex-form-msg.ok { background: var(--ex-primary-light); color: var(--ex-primary-dark); }
.ex-form-msg.error { background: var(--ex-wine-light); color: var(--ex-wine-dark); }
.ex-btn[disabled] { opacity: .6; cursor: not-allowed; }

/* ---------- Utilidades ---------- */
.ex-mb-0 { margin-bottom: 0; }
.ex-flex { display: flex; }
.ex-gap-10 { gap: 10px; }
.ex-text-center { text-align: center; }
