/* =============================================
   COBERTURA NACIONAL — cobertura.css  v3.0
   Arcadian Support MX — Adaptación Visual
   ============================================= */
/* ─── UTILIDADES GENERALES ─────────────────── */
.section-padding  { padding: 90px 10%; }
.text-center      { text-align: center; }
.section-title {
    color: var(--text-title);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}
.sec-desc {
    color: var(--text-p);
    margin-bottom: 44px;
    font-size: 1.05rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--arcadian-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
/* ─── FADE IN UP ───────────────────────────── */
.fade-in-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity  0.7s cubic-bezier(0.33,1,0.68,1),
        transform 0.7s cubic-bezier(0.33,1,0.68,1);
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ─── GLASS CARDS ──────────────────────────── */
.glass-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.06);
}
.glass-card.dark-glass {
    background: rgba(10, 18, 38, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
/* =============================================
   HERO
   ============================================= */
.hero-cobertura {
    position: relative;
    min-height: 88vh;
    background: linear-gradient(160deg, #060d1f 0%, #0a1530 45%, #0e1f5a 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 10% 70px;
    overflow: hidden;
}
/* Franja azul decorativa izquierda */
.hero-cobertura::before {
    content: '';
    position: absolute;
    left: 0; top: 10%; bottom: 10%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--arcadian-blue), transparent);
    border-radius: 0 4px 4px 0;
}
/* Luz ambiental */
.hero-cobertura::after {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(42,110,242,0.13) 0%, transparent 65%);
    pointer-events: none;
}
/* Canvas de partículas */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
/* Mapa SVG decorativo */
.hero-map-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 0;
    padding-right: 5%;
}
.hero-map-svg {
    width: 55%;
    max-width: 600px;
    height: auto;
    opacity: 0.22;
}
.map-shape {
    fill: none;
    stroke: rgba(120,170,255,0.55);
    stroke-width: 1.5;
    stroke-linejoin: round;
}
.map-routes line {
    stroke: rgba(42,110,242,0.5);
    stroke-width: 1;
    stroke-dasharray: 6 4;
    animation: dash-move 2.8s linear infinite;
}
@keyframes dash-move { to { stroke-dashoffset: -20; } }
.map-nodes .node {
    fill: rgba(42,110,242,0.6);
    stroke: rgba(120,170,255,0.8);
    stroke-width: 1.5;
}
.map-nodes .node-main {
    fill: #f59e0b;
    stroke: rgba(251,210,80,0.9);
    stroke-width: 2;
}
.map-nodes .node-pulse {
    fill: rgba(42,110,242,0.75);
    animation: pulse-node 2.4s ease-in-out infinite;
}
@keyframes pulse-node {
    0%,100% { r: 7; opacity: 0.7; }
    50%      { r: 11; opacity: 1; }
}
.map-labels text {
    fill: rgba(160,205,255,0.8);
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}
/* Contenido del hero */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    animation: hero-in 0.9s cubic-bezier(0.33,1,0.68,1) both;
}
@keyframes hero-in {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.65);
    padding: 7px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-content h1 {
    font-size: 4rem;
    line-height: 1.12;
    margin-bottom: 22px;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
    font-weight: 800;
}
.hero-highlight {
    background: linear-gradient(90deg, #f59e0b, #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cbd5e1;
    line-height: 1.72;
    max-width: 600px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    background: var(--arcadian-blue, #2a6ef2);
    color: #fff;
    border: 2px solid var(--arcadian-blue, #2a6ef2);
    transition:
        transform  0.22s cubic-bezier(0.33,1,0.68,1),
        box-shadow 0.22s ease,
        background 0.2s ease;
}
.btn-primary:hover {
    background: #1e5fd4;
    border-color: #1e5fd4;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(42,110,242,0.38);
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 2px solid rgba(255,255,255,0.18);
    transition:
        transform   0.22s cubic-bezier(0.33,1,0.68,1),
        background  0.22s ease,
        border-color 0.22s ease,
        color        0.22s ease;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
    transform: translateY(-3px);
}
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.28);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: opacity 0.4s ease;
    animation: bounce-hint 2.4s ease-in-out infinite;
    z-index: 2;
}
@keyframes bounce-hint {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(7px); }
}
/* =============================================
   MÉTRICAS
   ============================================= */
