/* ==========================================================
   EL VIAJERO UY · Sistema de diseño
   Paleta extraída del logotipo (azul marino + verde campos)
   Mobile-first · CSS variables · sin frameworks
   ========================================================== */

/* ----------------------------------------------------------
   1 · Design tokens
   ---------------------------------------------------------- */
:root {
    /* Paleta de marca */
    --c-navy-900:   #0E2447;
    --c-navy-800:   #14305a;
    --c-navy:       #1B3E6F;   /* primario */
    --c-navy-soft:  #1D3461;
    --c-navy-mist:  #2c4e85;

    --c-green:      #3DAA35;   /* acento */
    --c-green-deep: #1D7A28;
    --c-green-bright:#5CC74F;
    --c-green-glow: rgba(61, 170, 53, 0.32);

    --c-sand:       #F4F9F4;
    --c-bone:       #FBFCFB;
    --c-mist:       #EBF1EA;
    --c-line:       #DFE8E0;

    --c-ink:        #0E1A30;
    --c-ink-soft:   #2D3B55;
    --c-ink-mute:   #5B6B85;
    --c-ink-faint:  #95A1B6;

    --c-white:      #FFFFFF;
    --c-success:    #1f8a3f;
    --c-danger:     #c43232;
    --c-warning:    #c98306;

    /* Gradientes firmados */
    --grad-hero:    radial-gradient(120% 90% at 15% 0%, #1f4781 0%, #14305a 45%, #0E2447 100%);
    --grad-deep:    linear-gradient(135deg, #0E2447 0%, #1B3E6F 100%);
    --grad-route:   linear-gradient(90deg, transparent 0%, var(--c-green) 25%, var(--c-green-bright) 50%, var(--c-green) 75%, transparent 100%);
    --grad-card:    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.06) 100%);
    --grad-glow:    radial-gradient(60% 60% at 50% 0%, rgba(92,199,79,.18) 0%, transparent 70%);

    /* Tipografía */
    --font-display: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-body:    'DM Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --fs-12: .75rem;
    --fs-14: .875rem;
    --fs-15: .9375rem;
    --fs-16: 1rem;
    --fs-18: 1.125rem;
    --fs-20: 1.25rem;
    --fs-24: 1.5rem;
    --fs-28: 1.75rem;
    --fs-32: 2rem;
    --fs-40: 2.5rem;
    --fs-48: clamp(2.25rem, 1.8rem + 2vw, 3rem);
    --fs-56: clamp(2.5rem, 2rem + 3vw, 3.5rem);
    --fs-hero: clamp(2.5rem, 1.9rem + 3.2vw, 4.25rem);

    /* Espaciados */
    --sp-1: .25rem;
    --sp-2: .5rem;
    --sp-3: .75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    /* Radios y sombras */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-pill: 999px;

    --sh-1: 0 1px 2px rgba(14,36,71,.06), 0 1px 1px rgba(14,36,71,.04);
    --sh-2: 0 4px 10px rgba(14,36,71,.06), 0 2px 4px rgba(14,36,71,.04);
    --sh-3: 0 16px 32px -8px rgba(14,36,71,.12), 0 4px 12px rgba(14,36,71,.06);
    --sh-4: 0 40px 60px -20px rgba(14,36,71,.18), 0 8px 24px rgba(14,36,71,.08);
    --sh-glow: 0 0 0 0 rgba(61,170,53,0), 0 22px 38px -10px rgba(61,170,53,.45);

    /* Layout */
    --container:    72rem;       /* 1152px */
    --container-narrow: 56rem;
    --container-wide:   80rem;
    --gutter:       clamp(1rem, .5rem + 2vw, 2rem);

    /* Curvas */
    --ease-out:     cubic-bezier(.16,.84,.34,1);
    --ease-spring:  cubic-bezier(.34,1.56,.64,1);
    --ease-soft:    cubic-bezier(.4,0,.2,1);
}

/* ----------------------------------------------------------
   2 · Reset moderno
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
body {
    font-family: var(--font-body);
    font-size: var(--fs-16);
    line-height: 1.55;
    color: var(--c-ink);
    background: var(--c-sand);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
img, picture, svg, video { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--c-navy); text-decoration: none; transition: color .15s var(--ease-out); }
a:hover { color: var(--c-green-deep); }
:focus-visible {
    outline: 3px solid var(--c-green);
    outline-offset: 3px;
    border-radius: 4px;
}
.skip-link {
    position: absolute; left: -1000px; top: 0;
    background: var(--c-navy); color: #fff; padding: .75rem 1rem; z-index: 9999;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ----------------------------------------------------------
   3 · Tipografía
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--c-navy);
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-48); }
h3 { font-size: var(--fs-32); letter-spacing: -.015em; }
h4 { font-size: var(--fs-24); letter-spacing: -.01em; }
h5 { font-size: var(--fs-20); letter-spacing: 0; }

.eyebrow {
    font-family: var(--font-display);
    font-size: var(--fs-12);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--c-green-deep);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.eyebrow::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--c-green);
    border-radius: 2px;
}
.lead {
    font-size: var(--fs-20);
    line-height: 1.55;
    color: var(--c-ink-soft);
}
.kicker {
    color: var(--c-green-deep);
    font-weight: 700;
}
strong { font-weight: 700; }

/* ----------------------------------------------------------
   4 · Layout
   ---------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: var(--container-wide); }

.section { padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section--dark {
    background: var(--grad-deep);
    color: rgba(255,255,255,.92);
    position: relative;
    overflow: hidden;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,.78); }
.section--dark .eyebrow { color: var(--c-green-bright); }
.section--dark .eyebrow::before { background: var(--c-green-bright); }
.section--mist { background: var(--c-mist); }
.section--bone { background: var(--c-bone); }

.section-head {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto var(--sp-12);
}
.section-head .eyebrow { margin-bottom: var(--sp-4); }
.section-head h2 { margin-bottom: var(--sp-4); }

main { flex: 1; }

/* ----------------------------------------------------------
   5 · Botones
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .85rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-15);
    letter-spacing: -.005em;
    line-height: 1;
    border-radius: var(--r-pill);
    transition: transform .25s var(--ease-spring), box-shadow .3s var(--ease-out), background .2s, color .2s;
    text-align: center;
    white-space: nowrap;
    will-change: transform;
    position: relative;
    isolation: isolate;
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 18px; height: 18px; }

.btn--primary {
    background: var(--c-green);
    color: #fff;
    box-shadow: 0 12px 24px -8px rgba(61,170,53,.55);
}
.btn--primary:hover {
    background: var(--c-green-deep);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 18px 32px -10px rgba(61,170,53,.6);
}
.btn--secondary {
    background: var(--c-navy);
    color: #fff;
    box-shadow: 0 12px 24px -8px rgba(27,62,111,.5);
}
.btn--secondary:hover {
    background: var(--c-navy-soft);
    transform: translateY(-2px);
    color: #fff;
}
.btn--ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.16);
    color: #fff;
    border-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--c-navy);
    border: 1.5px solid var(--c-navy);
}
.btn--outline:hover {
    background: var(--c-navy);
    color: #fff;
    transform: translateY(-2px);
}
.btn--wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 12px 24px -8px rgba(37,211,102,.55);
}
.btn--wa:hover {
    background: #1ebd58;
    color: #fff;
    transform: translateY(-2px);
}
.btn--lg { padding: 1.05rem 1.85rem; font-size: var(--fs-16); }
.btn--sm { padding: .55rem 1rem;    font-size: var(--fs-14); }
.btn--block { width: 100%; }

/* "Magnetic" sutil */
.btn--magnetic { transition: transform .35s var(--ease-spring); }

