/* Transportes Tello — Rediseño 2026 | transportes-tello.com.mx */

:root {
  --navy:        #0d1b35;
  --navy-light:  #162545;
  --red:         #c41e3a;
  --red-dark:    #a01830;
  --red-light:   rgba(196, 30, 58, 0.1);
  --white:       #ffffff;
  --gray-50:     #f7f7f7;
  --gray-100:    #f0f0f0;
  --gray-200:    #e4e4e4;
  --gray-400:    #9a9a9a;
  --gray-600:    #5a5a5a;
  --gray-800:    #2a2a2a;
  --green:       #25d366;
  --cream:       #f5f2ec;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow:      0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.18);
  --header-h:    76px;
  --topbar-h:    40px;
  --transition:  0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}

/* ─── TOPBAR ──────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar__location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__mail,
.topbar__phone {
  font-weight: 600;
  transition: color var(--transition);
}

.topbar__phone { color: #fff; }
.topbar__mail:hover,
.topbar__phone:hover { color: var(--red); }

/* ─── HEADER ──────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav */
.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--gray-600);
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
  border-bottom-color: var(--red);
}

/* CTA header */
.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.header__phone:hover { color: var(--red); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.45);
}

.btn--outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: var(--gray-200);
  color: var(--gray-800);
}
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 27, 53, 0.92) 0%,
    rgba(13, 27, 53, 0.80) 55%,
    rgba(13, 27, 53, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span { color: var(--red); }

.hero__lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__badges span {
  padding: 7px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}

/* Eyebrows */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }
.eyebrow--red   { color: var(--red); }

/* ─── STRIP ───────────────────────────────────── */
.strip {
  background: var(--red);
  color: var(--white);
  padding: 32px 0;
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strip__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.strip__item svg { flex-shrink: 0; opacity: 0.9; margin-top: 2px; }

.strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.strip__item p { font-size: 0.875rem; opacity: 0.88; }

/* ─── SECTIONS ─────────────────────────────────── */
.section { padding: 88px 0; }
.section--navy  { background: var(--navy); color: rgba(255,255,255,0.8); }
.section--light { background: var(--gray-50); }
.section--cream { background: var(--cream); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-head p { color: var(--gray-600); font-size: 1.0625rem; }
.section-head p strong { color: var(--navy); }

.section-head--light h2 { color: var(--white); }
.section-head--light p  { color: rgba(255,255,255,0.65); }

/* ─── CARDS (Servicios) ───────────────────────── */
.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--red);
}

.card--accent {
  background: var(--navy);
  border-color: var(--navy);
  border-top-color: var(--red);
  color: rgba(255,255,255,0.8);
}

.card--accent:hover { border-top-color: var(--red); }
.card--accent h3  { color: var(--white); }

.card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
}

.card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--red-light);
  border-radius: var(--radius);
  color: var(--red);
  margin-bottom: 16px;
}

.card--accent .card__icon {
  background: rgba(196,30,58,0.2);
  color: #ff8fa0;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.55;
}

.card--accent p { color: rgba(255,255,255,0.65); }

.card ul li {
  font-size: 0.875rem;
  padding: 5px 0 5px 18px;
  position: relative;
  color: var(--gray-600);
  line-height: 1.45;
}

.card--accent ul li { color: rgba(255,255,255,0.7); }

.card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
  font-size: 1rem;
}

/* ─── MVV (Misión/Visión/Compromiso) ─────────── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.mvv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.mvv-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(196,30,58,0.2);
  border-radius: var(--radius);
  color: #ff8fa0;
  margin-bottom: 18px;
}

.mvv-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.mvv-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

/* Propuesta de valor */
.propuesta-valor {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0 8px;
}

.propuesta-valor__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.propuesta-valor blockquote {
  max-width: 700px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
}

/* ─── VALORES ─────────────────────────────────── */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.valor-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.valor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.valor-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--red-light);
  border-radius: 50%;
  color: var(--red);
  margin: 0 auto 16px;
}

.valor-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.valor-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ─── FLOTILLA ────────────────────────────────── */
.flotilla-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.flotilla-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.flotilla-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.flotilla-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.flotilla-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.flotilla-card:hover .flotilla-card__img img { transform: scale(1.05); }

.flotilla-card__info {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
}

.flotilla-card__info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.flotilla-card__info p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.flotilla-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.flotilla-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.flotilla-badges svg { color: var(--red); }

/* ─── POR QUÉ ELEGIRNOS ──────────────────────── */
.elegirnos-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.elegirnos__foto {
  position: relative;
  min-height: 520px;
}

.elegirnos__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.elegirnos__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,53,0.92) 40%, rgba(13,27,53,0.45) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
}

.elegirnos__overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.elegirnos__razones {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.razon {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.razon__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red-light);
  border-radius: var(--radius);
  color: var(--red);
}

.razon h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}

.razon p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }

/* ─── COBERTURA ───────────────────────────────── */
.coverage {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.coverage__hub {
  background: var(--navy);
  color: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.coverage__pulse {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 6px rgba(196,30,58,0.2);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(196,30,58,0.2); }
  50%       { box-shadow: 0 0 0 12px rgba(196,30,58,0.05); }
}

.coverage__hub strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.coverage__hub small { font-size: 0.8125rem; opacity: 0.6; }

.coverage__hub-note {
  margin-top: 16px;
  padding: 8px 14px;
  background: var(--red);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.coverage__routes-wrap { display: flex; flex-direction: column; gap: 20px; }

.coverage__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coverage__routes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.coverage__routes li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.coverage__routes li:hover {
  border-color: var(--red);
  transform: translateX(3px);
}

.coverage__routes span { font-weight: 600; color: var(--navy); display: block; }
.coverage__routes small { font-size: 0.75rem; color: var(--gray-400); }
.coverage__routes em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
}

.coverage__national {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
  flex-wrap: wrap;
}

.coverage__national svg { flex-shrink: 0; color: rgba(255,255,255,0.5); }

.coverage__national p {
  flex: 1;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  min-width: 200px;
}

.coverage__national p strong { color: var(--white); }

/* ─── CONTACTO ────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact__info > p {
  color: var(--gray-600);
  margin-bottom: 28px;
  font-size: 1.0625rem;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

a.contact-card:hover {
  border-color: var(--red);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-card--wa {
  background: rgba(37,211,102,0.06);
  border-color: rgba(37,211,102,0.3);
}

.contact-card--static {
  cursor: default;
}

.contact-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(37,211,102,0.15);
  color: #16a34a;
}

.contact-card__icon--phone { background: var(--red-light); color: var(--red); }
.contact-card__icon--email { background: rgba(59,130,246,0.1); color: #2563eb; }
.contact-card__icon--loc   { background: rgba(13,27,53,0.1); color: var(--navy); }

.contact-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 2px;
  font-weight: 500;
}

.contact-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}

.contact-card--wa strong { color: #16a34a; }
.contact-card small { display: block; font-size: 0.8rem; color: var(--gray-400); }

.contact__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.contact__hours svg { color: var(--red); }

/* Form */
.form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}

.form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  color: var(--gray-800);
  transition: border-color var(--transition), background var(--transition);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}

.form textarea { resize: vertical; min-height: 110px; }

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  margin-bottom: 4px;
}

.form__check span { font-size: 0.875rem; line-height: 1.5; }
.form__check input { width: auto; margin-top: 3px; accent-color: var(--red); }
.form__check a { color: var(--red); font-weight: 600; text-decoration: underline; }

.form__note {
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
}

.form__note a { color: var(--red); font-weight: 600; }

.form__feedback {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form__feedback.ok  { color: #16a34a; }
.form__feedback.err { color: var(--red); }

/* ─── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo-link { display: inline-block; margin-bottom: 16px; }

.footer__logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer__phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.footer__phones a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  transition: color var(--transition);
}

.footer__phones a:hover { color: #ff8fa0; }

.footer__email {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__email:hover { color: rgba(255,255,255,0.85); }

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer a:hover { color: var(--red); }

.footer__legal-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

.footer__wa-cta { margin-top: 20px; }

.footer__bottom {
  padding: 20px 0;
  font-size: 0.8125rem;
  text-align: center;
}

.footer__bottom a { display: inline; color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: var(--red); }

/* ─── WHATSAPP FLOTANTE ───────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  border-radius: 100px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float svg { width: 26px; height: 26px; }
.wa-float__label { font-weight: 700; font-size: 0.9rem; }
.wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1060px) {
  .valores-grid { grid-template-columns: repeat(3, 1fr); }
  .flotilla-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .hero__content { max-width: 100%; }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid { grid-template-columns: 1fr; }
  .elegirnos-grid { grid-template-columns: 1fr; }
  .elegirnos__foto { min-height: 320px; }
  .coverage { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: calc(var(--header-h) + var(--topbar-h));
    inset-inline: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 300;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .burger { display: flex; }
  .header__phone { display: none; }

  .cards--3,
  .form__row,
  .footer__grid  { grid-template-columns: 1fr; }

  .valores-grid  { grid-template-columns: repeat(2, 1fr); }
  .flotilla-grid { grid-template-columns: 1fr 1fr; }
  .coverage__routes { grid-template-columns: 1fr; }

  .hero { min-height: auto; }
  .hero__content { padding: 60px 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .propuesta-valor { flex-direction: column; gap: 16px; }
  .propuesta-valor__line { width: 60px; height: 2px; }

  .coverage__national { flex-direction: column; text-align: center; }

  .topbar__mail { display: none; }

  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-float__label { display: none; }

  .elegirnos__razones { padding: 28px 24px; }
}

@media (max-width: 500px) {
  .valores-grid  { grid-template-columns: 1fr; }
  .flotilla-grid { grid-template-columns: 1fr; }
  .strip__grid   { grid-template-columns: 1fr; }
  .hero__badges  { flex-direction: column; }
}
