/* =========================================================================
   GRÚA GO — Estilos del sitio
   Branding: paleta oficial · Tipografía Montserrat
   ========================================================================= */

:root {
  --blue-900: #061B3A;   /* Azul principal */
  --blue-700: #0D2D66;   /* Azul secundario */
  --yellow:   #F5C400;   /* Amarillo industrial */
  --yellow-2: #FFD633;
  --white:    #FFFFFF;
  --gray-100: #F5F6F8;
  --gray-200: #EAEAEA;
  --gray-400: #BDBDBD;
  --gray-600: #6B7280;
  --gray-800: #1F2937;
  --wa-green: #25D366;
  --wa-green-d: #128C7E;

  --radius-card: 18px;
  --radius-btn: 10px;
  --shadow-card: 0 14px 38px -18px rgba(6, 27, 58, .35);
  --shadow-hover: 0 22px 60px -18px rgba(6, 27, 58, .55);

  --container-max: 1240px;
  --font: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ligero ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-locked { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* Las animaciones de scroll las gestiona AOS (ver css/aos.css y js/aos.js). */

.split-words { display: block; }
.split-words .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1;
}
.split-words .word {
  display: inline-block;
  transform: translateY(105%) rotate(2.5deg);
  opacity: 0;
  will-change: transform, opacity;
}

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--blue-900);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

/* ---------- Brand (logo + tagline) ---------- */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.brand-mark {
  font-weight: 900;
  font-size: 38px;
  letter-spacing: -.5px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-grua { color: var(--white); }
.brand-go   { color: var(--yellow); }
.brand-crane {
  width: 26px;
  height: 26px;
  margin-left: 2px;
  flex: 0 0 26px;
}
.brand-tag {
  display: block;
  font-size: 9.5px;
  letter-spacing: 2.4px;
  color: var(--yellow);
  font-weight: 700;
  margin: 2px 0 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- Nav (desktop) ---------- */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.nav-head, .nav-foot { display: none; }       /* solo mobile */
.nav-items { display: contents; }              /* en desktop fluye igual */
.main-nav a {
  position: relative;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .6px;
  color: var(--white);
  padding: 8px 0;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;       /* evita que un item se parta en 2 líneas */
}
.main-nav a .nav-ic,
.main-nav a .nav-chev { display: none; }       /* ocultos en desktop */
.main-nav a:hover { color: var(--yellow); }
.main-nav a.active { color: var(--yellow); }
.main-nav a.active::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

/* ---------- Actions (CTA + WhatsApp) ---------- */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-quote {
  padding: 11px 18px;
  font-size: 12.5px;
  letter-spacing: .8px;
  border-radius: 999px;
  gap: 8px;
}
.btn-quote svg { width: 15px; height: 15px; }

.header-wa {
  width: 44px; height: 44px;
  background: var(--wa-green);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(37, 211, 102, .6);
  transition: transform .2s ease;
  flex: 0 0 44px;
}
.header-wa:hover { transform: scale(1.06); }
.header-wa svg { width: 22px; height: 22px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  padding: 8px;
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Backdrop: oculto por defecto para que no rompa el grid del header en desktop.
   Solo se activa en mobile (ver media query). */
.nav-backdrop { display: none; }

/* ===========================================================
   HERO  (sin data-anim del scroll; entrada one-shot CSS)
   =========================================================== */
.hero {
  position: relative;
  background: var(--blue-900);
  color: var(--white);
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(95deg, rgba(6,27,58,.92) 0%, rgba(6,27,58,.55) 45%, rgba(6,27,58,.2) 65%, rgba(6,27,58,0) 100%),
    url('../img/hero-team.jpg');
  background-size: cover;
  background-position: center right;
  background-color: var(--blue-700);
  z-index: 0;
  transform: scale(1.02);
  transform-origin: 65% 50%;
  animation: hero-zoom 7s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,.02) 22px 23px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 80px;
  /* nota: el padding-left/right viene de .container (24px) — no usar shorthand */
}

/* ---------- Título: cada línea entra con mask-reveal ---------- */
.hero-title {
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 26px;
  text-transform: uppercase;
  max-width: 720px;
}
.hero-title .accent { color: var(--yellow); }
.title-line {
  display: block;
  overflow: hidden;
  padding-top: .1em;
  padding-bottom: .05em;
  margin-top: -.05em;
}
.title-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: title-rise 1.05s cubic-bezier(.7, 0, .15, 1) forwards;
}
.title-line:nth-child(1) .title-inner { animation-delay: .25s; }
.title-line:nth-child(2) .title-inner { animation-delay: .42s; }
.title-line:nth-child(3) .title-inner { animation-delay: .68s; }

/* ---------- Subtítulo, CTAs y bullets: cascada fade-up ---------- */
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin: 0 0 28px;
  max-width: 480px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise .8s cubic-bezier(.4, 0, .2, 1) 1.15s forwards;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise .8s cubic-bezier(.4, 0, .2, 1) 1.35s forwards;
}
.hero-bullets {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 36px;
  align-items: center;
}
.hero-bullet {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise .65s cubic-bezier(.4, 0, .2, 1) forwards;
}
.hero-bullet:nth-child(1) { animation-delay: 1.6s; }
.hero-bullet:nth-child(2) { animation-delay: 1.75s; }
.hero-bullet:nth-child(3) { animation-delay: 1.9s; }

/* ---------- CTA amarillo con pulso suave después de entrar ---------- */
.hero-ctas .btn-yellow {
  animation: cta-pulse 2.8s ease-in-out 2.4s infinite;
}