.metrics-cobertura {
    padding: 0 10%;
    margin-top: -65px;
    position: relative;
    z-index: 10;
}
.metrics-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 44px 40px;
    border-radius: 22px;
    color: #fff;
    gap: 0;
}
.metric-item {
    text-align: center;
    flex: 1;
    min-width: 170px;
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.metric-divider {
    width: 1px;
    background: rgba(255,255,255,0.12);
    align-self: stretch;
    margin: 8px 0;
}
.metric-icon {
    font-size: 2.1rem;
    color: var(--arcadian-gold, #f59e0b);
    margin-bottom: 12px;
    display: block;
    transition: transform 0.22s cubic-bezier(0.175,0.885,0.32,1.275);
}
.metric-item:hover .metric-icon {
    transform: scale(1.12);
}
.metric-number {
    font-size: 3.2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -1px;
}
.metric-unit {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}
.metric-label {
    color: #64748b;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.45;
}
/* =============================================
   CARRUSEL DE MARCAS
   ============================================= */
.partners-section {
    padding: 90px 0 60px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.partners-title-container {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 10px;
}
.partners-eyebrow {
    display: block;
    color: var(--arcadian-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.partners-title {
    font-size: 2rem;
    color: var(--text-title);
    font-weight: 800;
    margin-bottom: 12px;
}
.partners-title span {
    color: var(--arcadian-blue);
}
.partners-subtitle {
    color: var(--text-p);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}
.partners-carousel {
    width: 100%;
    overflow: hidden;
    padding: 32px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-logos 35s linear infinite;
}
.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}
.partner-logo {
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo img {
    height: 52px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45);
    transition:
        filter    0.35s ease,
        transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.12);
}
@keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* =============================================
   SEMÁFORO DE ALCANCE
   ============================================= */
.scope-section {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 22px;
    margin-top: 50px;
}
.scope-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border-top: 3px solid transparent;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition:
        transform  0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow 0.32s ease;
    cursor: default;
    will-change: transform;
}
.scope-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.09);
}
.scope-card-inner {
    padding: 40px 32px 36px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.scope-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}
