/* =========================================================
   VELOZ EXPRESS — Courier en moto · Maipú
   Demo de Digital Bee · nivel esencial (one-page, sin libs)
   ========================================================= */

:root {
  /* Paleta exacta */
  --bg:      #FFFDF5;
  --surface: #FFF7D6;
  --fg:      #1A1607;
  --muted:   #6B6438;
  --accent:  #E0A400;
  --line:    #E8DCA8;

  /* Amarillo de marca: solo bloques grandes / fondos */
  --brand:      #FFD400;
  --brand-soft: #FFE873;

  /* Accent oscuro SOLO para texto chico sobre claro (AA sobre bg y surface) */
  --accent-ink: #856000;

  /* Tinta sobre amarillo de marca (alto contraste) */
  --on-brand: #1A1607;

  /* Tipografías */
  --display: "Archivo Black", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;

  /* Easing custom */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1240px;
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ====================== REVEALS (FOUC-safe) ====================== */
html.js-on [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
html.js-on [data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js-on [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .hero__ticker-track { animation: none !important; }
}

/* ====================== KICKER ====================== */
.kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.4rem;
  text-transform: none;
}
.kicker__tag {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 700;
  padding: 0.32em 0.85em;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.kicker--center { justify-content: center; text-align: center; }
.kicker--ondark { color: rgba(255,253,245,0.78); }
.kicker__tag--ondark { background: var(--brand); color: var(--on-brand); }

.hl { color: var(--accent-ink); }

/* ====================== BUTTONS ====================== */
.btn {
  --bd: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--bd);
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn span[aria-hidden] { transition: transform 0.4s var(--ease); }
.btn:hover span[aria-hidden] { transform: translateX(4px); }

.btn--solid {
  background: var(--brand);
  color: var(--on-brand);
  border-color: var(--fg);
  box-shadow: 4px 4px 0 var(--fg);
}
.btn--solid:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--fg);
}
.btn--solid:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--fg); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--ghost:hover { background: var(--fg); color: var(--brand); }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.92rem; }

.btn--wa {
  background: #25D366;
  color: #08361A;
  border-color: #0c4d28;
  box-shadow: 4px 4px 0 #0c4d28;
}
.btn--wa:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #0c4d28; }
.btn--wa:active { transform: translate(1px,1px); box-shadow: 2px 2px 0 #0c4d28; }
.btn__wa-ico { display: inline-flex; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--accent-ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 0.8rem; color: var(--fg); }

/* ====================== DEMOBAR ====================== */
.demobar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--fg);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0 1rem;
  text-align: center;
}
.demobar u { color: #fff; text-underline-offset: 2px; }
.demobar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(255,212,0,0.7);
  animation: pulse 2s infinite;
}
.demobar__arrow { transition: transform 0.3s var(--ease); }
.demobar:hover .demobar__arrow { transform: translateX(4px); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,212,0,0.7); }
  70% { box-shadow: 0 0 0 7px rgba(255,212,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,212,0,0); }
}

/* ====================== NAV ====================== */
.nav {
  position: sticky;
  top: 34px;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--pad);
  background: rgba(255,253,245,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--fg);
}
.nav__brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.nav__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--brand);
  color: var(--fg);
  border: 2px solid var(--fg);
  border-radius: 10px;
}
.nav__word {
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--fg);
}
.nav__word-x { color: var(--accent-ink); margin-left: 0.18em; }

.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  position: relative;
  padding: 0.2rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--fg);
  color: var(--brand);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--fg);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--brand); color: var(--fg); transform: translateY(-1px); }
.nav__cta-ico { transition: transform 0.3s var(--ease); }
.nav__cta:hover .nav__cta-ico { transform: translateX(3px); }