/* ---------- Keyframes ---------- */
@keyframes title-rise {
  0%   { transform: translateY(110%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(0);    opacity: 1; }
}
@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-bg-pan {
  0%   { transform: scale(1.08) translateX(0); }
  100% { transform: scale(1.12) translateX(-2%); }
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 10px 24px -10px rgba(245, 196, 0, .6); }
  50%      { box-shadow: 0 14px 32px -8px rgba(245, 196, 0, .85), 0 0 0 10px rgba(245, 196, 0, .08); }
}

/* Respetar preferencia de "menos movimiento" del sistema */
@media (prefers-reduced-motion: reduce) {
  .title-inner, .hero-sub, .hero-ctas, .hero-bullet { animation: none; opacity: 1; transform: none; }
  .hero::before { animation: none; transform: none; }
  .hero-ctas .btn-yellow { animation: none; }
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(255,255,255,.92);
}
.hero-bullet .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(245, 196, 0, .12);
  display: grid; place-items: center;
  color: var(--yellow);
  flex: 0 0 36px;
}
.hero-bullet .ic svg { width: 18px; height: 18px; }
.hero-bullet b { font-weight: 700; display: block; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .8px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Brillo diagonal que barre el botón al pasar el cursor (micro-interacción pro). */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(130%) skewX(-18deg); }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

.btn-yellow {
  background: var(--yellow);
  color: var(--blue-900);
  box-shadow: 0 10px 24px -10px rgba(245, 196, 0, .6);
}
.btn-yellow:hover { background: var(--yellow-2); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--blue-900); }

.btn-dark {
  background: var(--blue-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--blue-700); }

.btn-wa-outline {
  background: transparent;
  color: var(--wa-green);
  border-color: var(--wa-green);
}
.btn-wa-outline:hover { background: var(--wa-green); color: #fff; }

/* ===========================================================
   SECCIÓN: Tarjetas RENTA / USADAS
   =========================================================== */
.cards-pair {
  padding: 70px 0 30px;
  background: var(--white);
}
.cards-pair .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.feature-card {
  position: relative;
  border-radius: var(--radius-card);
  padding: 38px 40px;
  min-height: 320px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* ===== Imágenes de fondo de las cards =====
   Para mostrar tu propia foto, coloca:
     img/card-rental.jpg   → fondo de "RENTA DE GRÚAS"
     img/card-used.jpg     → fondo de "GRÚAS USADAS"
   El gradiente sólido cubre la mitad izquierda (donde van el título y bullets)
   y se desvanece a transparente en la derecha para mostrar la foto.
*/
.feature-card.dark {
  background-color: var(--blue-900);
  color: var(--white);
  background-image:
    linear-gradient(100deg, var(--blue-900) 0%, var(--blue-900) 42%, rgba(6,27,58,.55) 72%, rgba(6,27,58,0) 100%),
    url('../img/card-rental.jpg');
  background-size: cover, cover;
  background-position: left center, right center;
  background-repeat: no-repeat;
}
.feature-card.light {
  background-color: var(--gray-100);
  color: var(--gray-800);
  background-image:
    linear-gradient(100deg, var(--gray-100) 0%, var(--gray-100) 42%, rgba(245,246,248,.55) 72%, rgba(245,246,248,0) 100%),
    url('../img/card-used.jpg');
  background-size: cover, cover;
  background-position: left center, right center;
  background-repeat: no-repeat;
}
.feature-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -.5px;
  text-transform: uppercase;
}
.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  max-width: 60%;
}
.feature-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.feature-card li .chk {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(245,196,0,.15);
  color: var(--yellow);
  display: grid; place-items: center;
}
.feature-card.light li .chk { background: rgba(6,27,58,.08); color: var(--blue-900); }
.feature-card li svg { width: 12px; height: 12px; }
.feature-card .btn { align-self: flex-start; }

/* ===========================================================
   SECCIÓN: ¿CÓMO FUNCIONA?
   =========================================================== */
.how {
  padding: 70px 0 80px;
  background: var(--white);
  text-align: center;
}
.section-title {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  margin: 0 0 50px;
  letter-spacing: -.5px;
  text-transform: uppercase;
  color: var(--blue-900);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 0;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 18px;
  position: relative;
}
.step-circle {
  width: 86px; height: 86px;
  border-radius: 50%;
  border: 2px solid var(--blue-900);
  display: grid; place-items: center;
  color: var(--blue-900);
  background: var(--white);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.step-circle svg { width: 36px; height: 36px; }
.step-num {
  position: absolute;
  left: -4px; bottom: -6px;
  width: 26px; height: 26px;
  background: var(--yellow);
  color: var(--blue-900);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 13px;
  border: 3px solid var(--white);
}
.step-title {
  font-weight: 700;
  font-size: 15px;
  margin: 8px 0 6px;
  color: var(--blue-900);
}
.step-text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.45;
  max-width: 200px;
}
.step:not(:last-child) .step-circle-wrap::after {
  content: '';
  position: absolute;
  top: 43px;
  left: calc(50% + 50px);
  width: calc(100% - 100px);
  height: 0;
  border-top: 2px dashed var(--yellow);
  z-index: 1;
}
.step-circle-wrap {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}
.step-arrow {
  position: absolute;
  top: 36px;
  left: 100%;
  transform: translateX(-50%);
  color: var(--yellow);
  z-index: 1;
}
.step-arrow svg { width: 22px; height: 22px; }
.step:last-child .step-arrow { display: none; }