.scope-card:hover .scope-glow {
    opacity: 1;
}
.scope-glow-green { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,0.08) 0%, transparent 70%); }
.scope-glow-blue  { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42,110,242,0.08) 0%, transparent 70%); }
.scope-glow-gold  { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,158,11,0.08) 0%, transparent 70%); }
.scope-all    { border-top-color: #10b981; }
.scope-remote { border-top-color: var(--arcadian-blue); }
.scope-local  { border-top-color: #f59e0b; }
.scope-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition:
        background 0.22s ease,
        color      0.22s ease,
        transform  0.22s cubic-bezier(0.175,0.885,0.32,1.275);
    flex-shrink: 0;
}
.scope-card:hover .scope-icon-wrap {
    transform: scale(1.08) rotate(-4deg);
}
.scope-icon-green { background: rgba(16,185,129,0.1);  color: #10b981; }
.scope-icon-blue  { background: rgba(42,110,242,0.1);  color: var(--arcadian-blue); }
.scope-icon-gold  { background: rgba(245,158,11,0.1);  color: #d97706; }
.scope-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.73rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}
.badge-green { background: rgba(16,185,129,0.1); color: #10b981; }
.badge-blue  { background: rgba(42,110,242,0.1); color: var(--arcadian-blue); }
.badge-gold  { background: rgba(245,158,11,0.1); color: #d97706; }
.scope-card h3 {
    font-size: 1.2rem;
    color: var(--text-title);
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3;
}
.scope-card-inner > p {
    color: var(--text-p);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}
.scope-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.scope-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    color: #475569;
    font-weight: 600;
}
.scope-features li i {
    font-size: 0.75rem;
    flex-shrink: 0;
    background: rgba(42,110,242,0.12);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scope-all    .scope-features li i { background: rgba(16,185,129,0.12); color: #10b981; }
.scope-remote .scope-features li i { background: rgba(42,110,242,0.12); color: var(--arcadian-blue); }
.scope-local  .scope-features li i { background: rgba(245,158,11,0.12);  color: #d97706; }
.scope-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition:
        gap   0.22s ease,
        color 0.22s ease;
}
.scope-card:hover .scope-link {
    gap: 13px;
}
.scope-all    .scope-link { color: #10b981; }
.scope-remote .scope-link { color: var(--arcadian-blue); }
.scope-local  .scope-link { color: #d97706; }
/* =============================================
   PROCESO LOGÍSTICO — TIMELINE
   ============================================= */
.logistics-process {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.timeline-wrapper {
    position: relative;
    margin-top: 60px;
}
.timeline-track {
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
    z-index: 0;
}
.timeline-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--arcadian-blue), #60a5fa);
    border-radius: 99px;
    transition: width 1.6s cubic-bezier(0.33,1,0.68,1);
}
.timeline-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.timeline-step {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.5s cubic-bezier(0.33,1,0.68,1),
        transform 0.5s cubic-bezier(0.33,1,0.68,1);
}
.timeline-step.ts-active {
    opacity: 1;
    transform: translateY(0);
}
.ts-bubble {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #94a3b8;
    margin-bottom: 24px;
    transition:
        background    0.35s ease,
        border-color  0.35s ease,
        color         0.35s ease,
        transform     0.35s cubic-bezier(0.175,0.885,0.32,1.275),
        box-shadow    0.35s ease;
    cursor: default;
    z-index: 2;
}
.ts-bubble .ts-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--arcadian-blue);
    color: #fff;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition:
        opacity   0.3s ease,
        transform 0.3s ease;
}
.timeline-step.ts-active .ts-bubble {
    background: rgba(42,110,242,0.08);
    border-color: var(--arcadian-blue);
    color: var(--arcadian-blue);
}
.timeline-step.ts-active .ts-bubble .ts-number {
    opacity: 1;
    transform: scale(1);
}
.timeline-step:hover .ts-bubble {
    background: var(--arcadian-blue);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 14px 32px rgba(42,110,242,0.35);
}
.ts-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 22px;
    text-align: center;
    width: 100%;
    transition:
        background  0.3s ease,
        box-shadow  0.3s ease,
        transform   0.3s ease;
}
.timeline-step:hover .ts-card {
    background: #fff;
    box-shadow: 0 12px 30px rgba(42,110,242,0.1);
    transform: translateY(-4px);
}
.ts-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(42,110,242,0.08);
    color: var(--arcadian-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.ts-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-title);
    margin-bottom: 10px;
}
.ts-card p {
    color: var(--text-p);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.ts-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}
.ts-tags span {
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    transition:
        background 0.25s ease,
        color     0.25s ease;
}
.timeline-step:hover .ts-tags span {
    background: rgba(42,110,242,0.1);
    color: var(--arcadian-blue);
}
/* =============================================
   VENTAJAS COMPETITIVAS
   ============================================= */
.advantages-section {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
    margin-top: 50px;
}
.advantage-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8edf5;
    border-top: 3px solid var(--arcadian-blue);
    border-radius: 18px;
    padding: 32px 28px;
    overflow: hidden;
    transition:
        transform    0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow   0.32s ease,
        border-color 0.32s ease;
    will-change: transform;
    cursor: default;
}
.advantage-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 44px rgba(42,110,242,0.1);
    border-color: rgba(42,110,242,0.25);
}
.adv-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(42,110,242,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.advantage-card:hover .adv-bg-glow {
    opacity: 1;
}
.adv-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}
.advantage-icon {
    width: 56px;
    height: 56px;
    background: rgba(42,110,242,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--arcadian-blue);
    transition:
        background 0.22s ease,
        color      0.22s ease,
        transform  0.22s cubic-bezier(0.175,0.885,0.32,1.275);
}
.advantage-card:hover .advantage-icon {
    background: var(--arcadian-blue);
    color: #fff;
    transform: scale(1.08) rotate(-4deg);
}
.adv-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #94a3b8;
    transition:
        background     0.3s ease,
        border-color   0.3s ease,
        color          0.3s ease,
        transform      0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.advantage-card:hover .adv-arrow {
    background: var(--arcadian-blue);
    border-color: var(--arcadian-blue);
    color: #fff;
    transform: rotate(45deg) scale(1.1);
}
.advantage-card h4 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--text-title);
    margin-bottom: 10px;
}
.advantage-card p {
    color: var(--text-p);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
}
.adv-stat {
    display: inline-block;
    background: rgba(42,110,242,0.08);
    color: var(--arcadian-blue);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    transition:
        background 0.3s ease,
        color     0.3s ease;
}
.advantage-card:hover .adv-stat {
    background: var(--arcadian-blue);
    color: #fff;
}
/* =============================================
   NODOS LOGÍSTICOS
   ============================================= */