/* Botón con flecha animada */
.btn .arrow {
    width: 16px; height: 16px;
    transition: transform .25s var(--ease-spring);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ----------------------------------------------------------
   6 · Header / nav
   ---------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: saturate(140%) blur(14px);
    background: rgba(255,255,255,.85);
    border-bottom: 1px solid transparent;
    transition: background .2s var(--ease-out), border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.site-header.is-scrolled {
    background: rgba(255,255,255,.96);
    border-color: var(--c-line);
    box-shadow: var(--sh-2);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    gap: var(--sp-6);
}
.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--c-navy);
    letter-spacing: -.01em;
    font-size: var(--fs-18);
}
.nav__brand {
    flex-shrink: 0;
}
.nav__brand svg,
.nav__brand img {
    width: clamp(168px, 20vw, 238px);
    height: auto;
    max-height: 88px;
    object-fit: contain;
}
.nav__brand small {
    display: block;
    font-size: .65rem;
    color: var(--c-green-deep);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 2px;
}
.nav__menu {
    display: none;
    align-items: center;
    gap: var(--sp-2);
    list-style: none;
    padding: 0;
}
.nav__menu a {
    display: inline-flex;
    align-items: center;
    padding: .55rem .9rem;
    font-weight: 500;
    color: var(--c-ink-soft);
    border-radius: var(--r-sm);
    font-size: var(--fs-15);
    white-space: nowrap;
    transition: color .15s var(--ease-out), background .15s var(--ease-out);
    position: relative;
}
.nav__menu a:hover,
.nav__menu a.is-active {
    color: var(--c-navy);
    background: var(--c-mist);
}
.nav__menu a.is-active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 24px; height: 3px;
    background: var(--c-green);
    border-radius: 3px;
}

/* Dropdown servicios */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger::after {
    content: '';
    width: 8px; height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: .4rem;
    transition: transform .2s;
    display: inline-block;
}
.nav__dropdown:hover .nav__dropdown-trigger::after,
.nav__dropdown.is-open .nav__dropdown-trigger::after {
    transform: rotate(-135deg) translateY(0);
}
.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #fff;
    box-shadow: var(--sh-4);
    border-radius: var(--r-lg);
    padding: var(--sp-4);
    min-width: 320px;
    list-style: none;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s var(--ease-out), transform .25s var(--ease-out);
    border: 1px solid var(--c-line);
}
/* Puente invisible: cubre el hueco entre el trigger y el menú para que el hover no se pierda */
.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: -10px;
    height: 10px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: .75rem;
    align-items: center;
    padding: .65rem .75rem;
    border-radius: var(--r-sm);
    color: var(--c-ink);
    background: transparent;
}
.nav__dropdown-menu a:hover { background: var(--c-mist); }
.nav__dropdown-menu .item-icon {
    width: 36px; height: 36px;
    background: var(--c-mist);
    color: var(--c-green-deep);
    border-radius: 10px;
    display: grid; place-items: center;
}
.nav__dropdown-menu .item-icon svg { width: 18px; height: 18px; }
.nav__dropdown-menu .item-body { display: flex; flex-direction: column; }
.nav__dropdown-menu .item-title { font-weight: 600; font-size: var(--fs-15); line-height: 1.2; }
.nav__dropdown-menu .item-desc  { font-size: var(--fs-12); color: var(--c-ink-mute); margin-top: 2px; }

.nav__actions { display: none; gap: var(--sp-3); align-items: center; }
.nav__phone { display: none; align-items: center; gap: .5rem; color: var(--c-navy); font-weight: 600; font-size: var(--fs-14); white-space: nowrap; }
.nav__phone .icon { width: 20px; height: 20px; color: var(--c-green-deep); }

.nav__burger {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: var(--r-sm);
    color: var(--c-navy);
}
.nav__burger span {
    display: block;
    width: 22px; height: 2px;
    background: currentColor;
    position: relative;
    transition: transform .3s var(--ease-out), opacity .2s;
}
.nav__burger span::before,
.nav__burger span::after {
    content: '';
    position: absolute; left: 0;
    width: 22px; height: 2px;
    background: currentColor;
    transition: transform .3s var(--ease-out);
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after  { top:  7px; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 980px) {
    .nav__menu    { display: flex; }
    .nav__actions { display: inline-flex; }
    .nav__burger  { display: none; }
}
@media (min-width: 1180px) {
    .nav__phone { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 96px 0 0 0;
    background: #fff;
    z-index: 90;
    padding: var(--sp-6) var(--gutter) var(--sp-12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .25s var(--ease-out);
    overflow-y: auto;
}
.mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu > ul > li > a,
.mobile-menu > ul > li > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--c-line);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-20);
    color: var(--c-navy);
}
.mobile-menu .submenu {
    margin-top: .5rem;
    padding-left: 0;
    display: grid;
    gap: .25rem;
}
.mobile-menu .submenu a {
    display: flex; align-items: center; gap: .65rem;
    padding: .65rem .25rem;
    color: var(--c-ink-soft);
    border-bottom: 1px solid transparent;
    font-size: var(--fs-15);
}
.mobile-menu .submenu a:hover { color: var(--c-navy); }
.mobile-menu .submenu .item-icon {
    width: 30px; height: 30px;
    background: var(--c-mist);
    color: var(--c-green-deep);
    border-radius: 8px;
    display: grid; place-items: center;
}
.mobile-menu .submenu .item-icon svg { width: 16px; height: 16px; }
.mobile-menu__cta { margin-top: var(--sp-6); display: grid; gap: .75rem; }
@media (min-width: 980px) {
    .mobile-menu { display: none; }
}