/* ===========================================================
   SECCIÓN: GRÚAS DESTACADAS (carrusel)
   =========================================================== */
.featured {
  padding: 30px 0 70px;
  background: var(--white);
  position: relative;
}
.featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}
.featured-head h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  margin: 0;
  color: var(--blue-900);
  text-transform: uppercase;
  letter-spacing: -.3px;
}
.see-all {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .8px;
  color: var(--blue-900);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.see-all:hover { color: var(--yellow); }
.see-all svg { width: 14px; height: 14px; }

.carousel-wrap {
  position: relative;
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }

@media (min-width: 992px) {
  .carousel-track {
    grid-auto-columns: calc((100% - 72px) / 4);
  }
}

.crane-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
a.crane-card--link { text-decoration: none; color: inherit; cursor: pointer; }
.crane-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.crane-thumb {
  aspect-ratio: 16/11;
  background: var(--gray-100) center/cover no-repeat;
  background-image: linear-gradient(180deg, rgba(6,27,58,.05), rgba(6,27,58,.18));
  position: relative;
}
.crane-thumb img { width: 100%; height: 100%; object-fit: cover; }
.crane-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.crane-name {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 14px;
  color: var(--blue-900);
  letter-spacing: -.2px;
  min-height: calc(1.3em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.crane-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
  min-height: 20px;
}
.crane-meta .pipe { width: 1px; height: 14px; background: var(--gray-200); }
.crane-meta span { display: inline-flex; align-items: center; gap: 6px; }
.crane-meta svg { width: 13px; height: 13px; color: var(--blue-900); }
.crane-cta {
  width: 100%;
  justify-content: center;
  padding: 11px 14px;
  font-size: 12px;
  margin-top: auto;
}

.car-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--blue-900);
  box-shadow: 0 10px 24px -10px rgba(6,27,58,.25);
  z-index: 3;
  transition: background .2s, color .2s, transform .15s;
}
.car-nav:hover { background: var(--blue-900); color: var(--white); transform: translateY(-50%) scale(1.06); }
.car-nav svg { width: 16px; height: 16px; }
.car-prev { left: -18px; }
.car-next { right: -18px; }

/* ===========================================================
   ¿POR QUÉ CONFIAR EN GRÚA GO? (6 cards)
   =========================================================== */