.nodes-section { background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.region-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.region-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #e2e8f0;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-p);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.region-tab:hover { border-color: var(--arcadian-blue); color: var(--arcadian-blue); }
.region-tab.active {
    background: var(--arcadian-blue);
    border-color: var(--arcadian-blue);
    color: #fff;
    box-shadow: 0 6px 22px rgba(42,110,242,0.3);
}
.region-tab i, .region-tab .tab-badge { position: relative; z-index: 1; }
.region-tab span:not(.tab-badge) { position: relative; z-index: 1; }
.tab-badge {
    background: rgba(255,255,255,0.25);
    color: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    line-height: 1.4;
}
.region-tab.active .tab-badge { background: rgba(255,255,255,0.25); color: #fff; }
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}
.region-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition:
        transform  0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow 0.32s ease;
    will-change: transform;
    cursor: default;
}
.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(42,110,242,0.13);
}
.region-card.tab-hidden  { display: none; }
.region-card.tab-visible { display: block; }
.region-card-header {
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.region-card-header::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    transition: opacity 0.3s ease;
}
.region-card:hover .region-card-header::after { opacity: 0.14; }
.rc-norte  { background: linear-gradient(120deg, #0f172a, #1e3a5f); }
.rc-centro { background: linear-gradient(120deg, #0f172a, #1a3a70); }
.rc-sur    { background: linear-gradient(120deg, #0f172a, #1a4060); }
.rc-header-content {
    display: flex; align-items: center; gap: 14px;
}
.rc-icon {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #f59e0b;
    flex-shrink: 0;
    transition:
        transform  0.35s ease,
        background 0.35s ease;
}
.region-card:hover .rc-icon {
    transform: scale(1.12) rotate(-5deg);
    background: rgba(245,158,11,0.2);
}
.region-card-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.region-count {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}
.rc-delivery-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.3);
    color: #fbbf24;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.cities-list {
    list-style: none;
    padding: 16px 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cities-list li {
    display: grid;
    grid-template-columns: 14px 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    transition:
        background  0.2s ease,
        transform   0.2s ease;
    cursor: default;
}
.cities-list li:hover {
    background: #f8fafc;
    transform: translateX(4px);
}
.city-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--arcadian-blue);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.city-dot-gold { background: #f59e0b; }
.cities-list li:hover .city-dot { transform: scale(1.5); }
.city-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-title);
}
.city-state {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
    text-align: right;
}
.city-eta {
    font-size: 0.76rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.08);
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color     0.2s ease;
}
.cities-list li:hover .city-eta {
    background: rgba(16,185,129,0.15);
}
.region-coverage {
    display: flex; align-items: flex-start; gap: 10px;
    background: rgba(42,110,242,0.04);
    border-top: 1px solid #e2e8f0;
    padding: 14px 24px;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.55;
}
.region-coverage i { color: var(--arcadian-blue); margin-top: 2px; flex-shrink: 0; }
/* =============================================
   PREGUNTAS FRECUENTES
   ============================================= */
.faq-section {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 70px;
    align-items: start;
}
.faq-sidebar {
    position: sticky;
    top: 100px;
}
.faq-sidebar .section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    text-align: left;
}
.faq-sidebar-desc {
    color: var(--text-p);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.faq-contact-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #22c55e;
    color: #fff;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform  0.25s cubic-bezier(0.33,1,0.68,1),
        box-shadow 0.3s ease;
}
.faq-contact-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(34,197,94,0.4);
}
.faq-contact-btn i { font-size: 1.2rem; }
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow   0.3s ease,
        transform    0.3s ease;
}
.faq-item:hover {
    border-color: rgba(42,110,242,0.2);
    transform: translateX(4px);
}
.faq-item.open {
    border-color: rgba(42,110,242,0.4);
    box-shadow: 0 6px 24px rgba(42,110,242,0.09);
}
.faq-question {
    width: 100%; background: none; border: none;
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-title);
    text-align: left;
    transition: color 0.25s ease;
}
.faq-item.open .faq-question { color: var(--arcadian-blue); }
.faq-icon-wrap {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    color: #94a3b8;
    transition:
        background    0.3s ease,
        border-color  0.3s ease,
        color         0.3s ease,
        transform     0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
.faq-item.open .faq-icon-wrap {
    background: var(--arcadian-blue);
    border-color: var(--arcadian-blue);
    color: #fff;
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
    padding: 4px 24px 22px;
    color: var(--text-p);
    font-size: 0.93rem;
    line-height: 1.72;
    margin: 0;
    border-top: 1px solid #f1f5f9;
}
/* =============================================
   CTA FINAL
   ============================================= */
.cta-cobertura {
    padding: 0 10% 100px;
    background: #fff;
}
.cta-inner {
    background: linear-gradient(135deg, #060d20 0%, #0e2672 55%, #1648c8 100%);
    border-radius: 24px;
    padding: 70px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
}
.cta-inner::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
    bottom: -100px; left: 50px;
    pointer-events: none;
}
.cta-text {
    flex: 1;
    min-width: 300px;
    position: relative; z-index: 1;
}
.cta-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: #f59e0b;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 14px;
}
.cta-text h2 {
    font-size: 2.5rem; font-weight: 800;
    color: #fff; margin-bottom: 16px; line-height: 1.18;
}
.cta-text > p {
    color: #cbd5e1;
    font-size: 1rem; line-height: 1.72; margin-bottom: 26px;
}
.cta-checklist {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 11px;
}
.cta-checklist li {
    display: flex; align-items: center; gap: 10px;
    color: #94a3b8; font-size: 0.92rem; font-weight: 500;
}
.cta-checklist li i { color: #10b981; font-size: 0.82rem; flex-shrink: 0; }
.cta-actions {
    display: flex; flex-direction: column; gap: 12px;
    align-items: stretch; min-width: 260px; flex-shrink: 0;
    position: relative; z-index: 1;
}
.btn-whatsapp {
    display: flex; align-items: center; gap: 14px;
    background: #22c55e;
    color: #fff; padding: 16px 22px;
    border-radius: 10px;
    text-decoration: none; font-weight: 700;
    border: none; cursor: pointer; font-family: inherit;
    transition:
        background  0.3s ease,
        transform   0.25s cubic-bezier(0.33,1,0.68,1),
        box-shadow  0.3s ease;
}
.btn-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(34,197,94,0.45);
}
.btn-whatsapp i { font-size: 1.9rem; flex-shrink: 0; }
.btn-whatsapp span { display: flex; flex-direction: column; line-height: 1.2; }
.btn-whatsapp small { font-size: 0.7rem; font-weight: 500; opacity: 0.8; }
.btn-cta-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 700; text-decoration: none; font-size: 0.93rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.22);
    font-family: inherit; cursor: pointer;
    transition:
        background     0.3s ease,
        border-color   0.3s ease,
        transform      0.25s cubic-bezier(0.33,1,0.68,1);
}
.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
    transform: translateY(-2px);
}
.btn-cta-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 700; text-decoration: none; font-size: 0.93rem;
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: 1.5px solid rgba(255,255,255,0.1);
    font-family: inherit; cursor: pointer;
    transition:
        color        0.3s ease,
        border-color 0.3s ease,
        transform    0.25s cubic-bezier(0.33,1,0.68,1);
}
.btn-cta-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}
.cta-contact-info {
    color: #64748b; font-size: 0.8rem;
    text-align: center; margin: 4px 0 0;
}
.cta-contact-info a {
    color: #94a3b8; font-weight: 700; text-decoration: none;
    transition: color 0.2s ease;
}
.cta-contact-info a:hover { color: #fff; }
/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .faq-layout { grid-template-columns: 280px 1fr; gap: 50px; }
}
@media (max-width: 1024px) {
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-sidebar { position: static; text-align: center; }
    .faq-sidebar .section-title { text-align: center; }
    .cta-inner { flex-direction: column; padding: 50px 40px; }
    .cta-actions { align-self: stretch; }
    .timeline-track { display: none; }
    .timeline-steps { flex-wrap: wrap; justify-content: center; }
    .timeline-step { min-width: 240px; max-width: 280px; }
}
@media (max-width: 768px) {
    .section-padding { padding: 70px 6%; }
    .section-title { font-size: 2rem; }
    .hero-cobertura { padding: 120px 6% 70px; min-height: 100svh; }
    .hero-content h1 { font-size: 2.7rem; }
    .hero-map-bg { opacity: 0.1; padding-right: 0; justify-content: center; }
    .hero-map-svg { width: 100%; }
    .metrics-cobertura { padding: 0 6%; margin-top: -40px; }
    .metrics-container { padding: 28px 20px; gap: 20px; }
    .metric-divider { display: none; }
    .metric-number { font-size: 2.4rem; }
    .scope-grid,
    .advantages-grid,
    .regions-grid { grid-template-columns: 1fr; }
    .region-tabs { gap: 8px; }
    .cta-cobertura { padding: 0 6% 70px; }
    .cta-inner { padding: 40px 24px; }
    .cta-text h2 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-scroll-hint { align-items: center; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.1rem; }
    .region-tab { padding: 9px 16px; font-size: 0.82rem; }
    .cta-text h2 { font-size: 1.75rem; }
    .metrics-container { padding: 24px 16px; }
    .metric-number { font-size: 2rem; }
}