/* ----------------------------------------------------------
   7 · WhatsApp flotante
   ---------------------------------------------------------- */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 95;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1.2rem .8rem .8rem;
    background: #25D366;
    color: #fff;
    border-radius: var(--r-pill);
    box-shadow: 0 16px 32px -8px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.12);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-14);
    transition: transform .25s var(--ease-spring), box-shadow .2s;
}
.wa-float:hover {
    transform: translateY(-3px) scale(1.02);
    color: #fff;
    box-shadow: 0 22px 40px -8px rgba(37,211,102,.6), 0 6px 14px rgba(0,0,0,.15);
}
.wa-float .wa-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: grid; place-items: center;
    position: relative;
}
.wa-float .wa-icon svg { width: 22px; height: 22px; }
.wa-float .wa-icon::before {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
    0%   { transform: scale(.7); opacity: .8; }
    100% { transform: scale(1.6); opacity: 0; }
}
.wa-float .wa-label { display: none; }
@media (min-width: 768px) {
    .wa-float .wa-label { display: inline; }
}

/* ----------------------------------------------------------
   8 · Hero
   ---------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
    color: #fff;
    padding-top: clamp(3rem, 2rem + 4vw, 5rem);
    padding-bottom: clamp(3.5rem, 2.5rem + 5vw, 6rem);
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--grad-glow);
    pointer-events: none;
}
.hero__bg {
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: .55;
}
.hero__bg svg { width: 100%; height: 100%; }
.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;
}
@media (min-width: 980px) {
    .hero__grid {
        grid-template-columns: 1.1fr .9fr;
        gap: var(--sp-16);
    }
}
.hero__content { position: relative; z-index: 2; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .4rem .85rem .4rem .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--r-pill);
    font-size: var(--fs-12);
    color: rgba(255,255,255,.92);
    letter-spacing: .05em;
    font-weight: 500;
    margin-bottom: var(--sp-5);
    backdrop-filter: blur(8px);
}
.hero__badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--c-green-bright);
    box-shadow: 0 0 0 4px rgba(92,199,79,.25);
    animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(92,199,79,.25); }
    50%      { box-shadow: 0 0 0 8px rgba(92,199,79,.05); }
}
.hero h1 {
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--sp-5);
}
.hero h1 .word {
    display: inline-block;
    background: linear-gradient(120deg, #fff 0%, #fff 40%, var(--c-green-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__sub {
    font-size: var(--fs-20);
    color: rgba(255,255,255,.82);
    max-width: 36rem;
    margin-bottom: var(--sp-8);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-bottom: var(--sp-8);
}
.hero__strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5) var(--sp-6);
    padding-top: var(--sp-6);
    border-top: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 640px) {
    .hero__strip { grid-template-columns: repeat(4, 1fr); }
}
.hero__strip-item {
    display: flex; flex-direction: column;
    gap: .15rem;
}
.hero__strip-item .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-24);
    color: #fff;
    line-height: 1;
}
.hero__strip-item .lbl {
    font-size: var(--fs-12);
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.hero__visual {
    position: relative;
    z-index: 1;
}
.hero__visual svg { width: 100%; height: auto; }

/* ----------------------------------------------------------
   9 · Service cards
   ---------------------------------------------------------- */
.services-grid {
    display: grid;
    gap: var(--sp-5);
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
    --accent: var(--c-green);
    --accent-deep: var(--c-green-deep);
    position: relative;
    background: #fff;
    border-radius: var(--r-lg);
    padding: var(--sp-6) var(--sp-6) var(--sp-8);
    overflow: hidden;
    box-shadow: var(--sh-2);
    border: 1px solid var(--c-line);
    transition: transform .35s var(--ease-spring), box-shadow .3s, border-color .3s;
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    isolation: isolate;
}
.service-card[data-accent="blue"] {
    --accent: var(--c-navy);
    --accent-deep: var(--c-navy-soft);
}
.service-card[data-accent="dark"] {
    --accent: var(--c-navy-soft);
    --accent-deep: var(--c-navy-900);
}
.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
    opacity: 0;
    transition: opacity .3s var(--ease-out);
    z-index: -1;
}
.service-card::after {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transition: opacity .3s;
    filter: blur(60px);
    z-index: -1;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-4);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: .35; }
.service-card:hover h3,
.service-card:hover .service-card__desc,
.service-card:hover .service-card__more {
    color: #fff;
}
.service-card:hover .service-card__icon {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.service-card__icon {
    width: 52px; height: 52px;
    background: var(--c-mist);
    color: var(--accent-deep);
    border-radius: 14px;
    display: grid; place-items: center;
    transition: background .25s, color .25s;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 {
    font-size: var(--fs-20);
    transition: color .25s;
}
.service-card__desc {
    color: var(--c-ink-mute);
    font-size: var(--fs-15);
    transition: color .25s;
    flex: 1;
}
.service-card__more {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--accent-deep);
    font-weight: 600;
    font-size: var(--fs-14);
    transition: color .25s, gap .25s;
}
.service-card__more svg { width: 14px; height: 14px; transition: transform .25s; }
.service-card:hover .service-card__more svg { transform: translateX(4px); }
.service-card__audience {
    position: absolute;
    top: var(--sp-5); right: var(--sp-5);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--c-ink-faint);
    transition: color .25s;
}
.service-card:hover .service-card__audience { color: rgba(255,255,255,.7); }

/* ----------------------------------------------------------
   10 · Métricas (counters)
   ---------------------------------------------------------- */
.metrics {
    display: grid;
    gap: var(--sp-5);
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 880px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    text-align: center;
    transition: transform .3s var(--ease-out), border-color .3s, background .3s;
}
.metric:hover {
    transform: translateY(-4px);
    border-color: rgba(92,199,79,.35);
    background: rgba(92,199,79,.06);
}
.metric__num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 1.8rem + 3vw, 3.75rem);
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, var(--c-green-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -.03em;
}
.metric__num .unit {
    font-size: .55em;
    margin-left: 2px;
    -webkit-text-fill-color: var(--c-green-bright);
}
.metric__lbl {
    margin-top: var(--sp-3);
    font-size: var(--fs-14);
    color: rgba(255,255,255,.72);
    letter-spacing: .04em;
}

