@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

/* ── VARIABLES ── */
:root {
  --azul-marino:  #0d1b2a;
  --azul-medio:   #1b2d45;
  --azul-acento:  #1a56db;
  --azul-hover:   #1e40af;
  --blanco:       #ffffff;
  --gris-fondo:   #f8fafc;
  --gris-borde:   #e2e8f0;
  --gris-texto:   #64748b;
  --texto:        #0f172a;
  --radio:        8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--texto); background: #fff; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gris-borde);
  z-index: 1000;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.12); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: .55rem 1.5rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 160px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: -56px 0; /* compensa el alto extra sin expandir la barra */
}
.nav-links {
  display: flex; gap: 1.8rem; margin: 0 auto; align-items: center;
}
.nav-links a {
  font-size: .85rem; font-weight: 700; color: var(--texto);
  text-transform: uppercase; letter-spacing: .06em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--azul-acento); border-bottom-color: var(--azul-acento); }
.btn-cta-nav {
  display: flex; align-items: center; gap: .4rem;
  background: var(--azul-marino); color: #fff;
  font-size: .82rem; font-weight: 700;
  padding: .55rem 1.1rem; border-radius: 6px;
  white-space: nowrap; flex-shrink: 0;
  transition: background .2s;
}
.btn-cta-nav:hover { background: var(--azul-acento); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--texto); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  padding-top: 62px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,27,42,.88) 0%,
    rgba(13,27,42,.68) 50%,
    rgba(13,27,42,.18) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900; color: #fff;
  text-transform: uppercase;
  line-height: .98; margin: 0 0 1.2rem;
  max-width: 580px;
  animation: fadeUp .8s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: clamp(.92rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,.88);
  max-width: 420px; line-height: 1.65;
  margin: 0 0 2rem;
  animation: fadeUp .8s .15s ease both;
}
.btn-hero {
  display: inline-block;
  border: 2px solid #fff; color: #fff;
  font-size: .92rem; font-weight: 700;
  padding: .82rem 2rem; border-radius: 6px;
  letter-spacing: .05em;
  transition: background .2s, color .2s;
  animation: fadeUp .8s .3s ease both;
}
.btn-hero:hover { background: #fff; color: var(--azul-marino); }

/* ── HERO TRUST BAR ── */
.hero-trust {
  display: flex; align-items: center;
  gap: 0;
  margin-top: 2.8rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  backdrop-filter: blur(6px);
  max-width: 620px;
  animation: fadeUp .8s .45s ease both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .6rem;
  flex: 1; min-width: 0;
}
.hero-trust-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(26,86,219,.3);
  border: 1px solid rgba(26,86,219,.4);
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}
.hero-trust-item > div {
  display: flex; flex-direction: column; gap: .1rem;
  min-width: 0;
}
.hero-trust-item strong {
  font-size: .74rem; font-weight: 700;
  color: #fff; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-trust-item span {
  font-size: .64rem; color: rgba(255,255,255,.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-trust-sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.15);
  margin: 0 .4rem; flex-shrink: 0;
}

.hero-dots {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: .7rem;
}
.hero-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.hero-dots .dot.active { background: #fff; }

/* ──────────────────────────────────────────
   SERVICIOS
────────────────────────────────────────── */
.servicios { background: var(--gris-fondo); padding: 5rem 1.5rem; }
.servicios-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr; gap: 4rem;
  align-items: start;
}
.section-label {
  font-size: .72rem; font-weight: 700;
  color: var(--azul-acento); letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 .6rem;
}
.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700; color: var(--texto); line-height: 1.25; margin: 0 0 1rem;
}
.title-line {
  width: 38px; height: 3px; background: var(--azul-acento); border-radius: 2px;
}
.servicios-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.srv-card {
  background: #fff; border: 1px solid var(--gris-borde);
  border-radius: var(--radio); padding: 1.6rem 1.2rem;
  transition: box-shadow .25s, transform .25s;
}
.srv-card:hover {
  box-shadow: 0 8px 28px rgba(26,86,219,.12);
  transform: translateY(-3px);
}
.srv-icon { color: var(--azul-acento); margin-bottom: 1rem; }
.srv-card h3 {
  font-size: .82rem; font-weight: 700;
  color: var(--texto); text-transform: uppercase; letter-spacing: .06em;
  margin: 0 0 .5rem;
}
.srv-card p {
  font-size: .8rem; color: var(--gris-texto); line-height: 1.55; margin: 0;
}