.trust {
  padding: 80px 0 80px;
  background: var(--white);
  text-align: center;
}
.trust-title {
  margin-bottom: 16px;
  position: relative;
}
.trust-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--yellow);
  margin: 16px auto 0;
  border-radius: 2px;
}
.trust-sub {
  max-width: 620px;
  margin: 0 auto 50px;
  color: var(--gray-600);
  font-size: 15.5px;
  line-height: 1.55;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.trust-card:hover::before { transform: scaleX(1); }

.trust-ic {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(245,196,0,.12);
  color: var(--yellow);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  transition: background .25s, color .25s, transform .25s;
}
.trust-ic svg { width: 28px; height: 28px; }
.trust-card:hover .trust-ic {
  background: var(--yellow);
  color: var(--blue-900);
  transform: scale(1.05) rotate(-4deg);
}
.trust-card h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--blue-900);
  margin: 0 0 10px;
  line-height: 1.3;
}
.trust-card p {
  font-size: 13.5px;
  color: var(--gray-700, #475569);
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

/* ===========================================================
   CTA BANNER (antes del footer)
   =========================================================== */
.cta-banner {
  position: relative;
  background: var(--blue-900);
  color: var(--white);
  overflow: hidden;
  padding: 56px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(95deg, rgba(6,27,58,.94) 0%, rgba(6,27,58,.75) 55%, rgba(6,27,58,.55) 100%),
    url('../img/renta-grua.jpg');
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-pre {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
}
.cta-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -.5px;
  line-height: 1.05;
}
.cta-title .accent { color: var(--yellow); }
.cta-sub {
  margin: 0;
  font-size: 16px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-actions .btn { padding: 16px 22px; font-size: 13px; }
.cta-actions .btn-outline-white { color: var(--white); }
.cta-actions .btn-outline-white:hover { color: var(--blue-900); }
.cta-actions .btn-outline-white svg { width: 18px; height: 18px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 60px 0 26px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr 1.05fr 1.1fr 1fr;
  gap: 38px;
  align-items: start;
}

/* Col brand */
.brand--footer { display: inline-flex; }

.footer-desc {
  margin: 18px 0 18px;
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 280px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: var(--white);
  transition: background .2s, color .2s, transform .15s;
}
.socials a:hover { background: var(--yellow); color: var(--blue-900); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

/* Col headers */
.footer-col h4 {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 6px 0 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.4;
}
.footer-col li svg { width: 16px; height: 16px; color: var(--yellow); flex: 0 0 16px; }

.footer-links li a {
  color: rgba(255,255,255,.82);
  transition: color .2s, padding-left .2s;
}
.footer-links li a:hover { color: var(--yellow); padding-left: 4px; }

/* WhatsApp help card */
.wa-help {
  background: linear-gradient(150deg, #128C7E 0%, #075E54 100%);
  border-radius: 14px;
  padding: 20px 22px;
  color: var(--white);
  box-shadow: 0 12px 30px -12px rgba(7,94,84,.6);
}
.wa-help-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.wa-help-ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  flex: 0 0 42px;
}
.wa-help-ic svg { width: 22px; height: 22px; color: #fff; }
.wa-help h5 { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.2; }
.wa-help p { margin: 4px 0 0; font-size: 12.5px; color: rgba(255,255,255,.78); }
.wa-help-btn {
  display: block;
  background: var(--wa-green);
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: background .2s, transform .15s;
}
.wa-help-btn:hover { background: #1ebe5d; transform: translateY(-1px); }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 46px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  text-align: center;
  letter-spacing: .5px;
}

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -8px rgba(37,211,102,.6);
  transition: transform .2s, opacity .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
body.nav-locked .wa-float { opacity: 0; pointer-events: none; }

/* ===========================================================
   PÁGINAS INTERNAS — componentes compartidos
   =========================================================== */

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  background: var(--blue-900);
  color: var(--white);
  overflow: hidden;
}
.page-hero__media {
  position: relative;
  min-height: 360px;
  background: var(--blue-700);
  overflow: hidden;
  display: grid;
  align-items: center;
}
/* Capa de FOTO con zoom lento (Ken Burns): avanza despacio y se queda fija al
   terminar (forwards). El texto no escala porque vive en otra capa por encima. */
.page-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat;
  background-image: url('../img/hero-team.jpg');
  transform: scale(1.02);
  transform-origin: 60% 50%;
  animation: hero-zoom 7s cubic-bezier(.22,.61,.36,1) forwards;
}
/* Capa de degradado (overlay) por encima de la foto y por debajo del texto. */
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(95deg, rgba(6,27,58,.95) 0%, rgba(6,27,58,.7) 45%, rgba(6,27,58,.25) 75%, rgba(6,27,58,0) 100%);
}
.page-hero--servicios .page-hero__media::before { background-image: url('../img/acerca-grua.jpg'); }
.page-hero--compra    .page-hero__media::before { background-image: url('../img/venta-grua.jpg'); }
.page-hero--renta     .page-hero__media::before { background-image: url('../img/renta-grua.jpg'); }
.page-hero--nosotros  .page-hero__media::before { background-image: url('../img/servicio-grua.jpg'); }

@keyframes hero-zoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.16); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero__media::before { animation: none; transform: scale(1.02); }
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 30px 0 56px;
  max-width: 640px;
}
.page-hero__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.5px;
  text-transform: uppercase;
  margin: 14px 0 18px;
}
.page-hero__title .accent { color: var(--yellow); }
.page-hero__title .title-inner.accent { color: var(--yellow); }
.page-hero__sub {
  color: rgba(255,255,255,.78);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 0 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise .8s cubic-bezier(.4, 0, .2, 1) 1.15s forwards;
}
.page-hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
}
.page-hero__bullet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.88);
  line-height: 1.25;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise .65s cubic-bezier(.4, 0, .2, 1) forwards;
}
.page-hero__bullet:nth-child(1) { animation-delay: 1.55s; }
.page-hero__bullet:nth-child(2) { animation-delay: 1.70s; }
.page-hero__bullet:nth-child(3) { animation-delay: 1.85s; }
.page-hero__bullet:nth-child(4) { animation-delay: 2.00s; }
.page-hero__bullet .ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(245,196,0,.14);
  color: var(--yellow);
  display: grid; place-items: center;
  flex: 0 0 34px;
}
.page-hero__bullet .ic svg { width: 16px; height: 16px; }
.page-hero__bullet b { display: block; font-weight: 700; }
.page-hero__bullet small { display: block; font-size: 11.5px; color: rgba(255,255,255,.6); font-weight: 500; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  padding: 14px 0 0;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { opacity: .5; font-size: 11px; }
.breadcrumb .current { color: var(--yellow); font-weight: 600; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ===========================================================
   SERVICIOS — Cards grandes con subcategorías
   =========================================================== */
.svc-section { padding: 70px 0 50px; background: var(--white); }
.svc-section .section-title { margin-bottom: 14px; text-align: center; }
.svc-section .section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--yellow);
  margin: 14px auto 0;
  border-radius: 2px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 38px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.svc-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--gray-100) center/cover no-repeat;
}
.svc-card__icon {
  position: absolute;
  bottom: -28px;
  left: 24px;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-900);
  color: var(--yellow);
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 12px 24px -8px rgba(6,27,58,.5);
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card__body {
  padding: 42px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-900);
  text-transform: uppercase;
  letter-spacing: -.2px;
  margin: 0 0 10px;
}
.svc-card__body > p {
  color: var(--gray-600);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.svc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.svc-cols h4 {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--blue-900);
  text-transform: uppercase;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.svc-cols h4 svg { width: 14px; height: 14px; color: var(--yellow); }
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 6px;
}
.svc-list li {
  font-size: 12.5px;
  color: var(--gray-600);
  position: relative;
  padding-left: 16px;
  line-height: 1.5;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.svc-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ---------- Strip oscuro 5 features (Servicios) ---------- */
.svc-strip {
  background: var(--blue-900);
  color: var(--white);
  padding: 36px 0;
}
.svc-strip .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.svc-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.svc-strip__ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(245,196,0,.12);
  color: var(--yellow);
  display: grid; place-items: center;
  flex: 0 0 40px;
}
.svc-strip__ic svg { width: 20px; height: 20px; }
.svc-strip__t {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 4px;
  line-height: 1.25;
}
.svc-strip__p {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.4;
}