/* ----------------------------------------------------------
   11 · Timeline (Nosotros / Home)
   ---------------------------------------------------------- */
.timeline {
    position: relative;
    display: grid;
    gap: var(--sp-8);
    padding-block: var(--sp-8);
}
@media (min-width: 880px) {
    .timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--sp-5);
    }
}
.timeline::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 16px; bottom: 16px;
    width: 2px;
    background: var(--grad-route);
    border-radius: 2px;
}
@media (min-width: 880px) {
    .timeline::before {
        left: 0; right: 0;
        top: 84px;   /* padding-block(32) + dot-top(42) + dot-radius(11) - line-half(1) */
        height: 2px; width: auto;
    }
}
.tl-item {
    position: relative;
    padding-left: 64px;
}
@media (min-width: 880px) { .tl-item { padding-left: 0; } }
.tl-item__dot {
    position: absolute;
    left: 16px; top: 8px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--c-green);
    box-shadow: 0 0 0 6px rgba(92,199,79,.18);
}
@media (min-width: 880px) {
    .tl-item__dot { left: calc(50% - 11px); top: 42px; }
    .tl-item { text-align: center; padding-top: 88px; }
}
.tl-item__year {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--c-green-deep);
    letter-spacing: -.02em;
    font-size: var(--fs-24);
    margin-bottom: var(--sp-2);
}
.tl-item__title { color: var(--c-navy); font-weight: 700; margin-bottom: var(--sp-2); }
.tl-item__text  { font-size: var(--fs-14); color: var(--c-ink-mute); }

/* ----------------------------------------------------------
   12 · Valores (chips)
   ---------------------------------------------------------- */
.values {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 880px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    transition: transform .3s var(--ease-out), border-color .25s, box-shadow .25s;
}
.value:hover {
    transform: translateY(-4px);
    border-color: var(--c-green-bright);
    box-shadow: var(--sh-3);
}
.value__icon {
    width: 44px; height: 44px;
    background: var(--c-mist);
    color: var(--c-green-deep);
    border-radius: 12px;
    display: grid; place-items: center;
}
.value__icon svg { width: 22px; height: 22px; }
.value__title { font-weight: 700; color: var(--c-navy); font-size: var(--fs-16); }
.value__text  { font-size: var(--fs-14); color: var(--c-ink-mute); }

/* ----------------------------------------------------------
   13 · Testimonios
   ---------------------------------------------------------- */
.testimonials {
    position: relative;
}
.tt-track {
    display: flex;
    gap: var(--sp-5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: var(--sp-2) 4px var(--sp-6);
    margin: 0 calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scrollbar-width: none;
}
.tt-track::-webkit-scrollbar { display: none; }
.tt-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-2);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}
@media (min-width: 720px) { .tt-card { flex-basis: 46%; } }
@media (min-width: 1080px) { .tt-card { flex-basis: 31.5%; } }
.tt-stars { display: inline-flex; gap: 2px; color: #f5a623; }
.tt-stars svg { width: 18px; height: 18px; }
.tt-quote {
    font-size: var(--fs-16);
    color: var(--c-ink-soft);
    line-height: 1.55;
    flex: 1;
}
.tt-quote::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--c-green);
    line-height: 0;
    margin-right: 4px;
    vertical-align: -1rem;
}
.tt-author { display: flex; align-items: center; gap: var(--sp-3); }
.tt-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--c-green), var(--c-green-deep));
    font-size: var(--fs-14);
}
.tt-avatar[data-seed="blue"] { background: linear-gradient(135deg, var(--c-navy-mist), var(--c-navy)); }
.tt-avatar[data-seed="dark"] { background: linear-gradient(135deg, var(--c-navy), var(--c-navy-900)); }
.tt-author__name  { font-weight: 700; color: var(--c-navy); font-size: var(--fs-15); }
.tt-author__role  { font-size: var(--fs-12); color: var(--c-ink-mute); }

.tt-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    margin-top: var(--sp-4);
}
.tt-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--c-line);
    color: var(--c-navy);
    transition: background .2s, transform .2s, border-color .2s;
    display: grid; place-items: center;
}
.tt-btn:hover {
    background: var(--c-navy);
    color: #fff;
    border-color: var(--c-navy);
    transform: scale(1.05);
}
.tt-btn svg { width: 18px; height: 18px; }
.tt-dots { display: inline-flex; gap: 6px; }
.tt-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-line);
    transition: width .2s, background .2s;
}
.tt-dot.is-active { width: 24px; background: var(--c-green); border-radius: 4px; }

/* ----------------------------------------------------------
   14 · CTA band
   ---------------------------------------------------------- */