/* ──────────────────────────────────────────
   RUTAS — imagen de fondo nueva (mapa+camión)
   Contenido centrado, dividido en 3 columnas:
   izq vacía | centro texto | der vacía
────────────────────────────────────────── */
.rutas {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center;
}
.rutas-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.rutas-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
/* Overlay oscuro uniforme que oscurece sin tapar imagen */
.rutas-bg-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,27,42,.62);
}
.rutas-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 5rem 1.5rem;
  display: grid;
  /* 3 columnas: espacio izq | bloque central | espacio der */
  grid-template-columns: 1fr 480px 1fr;
  gap: 0; align-items: center;
}
.rutas-spacer { /* vacío a cada lado para centrar el bloque */ }

/* Bloque central */
.rutas-content {
  display: flex; flex-direction: column; gap: 2.2rem;
  align-items: flex-start;
}
.rutas-puntos { display: flex; flex-direction: column; gap: 0; }
.ruta-punto { display: flex; align-items: center; gap: .9rem; }
.punto-dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--azul-acento); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(26,86,219,.3);
}
.punto-dot--empty {
  background: transparent !important;
  border: 2px solid rgba(255,255,255,.4);
  box-shadow: none !important;
}
.punto-label {
  font-size: .82rem; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: .12em;
}
.ruta-linea {
  width: 1px; height: 40px; margin-left: 6px;
  border-left: 2px dashed rgba(255,255,255,.3);
}
.rutas-texto { display: flex; flex-direction: column; }
.section-label--white { color: rgba(255,255,255,.65); }
.section-title--white { color: #fff; }
.rutas-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.78); line-height: 1.7;
  max-width: 400px; margin: .8rem 0 1.4rem;
}
.btn-rutas {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--azul-acento); color: #fff;
  font-size: .86rem; font-weight: 700;
  padding: .72rem 1.5rem; border-radius: 6px;
  align-self: flex-start;
  transition: background .2s;
}
.btn-rutas:hover { background: var(--azul-hover); }

/* ──────────────────────────────────────────
   FLOTA — layout: título izq + 4 fotos en grid
────────────────────────────────────────── */
.flota { background: #fff; padding: 4rem 1.5rem; }
.flota-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem;
  align-items: center;
}
.flota-header { display: flex; flex-direction: column; gap: .5rem; }
.flota-header .section-label { margin-bottom: .2rem; }
.flota-header .section-title { margin-bottom: 0; }

/* Contenedor del slider */
.flota-slider-col { display: flex; flex-direction: column; gap: .8rem; }
.flota-slider-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: var(--radio);
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}
.flota-slider-wrap::-webkit-scrollbar { display: none; }

.flota-slider {
  display: grid;
  /* 4 columnas exactas del ancho del contenedor */
  grid-template-columns: repeat(5, calc(25% - .45rem));
  gap: .6rem;
  width: max-content;
}

.flota-slide {
  width: calc((100vw - 3rem - 260px - 2.5rem) / 4 - .45rem);
  max-width: 230px;
  height: 170px;
  overflow: hidden;
  border-radius: var(--radio);
  scroll-snap-align: start;
  flex-shrink: 0;
}
.flota-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.flota-slide:hover img { transform: scale(1.05); }
.flota-controls {
  display: flex; gap: .5rem; justify-content: flex-end;
}
.flota-controls {
  display: flex; gap: .5rem; justify-content: flex-end;
}
.flota-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gris-borde);
  background: #fff; color: var(--texto);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.flota-btn:hover {
  background: var(--azul-marino); color: #fff; border-color: var(--azul-marino);
}

/* En desktop: flex con overflow hidden — JS controla el translateX */
@media (min-width: 861px) {
  .flota-slider-wrap { overflow: hidden; height: 170px; }
  .flota-slider {
    display: flex !important;
    grid-template-columns: none !important;
    width: auto !important;
    height: 170px;
    flex-wrap: nowrap;
  }
  .flota-slide {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    height: 170px !important;
  }
}