/* ====================== SECTION SHELL ====================== */
section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.nosotros, .servicios, .zona, .cotiza, .confianza {
  padding-inline: var(--pad);
}
.nosotros__head, .servicios__head, .zona__head, .cotiza__head, .confianza__head {
  max-width: var(--maxw);
  margin-inline: auto;
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 11vw, 8rem) var(--pad) 0;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, var(--brand-soft) 0%, rgba(255,232,115,0) 55%),
    radial-gradient(100% 80% at 0% 120%, var(--surface) 0%, rgba(255,247,214,0) 60%),
    var(--bg);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__road {
  position: absolute;
  right: clamp(-6rem, -4vw, -2rem);
  top: -10%;
  width: 60%;
  height: 130%;
  background:
    repeating-linear-gradient(
      150deg,
      var(--brand) 0 38px,
      transparent 38px 78px
    );
  opacity: 0.16;
  transform: skewX(-8deg);
  mask: linear-gradient(120deg, transparent, #000 40%);
  -webkit-mask: linear-gradient(120deg, transparent, #000 40%);
}
.hero__speed {
  position: absolute;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.5;
}
.hero__speed--1 { width: 220px; top: 32%; right: 8%; }
.hero__speed--2 { width: 150px; top: 40%; right: 4%; opacity: 0.32; }
.hero__speed--3 { width: 290px; top: 48%; right: 12%; opacity: 0.6; }

.hero__inner { position: relative; z-index: 1; max-width: var(--maxw); margin-inline: auto; width: 100%; }
.hero__kicker { margin-bottom: 1.6rem; }

.hero__title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 11.5vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0 0 1.6rem;
  text-transform: uppercase;
}
.hero__line { display: block; }
.hero__line--fill {
  color: var(--on-brand);
  background: var(--brand);
  display: inline-block;
  padding: 0.02em 0.28em 0.08em;
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--fg);
  margin: 0.06em 0;
}

.hero__lead {
  max-width: 46ch;
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);
  color: var(--muted);
  margin: 0 0 2.2rem;
}
.hero__lead { color: #4f4a26; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 3.2rem; }

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  border-top: 2px solid var(--line);
  padding-top: 1.7rem;
}
.hero__stats li { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__stats strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1;
  color: var(--fg);
}
.hero__stats span { font-size: 0.86rem; font-weight: 600; color: var(--muted); }

