/* ==========================================================
   MiEnvio Cargo Express — Website CSS
   ========================================================== */

:root {
    --orange:       #E8451E;
    --orange-dark:  #c63a18;
    --orange-light: #ff6b45;
    --navy:         #0D1B2E;
    --navy-dark:    #060e1a;
    --dark:         #1a1a2e;
    --white:        #ffffff;
    --light:        #f8fafc;
    --muted:        #6b7280;
    --border:       #e5e7eb;
    --green:        #10b981;
    --blue:         #2563eb;
    --purple:       #7c3aed;
    --gold:         #F5C842;
    --font:         'Inter', sans-serif;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow:       0 4px 20px rgba(0,0,0,.07);
    --shadow-lg:    0 8px 40px rgba(0,0,0,.12);
    --trans:        .3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: #1e293b;
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
.section-pad { padding: 90px 0; }
img { max-width: 100%; }

/* ==========================================================
   HEADER (topbar + navbar fijos juntos al hacer scroll)
   ========================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* ==========================================================
   TOP BAR
   ========================================================== */
.topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar a {
    color: rgba(255,255,255,.75);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--trans);
}
.topbar a:hover { color: var(--orange); }
.topbar-vr { height: 16px; background: rgba(255,255,255,.2); margin: 0 4px; }
.btn-topbar-track {
    background: var(--orange);
    color: #fff !important;
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background var(--trans);
}
.btn-topbar-track:hover { background: var(--orange-dark); color: #fff !important; }

/* ==========================================================
   NAVBAR
   ========================================================== */
#mainNav {
    background: rgba(13,27,46,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 14px 0;
    transition: all var(--trans);
}
#mainNav.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 30px rgba(0,0,0,.35);
    padding: 10px 0;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}
.navbar-logo-img {
    height: 46px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}
.footer-logo-img {
    height: 46px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}
.brand-logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--orange), #ff7849);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(232,69,30,.45);
    transition: transform var(--trans);
}
.navbar-brand:hover .brand-logo-icon { transform: rotate(-5deg) scale(1.05); }
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
}
.brand-sub {
    font-size: 8.5px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2.5px;
}

/* Nav links */
.navbar-nav .nav-link {
    color: rgba(255,255,255,.82) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all var(--trans);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,.1);
}
.nav-link-offers {
    animation: offer-blink 1.6s ease-in-out infinite;
}
.navbar-toggler.has-offers {
    position: relative;
}
.toggler-offer-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--orange);
    border: 2px solid var(--navy);
    animation: pulse-orange-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-orange-dot {
    0%, 100% { box-shadow: 0 0 0 0   rgba(232,69,30,.7); }
    50%       { box-shadow: 0 0 0 5px rgba(232,69,30,0); }
}
@keyframes offer-blink {
    0%, 100% {
        background: rgba(232,69,30,0);
        color: rgba(255,255,255,.82);
        box-shadow: 0 0 0 0 rgba(232,69,30,0);
    }
    50% {
        background: var(--orange);
        color: #fff;
        box-shadow: 0 4px 16px rgba(232,69,30,.6);
    }
}
.btn-nav-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    box-shadow: 0 4px 16px rgba(232,69,30,.35);
    transition: all var(--trans);
}
.btn-nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(232,69,30,.45);
    color: #fff !important;
}

/* ==========================================================
   HERO SLIDER
   ========================================================== */
.hero-section {
    height: 100vh;
    min-height: 620px;
    position: relative;
}
.hero-swiper { height: 100%; }
.swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Slide backgrounds */
.slide-1 { background: linear-gradient(135deg, #0d1b2e 0%, #1b3a6b 55%, #0f2e5a 100%); }
.slide-mexico { background: linear-gradient(135deg, #002d16 0%, #006140 50%, #7a0012 100%); }
.slide-3 { background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 55%, #2d5986 100%); }
.slide-4 { background: linear-gradient(135deg, #0f0f2d 0%, #1a1a4e 55%, #0f3460 100%); }

/* Dot pattern overlay */
.slide-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.35) 0%, rgba(0,0,0,.05) 100%);
}

/* Slide content */
.slide-content { position: relative; z-index: 2; }
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,.92);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.badge-yellow {
    background: rgba(245,200,66,.15);
    border-color: rgba(245,200,66,.4);
    color: var(--gold);
}
.slide-title {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.text-highlight      { color: var(--orange-light); }
.text-highlight-yellow { color: var(--gold); }
.slide-desc {
    font-size: 17px;
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 560px;
}
.slide-flags {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.slide-flags span {
    font-size: 32px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
    transition: transform var(--trans);
    cursor: default;
}
.slide-flags span:hover { transform: scale(1.2); }
.slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 25px rgba(232,69,30,.45);
    transition: all var(--trans);
    border: none;
}
.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(232,69,30,.55);
}
.btn-hero-outline {
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid rgba(255,255,255,.38);
    backdrop-filter: blur(6px);
    transition: all var(--trans);
}
.btn-hero-outline:hover {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.7);
}
.btn-hero-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 22px rgba(37,211,102,.4);
    transition: all var(--trans);
    border: none;
}
.btn-hero-whatsapp:hover {
    color: #fff;
    background: #1db954;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,.5);
}

/* Floating cards grid (slide 1) */
.hero-float-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 280px;
    position: relative;
    z-index: 2;
}
.float-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
    animation: floatCard 3.5s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.float-card i    { font-size: 26px; color: var(--orange-light); margin-bottom: 4px; }