.cta-band {
    position: relative;
    background: var(--grad-deep);
    color: #fff;
    border-radius: var(--r-xl);
    padding: var(--sp-10) var(--sp-8);
    overflow: hidden;
    isolation: isolate;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 90% 50%, rgba(61,170,53,.28) 0%, transparent 60%);
    z-index: -1;
}
.cta-band__grid {
    display: grid;
    gap: var(--sp-6);
    align-items: center;
}
@media (min-width: 880px) {
    .cta-band__grid { grid-template-columns: 1fr auto; }
}
.cta-band h2 { color: #fff; margin-bottom: var(--sp-2); }
.cta-band p { color: rgba(255,255,255,.78); max-width: 38rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ----------------------------------------------------------
   15 · Quick form (home cierre)
   ---------------------------------------------------------- */
.quickform {
    background: #fff;
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    box-shadow: var(--sh-4);
    border: 1px solid var(--c-line);
}
.quickform__grid {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .quickform__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------------------------------------------
   16 · Forms
   ---------------------------------------------------------- */
.form-grid {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.label {
    font-size: var(--fs-13);
    font-weight: 600;
    color: var(--c-navy);
    letter-spacing: .01em;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.label .req { color: var(--c-danger); font-weight: 700; }
.input, .textarea, .select {
    width: 100%;
    padding: .9rem 1rem;
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-md);
    background: #fff;
    font-family: inherit;
    font-size: var(--fs-15);
    color: var(--c-ink);
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.input:focus, .textarea:focus, .select:focus {
    outline: none;
    border-color: var(--c-green);
    box-shadow: 0 0 0 4px rgba(61,170,53,.16);
}
.input::placeholder, .textarea::placeholder { color: var(--c-ink-faint); }
.input.is-invalid, .textarea.is-invalid, .select.is-invalid {
    border-color: var(--c-danger);
    background: #fff5f5;
}
.input.is-valid, .textarea.is-valid, .select.is-valid {
    border-color: var(--c-success);
    background: #f4faf4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l4 4 6-6' stroke='%231f8a3f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 2.5rem;
}
.field-error {
    font-size: var(--fs-12);
    color: var(--c-danger);
    margin-top: 2px;
}
/* Spinner en botón de envío */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin .8s linear infinite; display: inline-block; }
.field-hint {
    font-size: var(--fs-12);
    color: var(--c-ink-mute);
}
.textarea { resize: vertical; min-height: 120px; }
.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Segmented (audience) */
.seg {
    display: inline-flex;
    background: var(--c-mist);
    border-radius: var(--r-pill);
    padding: 4px;
    gap: 2px;
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
    padding: .55rem 1.1rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-14);
    color: var(--c-ink-soft);
    cursor: pointer;
    font-weight: 500;
    transition: background .2s, color .2s, box-shadow .2s;
}
.seg input:checked + label {
    background: #fff;
    color: var(--c-navy);
    font-weight: 600;
    box-shadow: var(--sh-1);
}

/* Form success / error notice */
.notice {
    border-radius: var(--r-md);
    padding: var(--sp-4) var(--sp-5);
    display: flex;
    gap: var(--sp-3);
    align-items: flex-start;
    font-size: var(--fs-14);
}
.notice--ok    { background: #ecf8ec; border: 1px solid #b9e4b8; color: #1f6b25; }
.notice--err   { background: #fdecec; border: 1px solid #f3b8b8; color: #a52323; }

/* ----------------------------------------------------------
   17 · Page header (sub-páginas)
   ---------------------------------------------------------- */
.page-header {
    position: relative;
    background: var(--grad-deep);
    color: #fff;
    padding-block: clamp(3rem, 2rem + 4vw, 5rem);
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(50% 70% at 80% 100%, rgba(61,170,53,.22) 0%, transparent 60%);
}
.page-header__inner { position: relative; z-index: 2; }
.page-header h1 { color: #fff; margin-bottom: var(--sp-4); max-width: 36rem; }
.page-header .lead { color: rgba(255,255,255,.82); max-width: 40rem; }
.page-header .eyebrow { color: var(--c-green-bright); }
.page-header .eyebrow::before { background: var(--c-green-bright); }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    font-size: var(--fs-13);
    color: rgba(255,255,255,.65);
    margin-bottom: var(--sp-5);
    list-style: none;
    padding: 0;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: .35rem;
    color: rgba(255,255,255,.4);
}
.breadcrumb li[aria-current="page"] { color: #fff; }

/* ----------------------------------------------------------
   18 · Servicio detalle
   ---------------------------------------------------------- */
.svc-layout {
    display: grid;
    gap: var(--sp-10);
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .svc-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: var(--sp-12); }
}
.svc-body p { color: var(--c-ink-soft); margin-bottom: var(--sp-4); font-size: var(--fs-17, 1.06rem); line-height: 1.7; }
.svc-body p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--c-navy);
    float: left;
    line-height: .9;
    padding-right: 8px;
    padding-top: 4px;
}
.svc-section { margin-block: var(--sp-10); }
.svc-section h3 { margin-bottom: var(--sp-5); }

/* About — pull quote */
.about-pull {
    border-left: 4px solid var(--c-green);
    background: var(--c-mist);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: var(--sp-5) var(--sp-6);
    margin-block: var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.about-pull .icon { width: 24px; height: 24px; color: var(--c-green); }
.about-pull p {
    font-family: var(--font-display);
    font-size: var(--fs-24);
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0;
}
.about-pull cite {
    font-size: var(--fs-13);
    color: var(--c-ink-mute);
    font-style: normal;
}

/* About — stats strip */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
    margin-top: var(--sp-10);
}
@media (min-width: 640px) { .about-stats { grid-template-columns: repeat(4, 1fr); } }
.about-stat {
    background: var(--c-bone);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: var(--sp-5);
    text-align: center;
}
.about-stat__num {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-32);
    font-weight: 800;
    color: var(--c-navy);
    letter-spacing: -.03em;
    line-height: 1;
}
.about-stat__lbl {
    display: block;
    font-size: var(--fs-12);
    color: var(--c-ink-mute);
    margin-top: var(--sp-2);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.audience-tags {
    display: grid;
    gap: var(--sp-3);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.audience-tag {
    background: var(--c-bone);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: var(--sp-4);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-14);
    color: var(--c-ink-soft);
}
.audience-tag .icon {
    width: 28px; height: 28px;
    color: var(--c-green-deep);
}

.svc-sidebar {
    position: sticky;
    top: 92px;
    align-self: start;
}
.svc-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    box-shadow: var(--sh-2);
}
.svc-card h4 { margin-bottom: var(--sp-3); }
.svc-card p { color: var(--c-ink-mute); font-size: var(--fs-14); margin-bottom: var(--sp-4); }
.svc-card__list { list-style: none; padding: 0; display: grid; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.svc-card__list li {
    display: flex; align-items: center; gap: .5rem;
    font-size: var(--fs-14); color: var(--c-ink-soft);
}
.svc-card__list svg { width: 16px; height: 16px; color: var(--c-green); flex-shrink: 0; }
.svc-card__actions { display: grid; gap: var(--sp-3); }

/* ----------------------------------------------------------
   19 · FAQ accordion
   ---------------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item.is-open { border-color: var(--c-green); box-shadow: var(--sh-2); }
.faq-q {
    width: 100%;
    text-align: left;
    padding: var(--sp-5) var(--sp-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--c-navy);
    font-size: var(--fs-16);
}
.faq-q .toggle {
    width: 28px; height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--c-mist);
    color: var(--c-green-deep);
    display: grid; place-items: center;
    transition: transform .25s var(--ease-spring), background .2s;
    position: relative;
}
.faq-q .toggle::before,
.faq-q .toggle::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
}
.faq-q .toggle::before { width: 12px; height: 2px; }
.faq-q .toggle::after  { width: 2px;  height: 12px; transition: transform .25s; }
.faq-item.is-open .toggle { background: var(--c-green); color: #fff; }
.faq-item.is-open .toggle::after { transform: scaleY(0); }
.faq-a {
    padding: 0 var(--sp-6);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease-out), padding .25s;
    color: var(--c-ink-mute);
    font-size: var(--fs-15);
    line-height: 1.65;
}
.faq-item.is-open .faq-a {
    max-height: 800px;
    padding-bottom: var(--sp-6);
}

/* ----------------------------------------------------------
   20 · Fleet
   ---------------------------------------------------------- */
.fleet-filter {
    display: flex; flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-8);
    justify-content: center;
}
.fleet-filter button {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem 1.1rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-14);
    font-weight: 500;
    color: var(--c-ink-soft);
    background: #fff;
    border: 1px solid var(--c-line);
    transition: background .2s, color .2s, border-color .2s;
}
.fleet-filter button .icon { width: 14px; height: 14px; opacity: .7; }
.fleet-filter button:hover { color: var(--c-navy); border-color: var(--c-navy); }
.fleet-filter button.is-active {
    background: var(--c-navy);
    color: #fff;
    border-color: var(--c-navy);
}
.fleet-grid {
    display: grid;
    gap: var(--sp-6);
    grid-template-columns: 1fr;
}
@media (min-width: 720px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px){ .fleet-grid { grid-template-columns: repeat(3, 1fr); } }
.fleet-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh-2);
    transition: transform .3s var(--ease-out), box-shadow .3s;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.fleet-card[hidden] { display: none !important; }