/* Ticker */
.hero__ticker {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  margin-inline: calc(var(--pad) * -1);
  background: var(--fg);
  border-block: 2px solid var(--fg);
  overflow: hidden;
  padding-block: 0.85rem;
}
.hero__ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand);
  animation: ticker 26s linear infinite;
}
.hero__ticker-track .dot { color: var(--accent); font-size: 0.7rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================== NOSOTROS ====================== */
.nosotros__statement {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0;
}
.nosotros__grid {
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.nosotros__col p { margin: 0 0 1.3rem; color: #4f4a26; }
.nosotros__col .link-arrow { margin-top: 0.4rem; }

.nosotros__pills { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.nosotros__pills li {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.35rem;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.nosotros__pills li:hover {
  transform: translateY(-3px);
  border-color: var(--fg);
  box-shadow: 5px 5px 0 var(--brand);
}
.pill__ico {
  grid-row: span 2;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand);
  color: var(--fg);
  border: 2px solid var(--fg);
  border-radius: 12px;
}
.nosotros__pills strong { font-family: var(--display); font-size: 1.08rem; align-self: end; }
.nosotros__pills span:last-child { font-size: 0.95rem; color: var(--muted); }

/* ====================== SERVICIOS ====================== */
.servicios__title, .zona__title, .cotiza__title, .confianza__title, .bee__title {
  font-family: var(--display);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}
.servicios__title { font-size: clamp(2.2rem, 6vw, 4.4rem); }

.servicios__grid {
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.svc {
  background: var(--bg);
  border: 2px solid var(--fg);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.svc::before {
  content: "";
  position: absolute;
  inset: auto -40% -55% auto;
  width: 75%; height: 75%;
  background: var(--brand-soft);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
  transform: scale(0.6);
  z-index: 0;
}
.svc:hover { transform: translateY(-5px); box-shadow: 7px 7px 0 var(--brand); }
.svc:hover::before { opacity: 0.7; transform: scale(1); }
.svc > * { position: relative; z-index: 1; }

.svc__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.svc__ico {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand);
  color: var(--fg);
  border: 2px solid var(--fg);
  border-radius: 13px;
}
.svc__price {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent-ink);
  background: var(--bg);
  border: 2px solid var(--line);
  padding: 0.32em 0.7em;
  border-radius: 999px;
}
.svc__name { font-family: var(--display); font-size: 1.35rem; line-height: 1.05; margin: 0 0 0.6rem; }
.svc__desc { font-size: 0.98rem; color: var(--muted); margin: 0 0 1.3rem; flex: 1; }
.svc__tag {
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--fg);
  background: var(--brand);
  padding: 0.35em 0.85em;
  border-radius: 999px;
}

.svc__cta-card {
  max-width: var(--maxw);
  margin: 1.1rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 1.7rem 2rem;
  transition: transform 0.4s var(--ease);
}
.svc__cta-card:hover { transform: translateY(-3px); }
.svc__cta-text { display: flex; flex-direction: column; gap: 0.3rem; }
.svc__cta-text strong { font-family: var(--display); font-size: 1.3rem; color: var(--brand); }
.svc__cta-text span { color: rgba(255,253,245,0.82); font-size: 0.98rem; }
.svc__cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700;
  background: var(--brand);
  color: var(--on-brand);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease);
}
.svc__cta-card:hover .svc__cta-btn { transform: translateX(4px); }

/* ====================== CONFIANZA (bloque oscuro) ====================== */
.confianza {
  background: var(--fg);
  color: var(--bg);
}
.confianza__title { color: var(--bg); font-size: clamp(2rem, 5.5vw, 4rem); }
.confianza .hl { color: var(--brand); }

.confianza__grid {
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.quote {
  margin: 0;
  background: rgba(255,253,245,0.04);
  border: 2px solid rgba(255,212,0,0.35);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.quote:hover { transform: translateY(-4px); border-color: var(--brand); }
.quote__text { margin: 0; font-size: 1.05rem; line-height: 1.55; color: #FFF8DC; }
.quote__by { display: flex; align-items: center; gap: 0.85rem; }
.quote__av {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand);
  color: var(--on-brand);
  font-family: var(--display);
  font-size: 0.95rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.quote__by > span:last-child { display: flex; flex-direction: column; }
.quote__by strong { font-size: 0.98rem; color: var(--bg); }
.quote__by span span { font-size: 0.85rem; color: rgba(255,253,245,0.62); }

.confianza__metrics {
  max-width: var(--maxw);
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  list-style: none;
  padding: 1.8rem 0 0;
  border-top: 2px solid rgba(255,212,0,0.3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.confianza__metrics li { display: flex; flex-direction: column; gap: 0.25rem; }
.confianza__metrics strong { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--brand); line-height: 1; }
.confianza__metrics span { font-size: 0.85rem; font-weight: 600; color: rgba(255,253,245,0.7); }

/* ====================== ZONA Y HORARIO ====================== */
.zona__title { font-size: clamp(2rem, 5.5vw, 4rem); }
.zona__grid {
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.zona__map {
  border: 2px solid var(--fg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--brand);
  --brand: #FFD400; --brand-soft: #FFE873;
}
.zona__svg { width: 100%; height: auto; display: block; }
.zona__svg-label { font-family: var(--body); font-weight: 700; font-size: 13px; fill: var(--accent-ink); }

.zona__info { display: grid; gap: 1.6rem; }
.zona__block {
  border-left: 4px solid var(--accent);
  padding-left: 1.2rem;
}
.zona__block h3 { font-family: var(--display); font-size: 1.15rem; margin: 0 0 0.5rem; }
.zona__block p { margin: 0; color: var(--muted); }
.zona__block strong { color: var(--fg); }

.zona__hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.zona__hours li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  border-bottom: 2px dotted var(--line);
  padding-bottom: 0.5rem;
}
.zona__hours span { color: var(--muted); font-weight: 600; }
.zona__hours strong { font-family: var(--display); font-size: 1rem; }

/* ====================== COTIZA (form) ====================== */
.cotiza { background: var(--surface); }
.cotiza__title { font-size: clamp(2rem, 5.5vw, 4rem); }
.cotiza__sub { max-width: 52ch; color: var(--muted); margin: 1.4rem 0 0; }

.form {
  max-width: 760px;
  margin: clamp(2.5rem, 6vw, 3.5rem) auto 0;
  background: var(--bg);
  border: 2px solid var(--fg);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--brand);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: grid;
  gap: 1.2rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form__field { display: flex; flex-direction: column; gap: 0.45rem; }
.form__field label { font-weight: 700; font-size: 0.9rem; color: var(--fg); }

.form input, .form select, .form textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 11px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: #7A7340; }
.form input:hover, .form select:hover, .form textarea:hover { border-color: var(--accent); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--fg);
  box-shadow: 4px 4px 0 var(--brand);
  background: #fffef9;
}
.form textarea { resize: vertical; min-height: 92px; }
.form select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231A1607' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.form__ok {
  margin: 0;
  background: var(--brand);
  color: var(--on-brand);
  border: 2px solid var(--fg);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-weight: 600;
}

/* ====================== BEE CTA ====================== */
.bee {
  background:
    radial-gradient(110% 120% at 50% 0%, #2a2410 0%, var(--fg) 60%);
  color: var(--bg);
  text-align: center;
}
.bee__inner { max-width: 720px; margin-inline: auto; padding-inline: var(--pad); display: flex; flex-direction: column; align-items: center; }
.bee__title { font-size: clamp(2.4rem, 7vw, 5rem); color: var(--brand); margin-bottom: 1.2rem; }
.bee__sub { color: rgba(255,253,245,0.82); max-width: 50ch; margin: 0 0 2.2rem; }

/* ====================== FOOTER ====================== */
.footer { background: var(--fg); color: var(--bg); padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2rem; }
.footer__top {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: clamp(2rem, 6vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 2px solid rgba(255,212,0,0.3);
}
.footer__word { font-family: var(--display); font-size: 1.6rem; color: var(--bg); display: inline-block; margin-bottom: 0.8rem; }
.footer__word .nav__word-x { color: var(--brand); }
.footer__brand p { color: rgba(255,253,245,0.7); max-width: 38ch; margin: 0; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__col h3 { font-family: var(--display); font-size: 0.95rem; color: var(--brand); margin: 0 0 0.7rem; text-transform: uppercase; letter-spacing: 0.03em; }
.footer__col p { color: rgba(255,253,245,0.75); margin: 0; line-height: 1.8; }
.footer__col a { border-bottom: 2px solid var(--brand); padding-bottom: 1px; transition: color 0.25s; }
.footer__col a:hover { color: var(--brand); }
.footer__bottom {
  max-width: var(--maxw);
  margin: 1.6rem auto 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,253,245,0.5);
}

/* ====================== WHATSAPP FLOAT ====================== */
.wafloat {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 180;
  width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366;
  color: #fff;
  border: 3px solid var(--fg);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--fg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wafloat:hover { transform: translate(-2px,-2px) scale(1.04); box-shadow: 6px 6px 0 var(--fg); }
.wafloat:active { transform: translate(1px,1px); box-shadow: 2px 2px 0 var(--fg); }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1000px) {
  .servicios__grid { grid-template-columns: repeat(2, 1fr); }
  .confianza__grid { grid-template-columns: 1fr; }
  .confianza__metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nosotros__grid { grid-template-columns: 1fr; }
  .zona__grid { grid-template-columns: 1fr; }
  .servicios__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .svc__cta-card { flex-direction: column; align-items: flex-start; }
  .hero__line--fill { box-shadow: 4px 4px 0 var(--fg); }
}
@media (max-width: 460px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .confianza__metrics { grid-template-columns: 1fr 1fr; }
  .nav__word { font-size: 1.02rem; }
  .hero__stats { gap: 1.3rem 2rem; }
}