.float-card span { font-size: 11px; opacity: .75; }
.float-card strong { font-size: 15px; font-weight: 700; }

@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* Promo badge (slide 2) */
.promo-badge-hero {
    width: 240px;
    height: 240px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-promo 2.5s ease-in-out infinite;
    box-shadow: 0 0 0 20px rgba(255,255,255,.05), 0 0 0 40px rgba(255,255,255,.03);
}
.promo-inner {
    text-align: center;
    color: #fff;
}
.promo-num  { display: block; font-size: 72px; font-weight: 900; line-height: 1; }
.promo-x    { display: block; font-size: 16px; font-weight: 600; opacity: .8; letter-spacing: 1px; }
.promo-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0,0,0,.3);
    margin-top: 4px;
}
.promo-sub  { display: block; font-size: 12px; opacity: .7; text-transform: uppercase; letter-spacing: 1.5px; }

@keyframes pulse-promo {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}

/* Swiper overrides */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transition: background var(--trans);
}
.swiper-button-next::after,
.swiper-button-prev::after { display: none; }
.swiper-button-next i,
.swiper-button-prev i { font-size: 20px; }
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--orange); }
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.45);
    opacity: 1;
    transition: all var(--trans);
}
.swiper-pagination-bullet-active {
    background: var(--orange);
    width: 28px;
    border-radius: 5px;
}

/* ==========================================================
   TRACKING BAR
   ========================================================== */