.fleet-card__media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--c-mist), #fff);
    display: grid; place-items: center;
    position: relative;
    overflow: hidden;
}
.fleet-card__media svg { width: 78%; height: auto; }
.fleet-card__media .pill {
    position: absolute;
    top: 14px; left: 14px;
    background: #fff;
    color: var(--c-navy);
    font-size: var(--fs-12);
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: var(--r-pill);
    box-shadow: var(--sh-1);
}
.fleet-card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); }
.fleet-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-3); }
.fleet-card h3 { font-size: var(--fs-20); }
.fleet-card__cap {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--c-green-deep);
    font-size: var(--fs-16);
    white-space: nowrap;
}
.fleet-card__desc { color: var(--c-ink-mute); font-size: var(--fs-14); }
.fleet-card__equip { display: flex; flex-wrap: wrap; gap: 6px; }
.equip-pill {
    background: var(--c-mist);
    color: var(--c-ink-soft);
    border-radius: var(--r-sm);
    padding: 4px 10px;
    font-size: var(--fs-12);
    font-weight: 500;
}
.fleet-card__cta {
    margin-top: auto;
    padding-top: var(--sp-3);
    border-top: 1px solid var(--c-line);
    display: flex;
    gap: var(--sp-2);
}

/* ----------------------------------------------------------
   21 · Footer
   ---------------------------------------------------------- */
.site-footer {
    background: var(--c-navy-900);
    color: rgba(255,255,255,.72);
    padding-top: var(--sp-16);
    padding-bottom: var(--sp-8);
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--grad-route);
    opacity: .55;
}
.site-footer h5 { color: #fff; font-size: var(--fs-14); letter-spacing: .04em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer-grid {
    display: grid;
    gap: var(--sp-10);
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: var(--sp-8);
    }
}
.footer-brand .brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-20);
    margin-bottom: var(--sp-3);
}
.footer-brand .brand svg,
.footer-brand .brand img {
    width: min(280px, 100%);
    height: auto;
    object-fit: contain;
}
.footer-brand p { font-size: var(--fs-14); max-width: 24rem; margin-bottom: var(--sp-5); }
.footer-social { display: flex; gap: var(--sp-2); }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: grid; place-items: center;
    transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--c-green); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-list { list-style: none; padding: 0; display: grid; gap: var(--sp-3); }
.footer-list a { font-size: var(--fs-14); }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: .65rem;
    font-size: var(--fs-14);
    margin-bottom: var(--sp-3);
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--c-green-bright); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    margin-top: var(--sp-12);
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: space-between;
    font-size: var(--fs-13);
}
.footer-bottom a { color: rgba(255,255,255,.5); }

/* ----------------------------------------------------------
   22 · Reveal animations
   ---------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
    will-change: opacity, transform;
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }
.reveal--scale { transform: translateY(20px) scale(.97); }
.reveal--scale.is-in { transform: none; }
.reveal--left  { transform: translateX(-30px); }
.reveal--left.is-in { transform: none; }
.reveal--right { transform: translateX(30px); }
.reveal--right.is-in { transform: none; }

/* Hero floating */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
.float-y { animation: float 7s ease-in-out infinite; }

/* ----------------------------------------------------------
   23 · Helpers
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.stack-3 > * + * { margin-top: var(--sp-3); }
.stack-4 > * + * { margin-top: var(--sp-4); }
.stack-6 > * + * { margin-top: var(--sp-6); }
.gap-3 { gap: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: initial; } }
.hide-desktop { display: initial; }
@media (min-width: 768px) { .hide-desktop { display: none; } }
.icon { width: 20px; height: 20px; }

/* ==========================================================
   25 · CINÉTICO — hero inmersivo, mapa animado, parallax
   ========================================================== */

/* Barra de progreso de scroll */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: var(--grad-route);
    z-index: 200;
    transform-origin: left;
    transition: width .08s linear;
    pointer-events: none;
}

/* Hero inmersivo */
.hero {
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: min(90vh, 840px);
    background: var(--grad-hero);
}
.hero .container { width: 100%; position: relative; z-index: 2; }

.hero__layers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    will-change: transform;
}
.hero__blob--1 {
    width: 540px; height: 540px;
    top: -180px; right: -140px;
    background: radial-gradient(circle, rgba(61,170,53,.55), transparent 68%);
    animation: blob-drift 18s ease-in-out infinite;
}
.hero__blob--2 {
    width: 460px; height: 460px;
    bottom: -200px; left: -140px;
    background: radial-gradient(circle, rgba(60,110,190,.55), transparent 70%);
    animation: blob-drift 22s ease-in-out infinite reverse;
}
@keyframes blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(24px, -30px) scale(1.08); }
}
.hero__gridlines {
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(60% 60% at 60% 40%, #000 0%, transparent 75%);
            mask-image: radial-gradient(60% 60% at 60% 40%, #000 0%, transparent 75%);
    will-change: transform;
}
.hero__spark {
    position: absolute;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--c-green-bright);
    box-shadow: 0 0 14px 2px rgba(92,199,79,.7);
    will-change: transform;
}
.hero__spark--1 { top: 24%; left: 52%; animation: float 9s ease-in-out infinite; }
.hero__spark--2 { top: 62%; left: 38%; width: 5px; height: 5px; animation: float 11s ease-in-out infinite .8s; }
.hero__spark--3 { top: 40%; left: 84%; width: 9px; height: 9px; animation: float 13s ease-in-out infinite .4s; }

.hero__fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--c-bone));
    z-index: 1;
    pointer-events: none;
}