/* ──────────────────────────────────────────
   STATS — rediseño visual atractivo
────────────────────────────────────────── */
.stats {
  background: var(--azul-marino);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
/* Detalle decorativo fondo */
.stats::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(26,86,219,.08);
  pointer-events: none;
}
.stats::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(26,86,219,.06);
  pointer-events: none;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; position: relative; z-index: 1;
}
.stat-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  transition: background .3s, transform .3s;
}
.stat-item:hover {
  background: rgba(26,86,219,.2);
  transform: translateY(-4px);
}
.stat-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(26,86,219,.25);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}
.stat-text { display: flex; flex-direction: column; gap: .25rem; }
.stat-text strong {
  font-size: 1.5rem; font-weight: 900;
  color: #fff; letter-spacing: -.01em; line-height: 1;
}
.stat-text span {
  font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.45;
}
.stat-label-top {
  font-size: .68rem; font-weight: 700;
  color: var(--azul-acento); text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: .1rem;
}

/* ──────────────────────────────────────────
   FORMULARIO HOME
────────────────────────────────────────── */
.form-section {
  background: var(--gris-fondo);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--gris-borde);
}
.form-section-inner {
  max-width: 760px; margin: 0 auto;
}
.form-section .section-label { margin-bottom: .5rem; }
.form-section .section-title { margin-bottom: .3rem; }
.form-section-sub {
  font-size: .9rem; color: var(--gris-texto); margin-bottom: 2.2rem; line-height: 1.6;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .75rem; font-weight: 700; color: var(--texto);
  text-transform: uppercase; letter-spacing: .07em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Lato', sans-serif;
  font-size: .9rem; color: var(--texto);
  padding: .7rem 1rem;
  border: 1px solid var(--gris-borde);
  border-radius: 6px; background: #fff;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--azul-acento); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-form-submit {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--azul-acento); color: #fff;
  font-family: 'Lato', sans-serif; font-size: .9rem; font-weight: 700;
  padding: .85rem 2rem; border-radius: 6px; border: none;
  cursor: pointer; align-self: flex-start;
  transition: background .2s;
}
.btn-form-submit:hover { background: var(--azul-hover); }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer { background: var(--azul-marino); padding: 3.5rem 1.5rem 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; padding-bottom: 3rem;
}
.footer-logo {
  height: 156px; width: auto;
  margin: -52px 0 1rem 0;
  display: block; object-fit: contain;
}
.footer-brand p {
  font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0;
}
.footer-contacto {
  display: flex; gap: 4rem; align-items: center; justify-content: flex-end;
}
.footer-contact-item { display: flex; align-items: center; gap: 1rem; }
.footer-contact-icon { color: rgba(255,255,255,.7); }
.footer-contact-label {
  display: block; font-size: .68rem; font-weight: 700;
  color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .2rem;
}
.footer-contact-value {
  display: block; font-size: 1rem; font-weight: 700;
  color: #fff; transition: color .2s;
}
.footer-contact-value:hover { color: var(--azul-acento); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 0; text-align: center;
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom p {
  font-size: .78rem; color: rgba(255,255,255,.38); margin: 0;
}

/* ──────────────────────────────────────────
   WHATSAPP FLOTANTE
────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

/* ──────────────────────────────────────────
   PÁGINAS INTERIORES
────────────────────────────────────────── */
.hero-inner {
  position: relative;
  min-height: 260px; display: flex; align-items: flex-end;
  padding-top: 62px; overflow: hidden;
}
.hero-inner-bg { position: absolute; inset: 0; z-index: 0; }
.hero-inner-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero-inner-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,.75);
}
.hero-inner-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 2.5rem 1.5rem 3rem;
}
.hero-inner-content h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: #fff; text-transform: uppercase; margin: 0 0 .5rem;
}
.hero-inner-content p { font-size: .9rem; color: rgba(255,255,255,.75); }
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: .8rem; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }

/* ──────────────────────────────────────────
   NOSOTROS
────────────────────────────────────────── */
.nosotros-content { padding: 5rem 1.5rem; }
.nosotros-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.nosotros-img { border-radius: 12px; overflow: hidden; }
.nosotros-img img { width: 100%; height: 420px; object-fit: cover; }
.nosotros-texto .section-label { margin-bottom: .6rem; }
.nosotros-texto .section-title { margin-bottom: 1.2rem; }
.nosotros-texto p { font-size: .92rem; color: var(--gris-texto); line-height: 1.75; margin-bottom: 1rem; }
.nosotros-valores { background: var(--gris-fondo); padding: 5rem 1.5rem; border-top: 1px solid var(--gris-borde); }
.nosotros-valores-inner { max-width: 1200px; margin: 0 auto; }
.nosotros-valores .section-title { margin-bottom: 2.5rem; text-align: center; }
.valores-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.valor-card { background: #fff; border: 1px solid var(--gris-borde); border-radius: var(--radio); padding: 2rem 1.5rem; }
.valor-card .srv-icon { margin-bottom: .8rem; }
.valor-card h3 { font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.valor-card p { font-size: .82rem; color: var(--gris-texto); line-height: 1.6; }

/* ──────────────────────────────────────────
   CONTACTO
────────────────────────────────────────── */
.contacto-section { padding: 5rem 1.5rem; }
.contacto-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem;
}
.contacto-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.contacto-info p { font-size: .9rem; color: var(--gris-texto); line-height: 1.7; margin-bottom: 2rem; }
.contacto-lista { display: flex; flex-direction: column; gap: 1.2rem; }
.contacto-item { display: flex; align-items: flex-start; gap: 1rem; }
.contacto-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gris-fondo); border: 1px solid var(--gris-borde);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul-acento); flex-shrink: 0;
}
.contacto-item-text span {
  display: block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gris-texto); margin-bottom: .2rem;
}
.contacto-item-text a, .contacto-item-text p {
  font-size: .92rem; font-weight: 700; color: var(--texto); margin: 0;
}
.contacto-item-text a:hover { color: var(--azul-acento); }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1100px) {
  .servicios-inner { grid-template-columns: 220px 1fr; gap: 2.5rem; }
  .servicios-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .footer-contacto { gap: 2.5rem; }
  .flota-inner { grid-template-columns: 220px 1fr; gap: 2rem; }
  .rutas-inner { grid-template-columns: 1fr 480px 1fr; }
}

@media (max-width: 860px) {
  /* Navbar móvil: logo izquierda, CTA pequeño + hamburger derecha */
  .nav-inner { padding: .5rem 1rem; gap: .6rem; }
  .nav-logo { margin-right: auto; }
  .nav-logo img {
    height: 100px !important;
    margin: -30px 0 !important;
  }
  .nav-links { display: none !important; }
  /* Mostrar botón CTA pero más pequeño */
  .btn-cta-nav {
    display: flex !important;
    font-size: .72rem !important;
    padding: .45rem .8rem !important;
    gap: .3rem !important;
  }
  .btn-cta-nav svg { width: 14px !important; height: 14px !important; }
  .hamburger { display: flex !important; margin-left: .4rem; }
  .nav-links.open {
    display: flex !important; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--azul-marino);
    align-items: center; justify-content: center; gap: 2rem; z-index: 999;
  }
  .nav-links.open a { color: #fff !important; font-size: 1.2rem !important; border: none !important; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3.2rem) !important; }
  .hero-dots { display: none; }
  .hero-trust {
    flex-wrap: wrap !important;
    gap: .8rem !important;
    max-width: 100% !important;
    padding: .9rem 1rem !important;
  }
  .hero-trust-item { flex: 0 0 calc(50% - .4rem) !important; }
  .hero-trust-sep { display: none !important; }
  .servicios-inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .servicios-grid { grid-template-columns: repeat(2,1fr) !important; }
  .rutas-inner { grid-template-columns: 1fr !important; }
  .rutas-spacer { display: none !important; }
  .rutas-content { align-items: flex-start; }
  /* Flota móvil: flex con scroll horizontal, 2 fotos visibles */
  .flota-inner { grid-template-columns: 1fr !important; }
  .flota-slider-wrap {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    height: 150px !important;
  }
  .flota-slider {
    display: flex !important;
    grid-template-columns: none !important;
    width: auto !important;
    gap: .6rem !important;
    height: 150px !important;
    padding-bottom: 0 !important;
  }
  .flota-slide {
    flex: 0 0 calc(50% - .3rem) !important;
    width: calc(50% - .3rem) !important;
    height: 150px !important;
    max-width: none !important;
  }
  .stats-inner { grid-template-columns: repeat(2,1fr) !important; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .footer-contacto { flex-direction: column !important; gap: 1.5rem !important; align-items: flex-start !important; justify-content: flex-start !important; }
  .nosotros-inner { grid-template-columns: 1fr !important; }
  .nosotros-img img { height: 260px !important; }
  .valores-grid { grid-template-columns: 1fr !important; }
  .contacto-inner { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
}

@media (max-width: 540px) {
  .servicios-grid { grid-template-columns: 1fr !important; }
  .stats-inner { grid-template-columns: 1fr !important; }
  .flota-slide { flex: 0 0 calc(50% - .3rem) !important; width: calc(50% - .3rem) !important; }
  .hero { min-height: 78vh !important; }
}