/* ---------- Brands ---------- */
.brands { padding: 60px 0; background: var(--white); text-align: center; }
.brands h2 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--blue-900);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.2px;
}
.brands h2 { text-align: center; }
.brands h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  margin: 14px auto 0;
  border-radius: 2px;
}
.brands__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 42px;
}
.brand-item {
  display: grid;
  place-items: center;
  height: 50px;
  padding: 0 8px;
  color: var(--gray-600);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: var(--font);
  text-transform: uppercase;
  filter: grayscale(1);
  opacity: .55;
  transition: opacity .25s, filter .25s, transform .2s;
}
.brand-item:hover { opacity: 1; filter: none; transform: scale(1.05); }

/* ===========================================================
   COMPRA / VENTA / RENTA — Inventario
   =========================================================== */
.filters-bar {
  background: var(--white);
  padding: 0 0 30px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}
.filter-card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 40px -16px rgba(6,27,58,.3);
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
}
.filter { display: flex; flex-direction: column; gap: 6px; }
.filter label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gray-600);
}
.filter select {
  appearance: none;
  -webkit-appearance: none;
  padding: 11px 36px 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23061B3A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") right 12px center/12px no-repeat;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-900);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.filter select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,196,0,.18); }
.filter-card .btn { padding: 12px 22px; font-size: 13px; gap: 8px; }

/* ---------- Inventory ---------- */
.inventory { padding: 30px 0 70px; background: var(--white); }
.inventory__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.inventory__head h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  color: var(--blue-900);
  margin: 0;
  letter-spacing: -.3px;
}
.inventory__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 22px;
}
.inventory__more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ---------- Product card ---------- */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -12px rgba(6,27,58,.22);
  border-color: var(--yellow);
}
.product-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover .product-card__media { transform: scale(1.06); }
.product-card:hover .product-card__title { color: var(--blue-900); }
.product-card:hover .btn.btn-yellow { background: var(--blue-900); color: var(--yellow); }
.product-card:hover .btn.btn-dark { background: var(--yellow); color: var(--blue-900); }

.product-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--gray-100) center/cover no-repeat;
  background-image: linear-gradient(180deg, rgba(6,27,58,.05), rgba(6,27,58,.18));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  transform-origin: center;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }

@keyframes card-rise {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue-900);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}
.product-card__badge--alt { background: var(--yellow); color: var(--blue-900); }
.product-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-size: 16px; font-weight: 800; color: var(--blue-900); margin: 0 0 4px; line-height: 1.2; min-height: 2.4em; }
.product-card__model { font-size: 12.5px; color: var(--gray-600); margin: 0 0 12px; font-weight: 500; }
.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.product-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--gray-800);
  background: var(--gray-100);
  padding: 4px 9px;
  border-radius: 6px;
  font-weight: 600;
}
.product-card__meta svg { width: 12px; height: 12px; color: var(--blue-900); }
.product-card__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--gray-600);
  margin: 0 0 14px;
}
.product-card__loc svg { width: 13px; height: 13px; color: var(--yellow); }
.product-card__price {
  font-size: 19px;
  font-weight: 800;
  color: var(--blue-900);
  margin: 0 0 14px;
  letter-spacing: -.3px;
}
.product-card__price small { font-size: 12px; color: var(--gray-600); font-weight: 500; }
.product-card .btn {
  width: 100%;
  justify-content: center;
  padding: 11px 14px;
  font-size: 12px;
  margin-top: auto;
}

/* ---------- Sell banner ---------- */
.sell-banner {
  position: relative;
  background: var(--blue-900);
  color: var(--white);
  overflow: hidden;
  padding: 56px 0;
}
/* Imagen de fondo a TODO lo ancho con degradado oscuro encima (como el
   banner de servicios). El texto va por encima y siempre legible. */
.sell-banner__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(95deg, rgba(6,27,58,.94) 0%, rgba(6,27,58,.80) 50%, rgba(6,27,58,.55) 100%),
    url('../img/sell-equipment-bg.jpg');
  background-size: cover;
  background-position: center;
}
.sell-banner__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.sell-banner__content { padding: 0; }
.sell-banner__content h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -.3px;
}
.sell-banner__content p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.5; }
.sell-banner__bullets { padding: 0; min-width: 300px; }
.sell-banner__bullets ul { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.sell-banner__bullets li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,.85); }
.sell-banner__bullets li svg { width: 16px; height: 16px; color: var(--yellow); flex: 0 0 16px; }
.sell-banner__bullets .btn { width: 100%; justify-content: center; }

/* ===========================================================
   NOSOTROS — ¿Qué hacemos? cards
   =========================================================== */
.about-services { padding: 70px 0; background: var(--white); }
.about-services .section-title { margin-bottom: 14px; text-align: center; }
.about-services .section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--yellow);
  margin: 14px auto 0;
  border-radius: 2px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 38px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.about-card__ic {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--blue-900);
  color: var(--yellow);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.about-card__ic svg { width: 30px; height: 30px; }
.about-card__ic--yellow { background: var(--yellow); color: var(--blue-900); }
.about-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-900);
  text-transform: uppercase;
  letter-spacing: -.1px;
  margin: 0;
}
.about-card p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.about-card__media {
  aspect-ratio: 16 / 10;
  background: var(--gray-100) center/cover no-repeat;
  border-radius: 12px;
  margin-top: 6px;
}

/* ===========================================================
   CONTACTO — Cards + formulario + mapa
   =========================================================== */