.hero__visual { will-change: transform; }

/* Mapa de Uruguay animado */
.uy-map {
    width: 100%;
    height: auto;
    max-width: 540px;
    margin-inline: auto;
    overflow: visible;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
}
.uy-shape { animation: float 12s ease-in-out infinite; }
.uy-route {
    /* --len lo fija main.js; aquí el estado inicial (oculto) */
    stroke-dasharray: var(--len, 1200);
    stroke-dashoffset: var(--len, 1200);
    filter: drop-shadow(0 0 6px rgba(92,199,79,.55));
}
.uy-route.is-drawn { stroke-dashoffset: 0; }
.uy-city text {
    fill: rgba(255,255,255,.9);
    paint-order: stroke;
    stroke: rgba(14,36,71,.55);
    stroke-width: 3px;
}
.uy-node { fill: #fff; }
.uy-node--hub { fill: var(--c-green-bright); }
.uy-pulse {
    fill: var(--c-green-bright);
    transform-box: fill-box;
    transform-origin: center;
    animation: uy-pulse 2.6s ease-out infinite;
}
.uy-city:nth-child(2) .uy-pulse { animation-delay: .5s; }
.uy-city:nth-child(3) .uy-pulse { animation-delay: 1s; }
.uy-city:nth-child(4) .uy-pulse { animation-delay: 1.5s; }
@keyframes uy-pulse {
    0%   { transform: scale(1);   opacity: .55; }
    100% { transform: scale(3.2); opacity: 0; }
}
.uy-vehicle {
    opacity: 0;
    transition: opacity .4s var(--ease-out);
}
.uy-vehicle.is-on { opacity: 1; }

/* Reveal cinético reforzado */
.reveal--up-lg { transform: translateY(48px); }
.reveal--up-lg.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
    .uy-route { stroke-dashoffset: 0; }
    .uy-vehicle { opacity: 1; }
    .hero__blob, .uy-shape, .hero__spark { animation: none; }
}

/* ----------------------------------------------------------
   26 · Print
   ---------------------------------------------------------- */
@media print {
    .site-header, .site-footer, .wa-float, .nav, .cta-band { display: none; }
    body { background: #fff; color: #000; }
}

/* ==========================================================
   27 · Dirección visual premium 2026
   Capa de refinamiento para una presencia más sobria y profesional
   ========================================================== */
:root {
    --c-navy-950: #071525;
    --c-steel: #476173;
    --c-aqua: #2f8f9d;
    --c-gold: #c7984a;
    --c-cream: #f7f5ef;
    --c-paper: #fffcf6;
    --c-line: #d9e2df;
    --c-ink: #111827;
    --c-ink-soft: #344256;
    --c-ink-mute: #677386;
    --fs-13: .8125rem;
    --fs-48: 2.625rem;
    --fs-56: 3.25rem;
    --fs-hero: 2.85rem;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 18px;
    --sh-2: 0 10px 30px rgba(7,21,37,.07);
    --sh-3: 0 22px 55px rgba(7,21,37,.10);
    --sh-4: 0 34px 80px rgba(7,21,37,.16);
    --grad-deep: linear-gradient(135deg, #071525 0%, #17324d 58%, #214f55 100%);
    --grad-hero: linear-gradient(135deg, #071525 0%, #13283f 54%, #1e4a50 100%);
}

@media (min-width: 720px) {
    :root {
        --fs-hero: 3.7rem;
        --fs-48: 3rem;
    }
}

@media (min-width: 1120px) {
    :root {
        --fs-hero: 4.35rem;
        --fs-48: 3.25rem;
    }
}

body {
    background:
        linear-gradient(180deg, rgba(247,245,239,.82), rgba(251,252,251,.96) 36rem),
        var(--c-bone);
}

h1, h2, h3, h4, h5,
.nav__brand,
.btn,
.eyebrow {
    letter-spacing: 0;
}

h1, h2, h3, h4, h5 {
    font-weight: 760;
}

h2 {
    line-height: 1.03;
}

.lead {
    color: var(--c-ink-mute);
}

.eyebrow {
    color: var(--c-aqua);
    font-weight: 800;
    text-transform: none;
}

.eyebrow::before {
    width: 18px;
    background: var(--c-gold);
}

.section {
    padding-block: 5rem;
}

@media (min-width: 920px) {
    .section {
        padding-block: 7rem;
    }
}

.section--bone {
    background: var(--c-paper);
}

.section--mist {
    background: #eef4f2;
}

.section--dark {
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
        var(--grad-deep);
}

.site-header {
    background: rgba(255,252,246,.82);
    border-bottom: 1px solid rgba(17,24,39,.08);
}

.site-header.is-scrolled {
    background: rgba(255,252,246,.94);
    box-shadow: 0 14px 40px rgba(7,21,37,.08);
}

.nav {
    height: 96px;
}

.nav__brand {
    color: var(--c-navy-950);
}

.nav__brand small {
    color: var(--c-steel);
    font-size: .68rem;
    font-weight: 700;
    text-transform: none;
}

.nav__menu a {
    color: #35455a;
    border-radius: 8px;
    font-weight: 650;
}

.nav__menu a:hover,
.nav__menu a.is-active {
    color: var(--c-navy-950);
    background: rgba(47,143,157,.08);
}

.nav__menu a.is-active::after {
    bottom: -12px;
    width: 18px;
    height: 2px;
    background: var(--c-gold);
}

.nav__dropdown-menu,
.mobile-menu {
    background: var(--c-paper);
    border-color: rgba(17,24,39,.10);
}

.btn {
    border-radius: 8px;
    font-weight: 780;
    min-height: 44px;
}

.btn--primary {
    background: #153f3f;
    box-shadow: 0 18px 32px -18px rgba(21,63,63,.65);
}

.btn--primary:hover {
    background: #0d2f30;
    box-shadow: 0 24px 42px -20px rgba(21,63,63,.78);
}

.btn--ghost {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.28);
}

.btn--outline {
    border-color: rgba(17,24,39,.18);
}

.hero {
    min-height: auto;
    padding-top: 4.25rem;
    padding-bottom: 4.75rem;
    background:
        linear-gradient(90deg, rgba(7,21,37,.98) 0%, rgba(7,21,37,.88) 42%, rgba(16,40,58,.60) 100%),
        var(--grad-hero);
}

.hero::before {
    background:
        linear-gradient(180deg, rgba(199,152,74,.16), transparent 46%),
        radial-gradient(70% 80% at 95% 20%, rgba(47,143,157,.32), transparent 62%);
}

.hero__blob,
.hero__gridlines,
.hero__spark,
.hero__fade {
    display: none;
}

.hero__grid {
    gap: 2.75rem;
}

@media (min-width: 980px) {
    .hero {
        min-height: calc(100vh - 96px);
        padding-top: 5rem;
        padding-bottom: 5.5rem;
    }

    .hero__grid {
        grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
        gap: 4.5rem;
    }
}

.hero__badge {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.20);
    border-radius: 999px;
    color: rgba(255,255,255,.86);
    font-weight: 700;
    letter-spacing: 0;
}

.hero__badge .dot {
    background: var(--c-gold);
    box-shadow: 0 0 0 4px rgba(199,152,74,.20);
    animation: none;
}

.hero h1 {
    max-width: 12ch;
    font-weight: 790;
    line-height: .98;
}

.hero h1 .word {
    background: linear-gradient(120deg, #fff 0%, #d7f5f1 58%, #d4b06d 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero__sub {
    color: rgba(255,255,255,.78);
    max-width: 39rem;
    font-size: 1.08rem;
}

@media (min-width: 720px) {
    .hero__sub {
        font-size: 1.2rem;
    }
}

.hero__strip {
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 14px;
    padding: 1rem;
    backdrop-filter: blur(14px);
}

.hero__strip-item {
    min-width: 0;
}

.hero__strip-item .num {
    color: #f8fafc;
}

.hero__strip-item .lbl {
    color: rgba(255,255,255,.62);
    letter-spacing: 0;
    text-transform: none;
}

.hero-media {
    position: relative;
    min-height: 360px;
    border-radius: 18px;
    overflow: visible;
    filter: drop-shadow(0 34px 60px rgba(0,0,0,.34));
}

.hero-media picture {
    display: block;
    height: 100%;
    min-height: inherit;
    border-radius: inherit;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.22);
    background: #0b1726;
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: 60% center;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, transparent 46%, rgba(7,21,37,.36));
    pointer-events: none;
}