.track-bar-section {
    background: #fff;
    padding: 26px 0;
    box-shadow: 0 6px 30px rgba(0,0,0,.08);
    border-bottom: 3px solid var(--orange);
    position: relative;
    z-index: 10;
}
.track-bar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.track-bar-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    flex-shrink: 0;
}
.track-bar-label i { color: var(--orange); font-size: 20px; }
.track-bar-input { flex: 1; min-width: 220px; }
.track-bar-input .form-select {
    border-color: #e5e7eb;
    border-radius: 10px 0 0 10px;
    padding: 12px 14px;
    font-size: 14px;
    height: 48px;
    border-right: none;
    max-width: 190px;
    flex: 0 0 auto;
}
.track-bar-input .form-control {
    border-color: #e5e7eb;
    border-radius: 0;
    padding: 12px 18px;
    font-size: 14px;
    height: 48px;
    border-right: none;
}
.track-bar-input .form-control:focus,
.track-bar-input .form-select:focus {
    border-color: var(--orange);
    box-shadow: none;
}
.track-bar-couriers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.track-bar-courier-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: background var(--trans), border-color var(--trans);
}
.track-bar-courier-btn i { color: var(--orange); }
.track-bar-courier-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.track-bar-courier-btn:hover i { color: #fff; }
.btn-track-go {
    background: var(--orange);
    color: #fff;
    border-radius: 0 10px 10px 0;
    padding: 12px 22px;
    font-weight: 600;
    border: none;
    height: 48px;
    white-space: nowrap;
    transition: background var(--trans);
}
.btn-track-go:hover { background: var(--orange-dark); color: #fff; }
.btn-wa-bar {
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    height: 48px;
    transition: background var(--trans);
    white-space: nowrap;
}
.btn-wa-bar:hover { background: #1db954; color: #fff; }

/* ==========================================================
   SECTION COMMON STYLES
   ========================================================== */
.section-dark  { background: var(--navy); }
.section-light { background: var(--light); }

.sec-badge {
    display: inline-block;
    background: rgba(232,69,30,.1);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.badge-light {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
}
.sec-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.18;
    margin-bottom: 12px;
}
.sec-desc {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}
.section-head { margin-bottom: 10px; }

/* ==========================================================
   SERVICES
   ========================================================== */
.svc-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    height: 100%;
    transition: all var(--trans);
    cursor: default;
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}
.svc-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 20px;
    transition: transform var(--trans);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.icon-orange { background: linear-gradient(135deg, var(--orange), #ff7849); }
.icon-blue   { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.icon-green  { background: linear-gradient(135deg, #16a34a, #15803d); }
.icon-purple { background: linear-gradient(135deg, #7c3aed, #6d28d9); }

.svc-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}
.svc-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 18px;
}
.svc-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all var(--trans);
}
.svc-link:hover { color: var(--orange-dark); gap: 10px; }

/* ==========================================================
   DESTINATIONS
   ========================================================== */
.dest-card {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 26px 14px;
    text-align: center;
    transition: all var(--trans);
    cursor: default;
}
.dest-card:hover {
    background: rgba(232,69,30,.15);
    border-color: rgba(232,69,30,.45);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(232,69,30,.15);
}
.dest-flag  { font-size: 38px; margin-bottom: 8px; line-height: 1; }

/* ── México — tarjeta destacada ── */
.dest-card-mexico {
    background: linear-gradient(135deg, rgba(0,97,64,.3) 0%, rgba(0,40,20,.4) 100%);
    border: 2px solid rgba(0,180,100,.4);
    padding: 30px 18px 22px;
    position: relative;
    overflow: hidden;
}
.dest-card-mexico::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #006847, #fff 50%, #ce1126);
}
.dest-card-mexico:hover {
    background: linear-gradient(135deg, rgba(0,104,71,.45) 0%, rgba(206,17,38,.18) 100%);
    border-color: rgba(0,210,110,.6);
    transform: translateY(-8px);
    box-shadow: 0 14px 44px rgba(0,150,80,.28);
}
.dest-card-mexico .dest-flag  { font-size: 54px; }
.dest-card-mexico .dest-name  { font-size: 17px; margin-bottom: 8px; }
.dest-mx-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: linear-gradient(90deg, #006847, #ce1126);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
}
.dest-mx-feats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 10px 0 14px;
}
.dest-mx-feats span {
    font-size: 10px;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.dest-mx-feats .bi { color: #4ade80; font-size: 11px; }
.btn-mx-cta {
    background: linear-gradient(90deg, #006847, #008c5a);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    text-decoration: none;
    transition: all .25s;
}
.btn-mx-cta:hover {
    background: linear-gradient(90deg, #008c5a, #ce1126);
    transform: scale(1.06);
}
.dest-name  { color: #fff; font-weight: 600; font-size: 13px; margin-bottom: 7px; }
.dest-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16,185,129,.15);
    color: #10b981;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    border: 1px solid rgba(16,185,129,.25);
}
.btn-wa-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 25px rgba(37,211,102,.3);
    transition: all var(--trans);
}
.btn-wa-lg:hover { background: #1db954; color: #fff; transform: translateY(-3px); }

/* ==========================================================
   ABOUT / STATS
   ========================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.stat-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}
.stat-box.highlight {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-color: transparent;
    box-shadow: 0 6px 25px rgba(232,69,30,.3);
}
.stat-num {
    display: block;
    font-size: 44px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.stat-box.highlight .stat-num { color: #fff; }
.stat-unit {
    font-size: 26px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}
.stat-box.highlight .stat-unit { color: rgba(255,255,255,.9); }
.stat-lbl {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 8px;
    line-height: 1.4;
}
.stat-box.highlight .stat-lbl { color: rgba(255,255,255,.75); }

.about-lead {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 4px;
}

/* MVV Tabs */
.mvv-tabs { gap: 8px; border: none; }
.mvv-tabs .nav-link {
    background: var(--light);
    color: #1e293b;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border: 2px solid transparent;
    transition: all var(--trans);
}
.mvv-tabs .nav-link:hover:not(.active) { border-color: var(--orange); color: var(--orange); }
.mvv-tabs .nav-link.active {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(232,69,30,.35);
}
.mvv-content .tab-pane {
    padding: 28px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
}
.mvv-content .tab-pane p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 15px;
    margin: 0;
}
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.6;
}
.values-list li i { color: var(--green); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.step-card {
    text-align: center;
    padding: 40px 24px 32px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    position: relative;
    transition: all var(--trans);
}
.step-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}
.step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(232,69,30,.4);
    border: 3px solid #fff;
}
.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin: 10px auto 18px;
    box-shadow: 0 4px 16px rgba(232,69,30,.3);
}
.step-card h5 { font-weight: 700; font-size: 16px; margin-bottom: 10px; color: #1e293b; }
.step-card p  { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 0; }

/* ==========================================================
   OFFERS
   ========================================================== */
.offer-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px 30px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--trans);
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.offer-featured {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(232,69,30,.04) 0%, #fff 100%);
}
.offer-featured:hover { box-shadow: 0 12px 45px rgba(232,69,30,.2); }
.offer-top-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    padding: 6px 22px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(232,69,30,.4);
}
.offer-icon {
    width: 62px;
    height: 62px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 18px;
}
.offer-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}
.offer-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
.offer-price-box {
    background: #fff8f5;
    border: 1.5px solid rgba(232,69,30,.18);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
    text-align: center;
}
.offer-amount { font-size: 32px; font-weight: 900; color: var(--orange); }
.offer-unit   { font-size: 13px; color: var(--muted); }
.offer-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    flex: 1;
}
.offer-feats li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 9px;
}
.offer-feats i { color: var(--green); font-size: 15px; flex-shrink: 0; }