.contact-section {
  background: var(--white);
  padding: 70px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

/* Tarjetas de contacto (lado izquierdo) */
.contact-cards {
  display: grid;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px 22px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.contact-card__ic {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(245,196,0,.12);
  color: var(--yellow);
  display: grid; place-items: center;
  flex: 0 0 52px;
}
.contact-card__ic svg { width: 24px; height: 24px; }
.contact-card--wa .contact-card__ic { background: rgba(37,211,102,.12); color: var(--wa-green); }
.contact-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gray-600);
  text-transform: uppercase;
  margin: 0 0 4px;
}
.contact-card__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-900);
  margin: 0;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  transition: color .2s;
}
a.contact-card__value:hover { color: var(--yellow); }
.contact-card--wa .contact-card__value:hover { color: var(--wa-green); }
.contact-card__small {
  font-size: 12.5px;
  color: var(--gray-600);
  margin: 4px 0 0;
  font-weight: 500;
}

/* Formulario */
.contact-form-wrap {
  background: var(--blue-900);
  border-radius: 18px;
  padding: 36px;
  color: var(--white);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,196,0,.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-form-wrap > * { position: relative; z-index: 1; }
.contact-form-wrap h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: -.3px;
}
.contact-form-wrap p.lead {
  color: rgba(255,255,255,.7);
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form { display: grid; gap: 14px; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.contact-form label .req { color: var(--yellow); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 3px rgba(245,196,0,.18);
}
.contact-form select {
  cursor: pointer;
  background:
    rgba(255,255,255,.06)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5C400' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") right 12px center/12px no-repeat;
  padding-right: 36px;
}
.contact-form select option { background: var(--blue-900); color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

.contact-form .form-submit { margin-top: 8px; }
.contact-form .form-submit .btn { width: 100%; justify-content: center; padding: 15px 22px; font-size: 13.5px; gap: 10px; }
.contact-form .form-note {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form .form-note svg { width: 14px; height: 14px; color: var(--wa-green); flex: 0 0 14px; }

/* Horario strip */
.hours-strip {
  background: var(--gray-100);
  padding: 30px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.hours-strip .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hours-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hours-ic {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--white);
  color: var(--yellow);
  display: grid; place-items: center;
  flex: 0 0 42px;
  border: 1px solid var(--gray-200);
}
.hours-ic svg { width: 20px; height: 20px; }
.hours-item .t {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gray-600);
  text-transform: uppercase;
  margin: 0 0 2px;
}
.hours-item .v {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-900);
  margin: 0;
}

/* Mapa */
.map-section {
  background: var(--white);
  padding: 60px 0;
}
.map-head {
  text-align: center;
  margin-bottom: 30px;
}
.map-head h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--blue-900);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.3px;
  text-align: center;
}
.map-head h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  margin: 14px auto 0;
  border-radius: 2px;
}
.map-head p { margin: 14px auto 0; color: var(--gray-600); max-width: 540px; font-size: 14px; line-height: 1.5; }
.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 18px;
  display: block;
  box-shadow: var(--shadow-card);
  filter: grayscale(.2) contrast(1.05);
  transition: filter .3s;
}
.map-frame:hover { filter: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
/* Pantallas medianas-grandes: el tagline robaba espacio al nav y los items
   se partían en 2 líneas. Lo ocultamos y compactamos el nav. */
@media (max-width: 1320px) {
  .brand-tag { display: none; }
  .main-nav { gap: 22px; }
  .main-nav a { font-size: 12.5px; letter-spacing: .3px; }
}

@media (max-width: 1200px) {
  .header-inner { gap: 18px; padding-left: 18px; padding-right: 18px; }
  .main-nav { gap: 18px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
  .wa-help { grid-column: 1 / -1; max-width: 380px; }
}

@media (max-width: 1080px) {
  .btn-quote { padding: 10px 14px; font-size: 11.5px; }
  .btn-quote span, .btn-quote .label { display: none; }
  .main-nav a { font-size: 12px; letter-spacing: .2px; }
  .main-nav { gap: 14px; }
}

@media (max-width: 960px) {
  /* ---- HEADER ---- */
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 20px;
  }
  .nav-toggle { display: inline-flex; }
  .header-actions { display: none; }

  /* ---- NAV PANEL DESLIZANTE ---- */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    max-width: 100vw;
    background:
      radial-gradient(120% 60% at 100% 0%, rgba(245,196,0,.10) 0%, transparent 60%),
      linear-gradient(180deg, var(--blue-900) 0%, #04132a 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    z-index: 110;
    transform: translateX(105%);
    transition: transform .42s cubic-bezier(.7,0,.2,1);
    box-shadow: -24px 0 60px -10px rgba(0,0,0,.55);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.is-open { transform: translateX(0); }

  .nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 28px 22px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    gap: 16px;
  }
  .nav-head .brand-mark { font-size: 24px; gap: 6px; }
  .nav-close {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
    color: var(--white);
    display: grid; place-items: center;
    cursor: pointer;
    flex: 0 0 40px;
    transition: background .2s, transform .25s, color .2s;
  }
  .nav-close:hover { background: var(--yellow); color: var(--blue-900); transform: rotate(90deg); }
  .nav-close svg { width: 18px; height: 18px; }

  .nav-items { display: block; padding: 16px 0; }

  .main-nav a {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 15px 24px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .8px;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(255,255,255,.04);
    color: rgba(255,255,255,.88);
    text-transform: uppercase;
    transition: background .2s, border-color .2s, color .2s, padding-left .2s;
  }
  .main-nav a::before, .main-nav a::after { display: none !important; }
  .main-nav a .nav-ic { display: inline-block; width: 20px; height: 20px; color: var(--yellow); opacity: .9; }
  .main-nav a .nav-chev { display: inline-block; width: 14px; height: 14px; color: rgba(255,255,255,.4); transition: transform .2s, color .2s; }
  .main-nav a:hover { background: rgba(255,255,255,.04); border-left-color: var(--yellow); color: var(--yellow); padding-left: 28px; }
  .main-nav a:hover .nav-chev { color: var(--yellow); transform: translateX(3px); }
  .main-nav a.active {
    background: linear-gradient(90deg, rgba(245,196,0,.14) 0%, rgba(245,196,0,0) 100%);
    border-left-color: var(--yellow);
    color: var(--yellow);
  }
  .main-nav a.active .nav-chev { color: var(--yellow); }

  /* ---- Footer del panel: CTAs ---- */
  .nav-foot {
    display: block;
    margin-top: auto;
    padding: 22px 24px 32px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
  }
  .nav-foot-label {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    text-align: center;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 16px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: 0 12px 28px -10px rgba(245,196,0,.55);
  }
  .nav-cta svg { width: 17px; height: 17px; }
  .nav-call {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.18);
    text-transform: uppercase;
    transition: background .2s, color .2s, border-color .2s;
  }
  .nav-call svg { width: 18px; height: 18px; color: var(--yellow); }
  .nav-call span { font-weight: 700; font-size: 13px; letter-spacing: 1px; }
  .nav-call small {
    font-size: 11.5px;
    letter-spacing: .5px;
    color: rgba(255,255,255,.5);
    text-transform: none;
    font-weight: 500;
  }
  .nav-call:hover { background: rgba(245,196,0,.08); border-color: var(--yellow); color: var(--yellow); }
  .nav-call:hover small { color: rgba(245,196,0,.7); }

  /* ---- Backdrop ---- */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(3, 11, 28, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

  /* ---- Resto de secciones ---- */
  .cards-pair .grid { grid-template-columns: 1fr; }
  .feature-card ul { max-width: 100%; }
  .feature-card { padding: 28px 28px; min-height: auto; }

  /* ---- ¿POR QUÉ CONFIAR? — 2 cols en tablet ---- */
  .trust { padding: 60px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

  /* ---- Páginas internas ---- */
  .svc-grid { grid-template-columns: 1fr; }
  .svc-strip .grid { grid-template-columns: repeat(2, 1fr); }
  .brands__row { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .inventory__grid { grid-template-columns: repeat(2, 1fr); }
  .filter-card { grid-template-columns: 1fr 1fr; }
  .filter-card .btn { grid-column: 1 / -1; }
  .sell-banner { padding: 40px 0; }
  .sell-banner__grid { grid-template-columns: 1fr; gap: 22px; }
  .sell-banner__content,
  .sell-banner__bullets { padding: 0; }
  .sell-banner__bullets { min-width: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .page-hero__inner { padding-top: 20px; padding-bottom: 44px; }
  .page-hero__media { min-height: 320px; }

  /* Contacto */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrap { padding: 28px 22px; }
  .hours-strip .grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .map-frame { height: 340px; }

  /* ---- ¿CÓMO FUNCIONA? — timeline vertical en móvil ---- */
  .steps { grid-template-columns: 1fr; gap: 56px; padding: 0; }
  .step { padding: 0; }
  .step-arrow { display: none; }
  .step:not(:last-child) .step-circle-wrap::after { display: none; }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -42px;
    width: 0;
    height: 28px;
    border-left: 2px dashed var(--yellow);
    opacity: .7;
  }

  /* ---- Centrar titulares y heads en móvil ---- */
  .featured-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .featured-head h2 { width: 100%; text-align: center; }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-actions { justify-content: center; }

  /* ---- FOOTER centrado en móvil ---- */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    justify-items: center;
    text-align: center;
  }
  .footer-brand { grid-column: 1 / -1; }
  .brand--footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-desc { margin-left: auto; margin-right: auto; max-width: 320px; }
  .socials { justify-content: center; }
  .footer-col { width: 100%; }
  .footer-col h4 { text-align: center; }
  .footer-col ul { justify-items: center; }
  .footer-col li { justify-content: center; }
  .footer-links li a { padding-left: 0 !important; }
  .footer-links li a:hover { padding-left: 0 !important; color: var(--yellow); }

  .wa-help {
    grid-column: 1 / -1;
    max-width: 420px;
    width: 100%;
    text-align: left;
  }
  .wa-help-head { justify-content: flex-start; }

  .footer-copy { text-align: center; }

  .hero { min-height: 540px; }
  .hero::before {
    background-position: 70% center;
    background-image:
      linear-gradient(180deg, rgba(6,27,58,.85) 0%, rgba(6,27,58,.92) 100%),
      url('../img/hero-team.jpg');
  }
  .hero-bullets { grid-template-columns: 1fr 1fr; gap: 18px; }
}

@media (max-width: 560px) {
  .header-inner { padding: 10px 16px; }
  .brand-mark { font-size: 24px; }
  .brand-crane { width: 22px; height: 22px; }
  .brand-tag { font-size: 7px; letter-spacing: 1.6px; }

  .steps { grid-template-columns: 1fr; gap: 36px; }
  .hero-bullets { grid-template-columns: 1fr; gap: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .svc-strip .grid { grid-template-columns: 1fr; }
  .brands__row { grid-template-columns: repeat(2, 1fr); }
  .inventory__grid { grid-template-columns: 1fr; }
  .filter-card { grid-template-columns: 1fr; }
  .filter-card .btn { grid-column: 1; }
  .page-hero__bullets { gap: 12px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hours-strip .grid { grid-template-columns: 1fr; }
  .map-frame { height: 280px; border-radius: 12px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .car-prev { left: 4px; }
  .car-next { right: 4px; }

  /* WhatsApp flotante un poco más pequeño */
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (max-width: 380px) {
  .brand-tag { display: none; }
}

/* ===========================================================
   RENTA — Tipos de equipo (catálogo informativo)
   =========================================================== */
.equip { padding: 64px 0 44px; background: var(--white); }
.equip .section-title { text-align: center; margin-bottom: 12px; }
.equip .section-title::after {
  content: ''; display: block; width: 56px; height: 3px;
  background: var(--yellow); margin: 14px auto 0; border-radius: 2px;
}
.equip__sub {
  text-align: center; color: var(--gray-600); font-size: 15px;
  line-height: 1.55; max-width: 620px; margin: 0 auto 30px;
}

/* Etiqueta de grupo con líneas a los lados */
.equip-group-label { display: flex; align-items: center; gap: 16px; margin: 34px 0 22px; }
.equip-group-label::before, .equip-group-label::after { content: ''; height: 1px; background: var(--gray-200); flex: 1; }
.equip-group-label span {
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--blue-900); text-transform: uppercase;
}

.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.equip-grid--cols { margin-top: 26px; align-items: stretch; }

/* Columna con su propia etiqueta (fila 2) */
.equip-col { display: flex; flex-direction: column; }
.equip-col__label { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.equip-col__label::before, .equip-col__label::after { content: ''; height: 1px; background: var(--gray-200); flex: 1; }
.equip-col__label span {
  font-size: 11px; font-weight: 800; letter-spacing: .8px;
  color: var(--blue-900); text-transform: uppercase; white-space: nowrap;
}
.equip-col .equip-card { flex: 1; }

/* Tarjeta de equipo */
.equip-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 14px;
  text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.equip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.equip-card__media {
  aspect-ratio: 16 / 10; border-radius: 10px;
  background: var(--gray-100) center / cover no-repeat; margin-bottom: 16px;
}
.equip-card__body { display: flex; flex-direction: column; flex: 1; padding: 0 4px 4px; }
.equip-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.equip-icon {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%;
  background: var(--blue-900); color: var(--yellow);
  display: grid; place-items: center;
}
.equip-icon svg { width: 22px; height: 22px; }
.equip-card__title {
  font-size: 15px; font-weight: 800; color: var(--blue-900);
  text-transform: uppercase; letter-spacing: -.2px; line-height: 1.15; margin: 0;
}
.equip-card__title--alt { text-transform: none; font-size: 14.5px; margin: 0 0 8px; }
.equip-card__tag { font-size: 12.5px; font-weight: 700; color: var(--gray-600); }
.equip-card__desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin: 0 0 14px; }
.equip-card__ask { font-size: 13px; font-weight: 800; color: var(--blue-900); margin: -6px 0 14px; }
.equip-card__cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 800; letter-spacing: .3px;
  color: var(--blue-900); text-transform: uppercase;
  transition: color .2s;
}
.equip-card__cta svg { width: 15px; height: 15px; color: #25D366; transition: transform .2s; }
.equip-card:hover .equip-card__cta { color: #128C3F; }
.equip-card:hover .equip-card__cta svg { transform: scale(1.1); }

/* Fila de íconos del transporte */
.equip-transport { display: flex; gap: 6px; margin-bottom: 12px; }
.equip-transport__item { flex: 1; text-align: center; }
.equip-transport__item svg { width: 30px; height: 22px; color: var(--blue-900); display: block; margin: 0 auto 4px; }
.equip-transport__item span { font-size: 10px; font-weight: 700; color: var(--gray-600); }

/* ---- CTA strip: 3 features + caja WhatsApp ---- */
.equip-cta { padding: 6px 0 64px; background: var(--white); }
.equip-cta__grid {
  display: grid; grid-template-columns: 1.7fr 1fr;
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card);
}
.equip-cta__features {
  background: var(--gray-100); padding: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-content: center;
}
.equip-cta__feature { display: flex; flex-direction: column; gap: 8px; }
.equip-cta__feature .ic {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--white); color: var(--blue-900);
  display: grid; place-items: center; box-shadow: 0 6px 16px -8px rgba(6,27,58,.3);
}
.equip-cta__feature .ic svg { width: 22px; height: 22px; }
.equip-cta__feature h4 { font-size: 12.5px; font-weight: 800; text-transform: uppercase; color: var(--blue-900); margin: 0; letter-spacing: .3px; }
.equip-cta__feature p { font-size: 12px; color: var(--gray-600); margin: 0; line-height: 1.45; }
.equip-cta__box {
  background: var(--blue-900); color: var(--white);
  padding: 30px 28px; display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.equip-cta__box h3 { font-size: 16px; font-weight: 800; margin: 0; line-height: 1.25; display: flex; align-items: flex-start; gap: 10px; }
.equip-cta__wa { color: #25D366; flex: 0 0 auto; }
.equip-cta__wa svg { width: 22px; height: 22px; }
.equip-cta__box p { font-size: 13px; color: rgba(255,255,255,.7); margin: 0 0 6px; line-height: 1.45; }
.equip-cta__box .btn { align-self: flex-start; }
.equip-cta__box .btn svg { width: 16px; height: 16px; }

/* ---- Responsivo ---- */
@media (max-width: 980px) {
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .equip-cta__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .equip-grid { grid-template-columns: 1fr; }
  .equip-cta__features { grid-template-columns: 1fr; gap: 20px; }
}