.hero-media__panel,
.hero-media__seal {
    position: absolute;
    z-index: 2;
    background: rgba(255,252,246,.94);
    color: var(--c-navy-950);
    border: 1px solid rgba(255,255,255,.60);
    box-shadow: 0 22px 50px rgba(7,21,37,.22);
    backdrop-filter: blur(16px);
}

.hero-media__panel {
    left: 1rem;
    bottom: 1rem;
    display: grid;
    gap: .15rem;
    padding: .85rem 1rem;
    border-radius: 12px;
}

.hero-media__panel span {
    color: var(--c-steel);
    font-size: .78rem;
    font-weight: 800;
}

.hero-media__panel strong {
    font-size: 1rem;
}

.hero-media__seal {
    top: -1rem;
    right: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem .85rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
}

.hero-media__seal svg {
    width: 18px;
    height: 18px;
    color: var(--c-aqua);
}

.services-grid,
.values,
.fleet-grid,
.metrics {
    gap: 1rem;
}

.service-card,
.value,
.tt-card,
.quickform,
.svc-card,
.faq-item,
.fleet-card {
    border-radius: 12px;
    border-color: rgba(17,24,39,.10);
    box-shadow: 0 14px 38px rgba(7,21,37,.06);
}

.service-card {
    padding: 1.35rem;
    min-height: 280px;
    box-shadow: none;
}

.service-card::before {
    background: linear-gradient(160deg, #10283d 0%, #195056 100%);
}

.service-card::after {
    background: var(--c-gold);
    filter: blur(72px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(7,21,37,.16);
}

.service-card__icon,
.value__icon,
.nav__dropdown-menu .item-icon,
.mobile-menu .submenu .item-icon {
    border-radius: 10px;
    background: rgba(47,143,157,.10);
    color: #1f6e76;
}

.service-card__audience {
    color: var(--c-steel);
    letter-spacing: 0;
    text-transform: none;
}

.service-card__more {
    color: #176e76;
}

.metrics {
    align-items: stretch;
}

.metric {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.13);
    border-radius: 12px;
    text-align: left;
}

.metric__num {
    background: linear-gradient(180deg, #fff 0%, #d7b56e 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.metric__num .unit {
    -webkit-text-fill-color: #d7b56e;
}

.timeline::before {
    background: linear-gradient(90deg, transparent, var(--c-aqua), var(--c-gold), transparent);
}

.tl-item__dot {
    background: var(--c-gold);
    box-shadow: 0 0 0 7px rgba(199,152,74,.18);
}

.tl-item__year {
    color: #1e7480;
}

.cta-band {
    background:
        linear-gradient(135deg, rgba(255,255,255,.08), transparent 40%),
        var(--grad-deep);
    border-radius: 16px;
}

.cta-band::before {
    background: radial-gradient(60% 80% at 88% 44%, rgba(199,152,74,.22) 0%, transparent 62%);
}

.quickform {
    background: var(--c-paper);
}

.input, .textarea, .select {
    border-radius: 9px;
    background: #fffefa;
}

.input:focus, .textarea:focus, .select:focus {
    border-color: var(--c-aqua);
    box-shadow: 0 0 0 4px rgba(47,143,157,.14);
}

.page-header {
    background:
        linear-gradient(135deg, rgba(7,21,37,.98), rgba(27,62,111,.86)),
        var(--grad-deep);
}

.page-header::before {
    background:
        radial-gradient(48% 78% at 84% 28%, rgba(47,143,157,.26) 0%, transparent 64%),
        linear-gradient(180deg, rgba(199,152,74,.12), transparent);
}

.fleet-card__media {
    background:
        linear-gradient(135deg, rgba(47,143,157,.10), rgba(199,152,74,.10)),
        var(--c-paper);
}

.site-footer {
    background: #071525;
}

.site-footer::before {
    background: linear-gradient(90deg, transparent, var(--c-aqua), var(--c-gold), transparent);
}

.wa-float {
    border-radius: 10px;
    background: #1f9f62;
}

@media (max-width: 719px) {
    .hero {
        padding-top: 3rem;
    }

    .hero h1 {
        max-width: 11ch;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero-media {
        min-height: 300px;
        margin-top: .5rem;
    }

    .hero-media__seal {
        top: .85rem;
        right: .85rem;
    }

    .hero-media__panel {
        left: .85rem;
        right: .85rem;
    }

    .services-grid,
    .values {
        grid-template-columns: 1fr;
    }

    .section {
        padding-block: 4rem;
    }
}