.btn-offer-wa,
.btn-offer-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all var(--trans);
}
.btn-offer-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-offer-wa:hover { background: #1db954; color: #fff; transform: translateY(-2px); }
.btn-offer-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,69,30,.3);
}
.btn-offer-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.cinfo-item   { display: flex; align-items: flex-start; gap: 16px; }
.cinfo-icon {
    width: 46px;
    height: 46px;
    background: rgba(232,69,30,.14);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}
.cinfo-lbl {
    display: block;
    font-size: 11.5px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.cinfo-val {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}
a.cinfo-val { transition: color var(--trans); }
a.cinfo-val:hover { color: var(--orange); }

/* Social buttons */
.social-row { display: flex; gap: 12px; }
.soc-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    transition: all var(--trans);
}
.soc-btn:hover { transform: translateY(-4px) scale(1.08); color: #fff; }
.soc-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.soc-fb { background: #1877F2; }
.soc-wa { background: #25D366; }

/* Contact form */
.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: 0 12px 50px rgba(0,0,0,.15);
}
.contact-form-card h4 {
    font-weight: 800;
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 4px;
}
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.contact-form-card .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    border-color: #e5e7eb;
    padding: 12px 16px;
    font-size: 14px;
    background: #fafafa;
    transition: border-color var(--trans), box-shadow var(--trans);
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,69,30,.1);
    background: #fff;
}
.btn-form-submit {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15.5px;
    border: none;
    box-shadow: 0 5px 20px rgba(232,69,30,.35);
    transition: all var(--trans);
}
.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,69,30,.45);
    color: #fff;
}
.btn-form-submit.sent {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 5px 20px rgba(22,163,74,.35);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: var(--navy-dark); }
.footer-body { padding: 74px 0 50px; }

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-about {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    line-height: 1.85;
    max-width: 320px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 16px;
    transition: all var(--trans);
}
.footer-socials a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px);
}
.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 11px; }
.footer-nav a {
    color: rgba(255,255,255,.45);
    font-size: 14px;
    transition: color var(--trans);
}
.footer-nav a:hover { color: var(--orange); }

.footer-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    margin-bottom: 11px;
}
.footer-info i { color: var(--orange); font-size: 15px; flex-shrink: 0; }
.footer-info a { color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-info a:hover { color: var(--orange); }
.footer-info span { color: rgba(255,255,255,.5); }

.btn-footer-track {
    display: inline-flex;
    align-items: center;
    background: rgba(232,69,30,.12);
    color: var(--orange);
    border: 1.5px solid rgba(232,69,30,.3);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all var(--trans);
}
.btn-footer-track:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
}
.footer-bottom p {
    color: rgba(255,255,255,.35);
    font-size: 13px;
    margin: 0;
}
.footer-bottom a {
    color: rgba(255,255,255,.35);
    font-size: 13px;
    transition: color var(--trans);
}
.footer-bottom a:hover { color: var(--orange); }
.footer-sep { margin: 0 8px; color: rgba(255,255,255,.2); }

/* ==========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 6px 30px rgba(37,211,102,.5);
    transition: all var(--trans);
    animation: waPulse 2.5s infinite;
}
.wa-float:hover {
    color: #fff;
    transform: scale(1.12);
    box-shadow: 0 10px 40px rgba(37,211,102,.65);
    animation: none;
}
.wa-tip {
    position: absolute;
    right: 74px;
    background: #1a1a2e;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--trans);
    box-shadow: var(--shadow);
}
.wa-tip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-right: none;
    border-left-color: #1a1a2e;
}
.wa-float:hover .wa-tip { opacity: 1; }

@keyframes waPulse {
    0%   { box-shadow: 0 6px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
    70%  { box-shadow: 0 6px 30px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 991px) {
    .hero-section   { height: 85vh; min-height: 540px; }
    .section-pad    { padding: 70px 0; }
    .slide-title    { font-size: 2.1rem; }
    .swiper-button-next,
    .swiper-button-prev { display: none; }
    .track-bar-inner { gap: 12px; }
    .track-bar-label { display: none; }
    .stats-grid     { gap: 14px; }
}

@media (max-width: 767px) {
    .hero-section   { height: 75vh; min-height: 480px; }
    .section-pad    { padding: 55px 0; }
    .slide-title    { font-size: 1.85rem; }
    .slide-desc     { font-size: 15px; }
    .btn-hero-primary,
    .btn-hero-outline,
    .btn-hero-whatsapp { padding: 12px 22px; font-size: 14px; }
    .contact-form-card { padding: 28px 22px; }
    .stat-num       { font-size: 36px; }
    .wa-float       { width: 56px; height: 56px; font-size: 26px; bottom: 20px; right: 20px; }
    .footer-body    { padding: 50px 0 36px; }
    .slide-flags span { font-size: 26px; }
    .track-bar-wa   { display: none; }
}

@media (max-width: 480px) {
    .slide-title  { font-size: 1.65rem; }
    .promo-badge-hero { width: 180px; height: 180px; }
    .promo-num    { font-size: 54px; }
    .promo-price  { font-size: 28px; }
    .stats-grid   { grid-template-columns: 1fr 1fr; }
}

/* ── Language switcher button ─────────────────────────────────────────────── */
.btn-lang-switch {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 4px 12px;
    transition: all .2s;
    white-space: nowrap;
}
.btn-lang-switch:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════
   TRUCK ANIMATION LANE
══════════════════════════════════════════════ */
.truck-lane {
    position: relative;
    overflow: hidden;
    height: 112px;
    background: #0b1525;
    border-top: 3px solid #e8921a;
    border-bottom: 3px solid #e8921a;
}

/* Road surface gradient */
.truck-lane::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0f1e32 0%, #0a1420 60%, #0b1525 100%);
}

/* Road edge line */
.truck-lane::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

/* Animated center dashes */
.truck-road-dashes {
    position: absolute;
    top: 50%;
    left: 0;
    width: 300%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.28) 0px,
        rgba(255,255,255,0.28) 48px,
        transparent 48px,
        transparent 108px
    );
    animation: dashes-move 1.1s linear infinite;
}

@keyframes dashes-move {
    from { transform: translateY(-50%) translateX(0); }
    to   { transform: translateY(-50%) translateX(-108px); }
}

/* Truck wrapper — drives left to right */
.truck-mover {
    position: absolute;
    bottom: 12px;
    animation: truck-drive 13s linear infinite;
}

@keyframes truck-drive {
    from { left: -340px; }
    to   { left: 110%; }
}

/* ── Horario abierto/cerrado (topbar) ── */
.topbar-horario {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 2px 9px 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
}
.topbar-abierto {
    border: 1px solid rgba(74,222,128,.55);
    color: #4ade80;
    background: rgba(74,222,128,.08);
}
.topbar-cerrado {
    border: 1px solid rgba(248,113,113,.45);
    color: #f87171;
    background: rgba(248,113,113,.07);
}
.topbar-horario-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.topbar-abierto .topbar-horario-dot {
    background: #4ade80;
    animation: pulse-green 2s ease-in-out infinite;
}
.topbar-cerrado .topbar-horario-dot { background: #f87171; }

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0   rgba(74,222,128,.7); }
    50%       { box-shadow: 0 0 0 4px rgba(74,222,128,.0); }
}

/* Truck SVG */
.truck-svg {
    width: 310px;
    height: auto;
    filter: drop-shadow(0 5px 16px rgba(0,0,0,0.65));
}
