/* =========================================================
   Patagon Cargo — landing SEO First
   Azul petróleo + naranja · tipografía Sora + Figtree
   ========================================================= */

:root {
  --navy: #0b1f33;
  --navy-deep: #071522;
  --navy-mid: #14304a;
  --orange: #f05a28;
  --orange-hot: #ff6a33;
  --orange-deep: #d4471a;
  --peach: #f6ebe3;
  --peach-soft: #faf4ef;
  --sand: #efe6dc;
  --ink: #14202b;
  --muted: #5b6b78;
  --line: rgba(11, 31, 51, 0.12);
  --white: #ffffff;
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --shadow: 0 24px 60px rgba(7, 21, 34, 0.18);
  --container: 72rem;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(240, 90, 40, 0.07), transparent 55%),
    radial-gradient(900px 420px at 100% 8%, rgba(11, 31, 51, 0.06), transparent 50%),
    var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 650; }

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-accent {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(240, 90, 40, 0.35);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #ff7a45, var(--orange-deep));
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-mid);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.9rem;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.accent {
  color: var(--orange);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-head.split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.section-head.split h2 {
  max-width: 28rem;
  margin-bottom: 0;
}

.section-lead {
  color: var(--muted);
  margin: 0.75rem 0 0;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 21, 34, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: clamp(1rem, 2vw, 2.25rem);
  width: min(100% - 2rem, 82rem);
}

.site-header .container.header-inner {
  width: min(100% - 2rem, 82rem);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  z-index: 2;
  flex-shrink: 0;
}

.logo-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.45rem;
  background:
    linear-gradient(135deg, var(--orange-hot), var(--orange-deep));
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 28% 22% 22% 28%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 0.2rem;
  border-top-width: 3px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.logo-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.72;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -0.1rem;
}

.nav-principal {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.nav-principal ul {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.1rem, 2.4vw, 2.75rem);
  padding-inline: clamp(0.5rem, 1.5vw, 1.5rem);
}

.nav-principal a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-principal a:hover {
  color: var(--white);
}

.btn-header {
  padding: 0.7rem 1.1rem;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0.7rem;
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 18s var(--ease) forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 34, 0.55) 0%, rgba(7, 21, 34, 0.28) 38%, rgba(7, 21, 34, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 21, 34, 0.55) 0%, transparent 55%);
}

.hero-content {
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  max-width: 52rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-hot);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  color: #fff;
  max-width: min(18ch, 100%);
  margin-bottom: 1.1rem;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-lead {
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-strip {
  background: rgba(7, 21, 34, 0.72);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: rise 1s 0.15s var(--ease) both;
}

.hero-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.hero-strip p {
  margin: 0;
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.strip-link {
  color: var(--orange-hot);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
}

.strip-link:hover {
  color: #ffb08f;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  max-width: 38rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0.75rem;
  max-width: 26rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0;
  line-height: 1;
}

.stat-label {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.stat-note {
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.85;
}

.about-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-figure:hover img {
  transform: scale(1.04);
}

/* ---------- Services accordion ---------- */

.services {
  background:
    linear-gradient(180deg, var(--peach-soft), var(--white) 40%);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  border-bottom: 1px solid var(--line);
}

.service-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0.25rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.service-trigger:hover h3,
.service-item.is-open .service-trigger h3 {
  color: var(--orange);
}

.service-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-trigger h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  transition: color 0.2s ease;
}

.service-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--navy);
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.service-item.is-open .service-icon {
  transform: rotate(90deg);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.service-panel[hidden] {
  display: none;
}

.service-panel-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  padding: 0 0 1.75rem;
  animation: panel-in 0.45s var(--ease);
}

.service-visual {
  position: relative;
}

.service-panel img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.clients-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.avatars {
  display: flex;
}

.avatars span {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -0.4rem;
  background: linear-gradient(135deg, #7aa2c4, #345a78);
}

.avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #f3b48a, #d46a3a); }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #9bd0b4, #3f8f6e); }

.clients-chip p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.service-detail p {
  color: var(--muted);
}

.service-stat {
  margin: 1.25rem 0 1.5rem;
}

.service-stat-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  color: var(--navy);
}

.service-stat-label {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Coverage ---------- */

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.coverage-grid a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 7.5rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.25s ease;
}

.coverage-grid a::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 90, 40, 0.35), transparent 70%);
}

.coverage-grid a:hover {
  transform: translateY(-4px);
  background: var(--navy-mid);
}

.coverage-grid span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.coverage-grid em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--orange-hot);
  position: relative;
  z-index: 1;
}

/* ---------- Reasons ---------- */

.reasons {
  background: var(--peach);
}

.reasons-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.reasons-list li {
  padding-top: 0;
  border-top: none;
}

.reasons-list-6 li {
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 31, 51, 0.08);
}

.reason-icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  background: var(--navy);
  color: var(--orange-hot);
}

.reason-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.reasons-list h3 {
  margin-bottom: 0.5rem;
}

.reasons-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- Company ---------- */

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.company-grid p {
  color: var(--muted);
}

.company-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

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

/* ---------- Testimonial ---------- */

.testimonial-card {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  background:
    linear-gradient(160deg, #f8ebe2 0%, #f3ddd0 100%);
  border-radius: calc(var(--radius) + 0.35rem);
}

.testimonial-card blockquote {
  margin: 1.25rem 0 1.5rem;
}

.testimonial-card blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-role {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--peach-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-intro p {
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 2.2rem 1.1rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 31, 51, 0.06);
  color: var(--navy);
  font-size: 1.1rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s var(--ease);
}

.faq-list details[open] summary::after {
  content: "–";
  background: var(--orange);
  color: var(--white);
}

.faq-list details p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 40rem;
}

/* ---------- Quote form ---------- */

.quote {
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(240, 90, 40, 0.08), transparent 60%),
    var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.quote-copy p {
  color: var(--muted);
}

.quote-points {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.7rem;
}

.quote-points li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--navy);
  font-weight: 550;
}

.quote-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--orange);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 20px 50px rgba(11, 31, 51, 0.08);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.form-row label span {
  color: var(--orange);
}

.form-row label .optional {
  color: var(--muted);
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 0.85rem;
  background: #fbfcfd;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.15);
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0.5rem 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.consent input {
  margin-top: 0.25rem;
  accent-color: var(--orange);
}

.consent a {
  color: var(--navy);
}

/* ---------- Blog ---------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.blog-card a {
  display: block;
  text-decoration: none;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: transform 0.5s var(--ease);
}

.blog-card a:hover img {
  transform: scale(1.02);
}

.blog-card h3 {
  font-size: 1.15rem;
  max-width: 18ch;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}

.footer-cta {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.footer-cta h2 {
  color: var(--white);
  margin: 0;
  max-width: 16ch;
}

.footer-main {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.6rem;
}

.footer-tag,
.footer-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-main h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-list {
  display: grid;
  gap: 0.55rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--orange-hot);
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1 1 10rem;
  min-width: 0;
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-legal a:hover,
.back-top:hover {
  color: var(--orange-hot);
}

/* ---------- WhatsApp float ---------- */

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ---------- Animations ---------- */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .about-grid,
  .company-grid,
  .faq-grid,
  .quote-grid,
  .service-panel-inner {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons-list,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-figure {
    max-width: none;
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 640px) {
  .hero-strip-inner,
  .footer-cta-inner,
  .form-row.two,
  .reasons-list,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .service-trigger {
    grid-template-columns: 2.4rem 1fr auto;
    gap: 0.7rem;
  }

  .clients-chip {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
  }
}

.logo-img {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img img {
  height: 2.6rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-trust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.08rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  line-height: 1.15;
}

.logo-trust-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.logo-trust-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-tagline {
  margin: -0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}

.hero-strip a {
  color: var(--orange-hot);
  text-decoration: none;
}

.about-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.phone-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.phone-pill span {
  font-size: 0.8rem;
  opacity: 0.7;
}

.phone-pill strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 1rem;
}

.form-row select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 0.85rem;
  background: #fbfcfd;
  color: var(--ink);
}

.form-row select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.15);
}

.service-cards-home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-tile {
  padding: 0;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.35);
  box-shadow: 0 18px 40px rgba(7, 21, 34, 0.12);
}

.service-tile-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.service-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.service-tile:hover .service-tile-media img {
  transform: scale(1.06);
}

.service-tile-body {
  padding: 1.25rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-tile h3 {
  font-size: 1.15rem;
}

.service-tile p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.service-tile a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange);
  text-decoration: none;
}

/* ---------- Flota mosaic ---------- */

.fleet {
  background:
    linear-gradient(180deg, var(--peach-soft) 0%, var(--white) 55%);
}

.section-head-fleet {
  max-width: 40rem;
}

.fleet-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(11rem, 14vw);
  gap: 0.85rem;
}

.fleet-shot {
  position: relative;
  margin: 0;
  grid-column: span 4;
  border-radius: calc(var(--radius) - 0.15rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
  box-shadow: 0 16px 40px rgba(7, 21, 34, 0.14);
}

.fleet-shot--hero {
  grid-column: span 8;
  grid-row: span 2;
}

.fleet-shot--tall {
  grid-column: span 4;
  grid-row: span 2;
}

.fleet-shot--wide {
  grid-column: span 8;
}

.fleet-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.fleet-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7, 21, 34, 0.78) 100%);
  pointer-events: none;
  z-index: 1;
}

.fleet-shot figcaption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.05rem;
  z-index: 2;
  color: var(--white);
  display: grid;
  gap: 0.25rem;
}

.fleet-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-hot);
}

.fleet-shot figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fleet-shot:hover img {
  transform: scale(1.05);
}

.fleet-note {
  margin: 1.75rem 0 0;
  display: flex;
  justify-content: center;
}

.reasons-list-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reasons-close {
  margin: 2rem 0 0;
  max-width: 44rem;
  color: var(--muted);
}

.indicator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.indicator-grid li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  min-height: 8.5rem;
  padding: 1.2rem 1.2rem 1.15rem;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06), transparent 42%),
    linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 32px rgba(7, 21, 34, 0.2);
  overflow: hidden;
  transition: transform 0.28s var(--ease), border-color 0.28s ease, box-shadow 0.28s ease;
}

.indicator-grid li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
}

.indicator-grid li::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -35%;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 90, 40, 0.22), transparent 68%);
  pointer-events: none;
}

.indicator-grid li:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.4);
  box-shadow: 0 20px 40px rgba(7, 21, 34, 0.28);
}

.indicator-kicker {
  margin: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.indicator-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange-hot);
  position: relative;
  z-index: 1;
}

.indicator-label {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 1;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.founder-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

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

.founder-quote {
  margin: 0 0 1.5rem;
}

.founder-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.founder-sign {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.founder-sign img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.founder-avatar-logo {
  object-fit: contain;
  background: var(--navy);
  padding: 0.45rem;
  filter: brightness(0) invert(1);
}

.founder-name {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.founder-role {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.coverage-note {
  margin: 1.25rem 0 0;
}

.coverage-note a {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
}

.final-cta {
  background:
    linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: var(--white);
}

.final-cta-inner {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 980px) {
  .about-form-grid,
  .founder-grid,
  .reasons-list-6,
  .indicator-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about-form-grid,
  .founder-grid,
  .reasons-list-6 {
    grid-template-columns: 1fr;
  }
}

.about-intro-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.about-intro-grid .about-figure {
  aspect-ratio: 4 / 5;
  max-width: 28rem;
  margin-left: auto;
}

.route-cards-seo {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-cards-seo .route-card {
  display: flex;
  flex-direction: column;
}

.route-cards-seo .route-cta {
  margin-top: auto;
  padding-top: 0.9rem;
  text-decoration: none;
}

.company-block {
  background: var(--peach-soft);
}

.company-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.company-prose {
  height: 100%;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(7, 21, 34, 0.06);
}

.company-prose p:last-child {
  margin-bottom: 0;
}

.founder-in-company {
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .about-intro-grid,
  .company-body,
  .route-cards-seo {
    grid-template-columns: 1fr;
  }

  .route-cards-seo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-intro-grid .about-figure {
    max-width: none;
    margin-left: 0;
    aspect-ratio: 16 / 11;
  }

  .company-prose {
    padding: 1.35rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .about-intro-grid,
  .company-body,
  .route-cards-seo {
    grid-template-columns: 1fr;
  }

  .company-prose {
    padding: 1.2rem 1.1rem;
  }
}

/* ---------- Inner pages ---------- */

body.page-inner .site-header {
  background: rgba(7, 21, 34, 0.94);
  backdrop-filter: blur(14px);
}

.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #1a3a58 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -40%;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 90, 40, 0.28), transparent 68%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--orange-hot);
}

.breadcrumbs span[aria-hidden="true"] {
  opacity: 0.5;
}

.page-hero h1 {
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 0.9rem;
}

.page-hero-lead {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.content-block {
  max-width: 46rem;
}

.content-block p,
.prose p {
  color: var(--muted);
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose li {
  margin-bottom: 0.4rem;
}

.service-cards {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.service-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.service-card p {
  color: var(--muted);
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.route-card {
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius-sm);
  background: var(--peach-soft);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}

.route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 90, 40, 0.35);
}

.route-card h3 {
  margin-bottom: 0.45rem;
}

.route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.route-card .route-cta {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-channels {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.contact-channels a,
.contact-channels div {
  display: block;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--peach-soft);
  border: 1px solid var(--line);
  text-decoration: none;
}

.contact-channels strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-channels span {
  color: var(--muted);
  font-size: 0.95rem;
}

.status-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) 1rem 3rem;
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(240, 90, 40, 0.12), transparent 60%),
    var(--peach-soft);
}

.status-page .status-box {
  max-width: 34rem;
}

.status-page .status-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.status-page .status-code span {
  color: var(--orange);
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

@media (max-width: 980px) {
  .service-card,
  .contact-grid,
  .route-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .route-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Responsive polish ---------- */

@media (max-width: 1200px) {
  .service-cards-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-cards-seo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-principal ul {
    gap: clamp(0.75rem, 1.4vw, 1.5rem);
    padding-inline: 0.25rem;
  }

  .nav-principal a {
    font-size: 0.88rem;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: grid;
  }

  .nav-principal {
    position: fixed;
    inset: 0 0 auto;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(7, 21, 34, 0.97);
    padding: 1.1rem 1.25rem 1.4rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    flex: none;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
  }

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

  .nav-principal ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.15rem;
    padding-inline: 0;
  }

  .nav-principal a {
    display: block;
    font-size: 1.05rem;
    padding: 0.85rem 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .btn-header {
    display: none;
  }

  .header-inner {
    gap: 0.75rem;
  }
}

@media (max-width: 980px) {
  .section {
    padding: clamp(3rem, 7vw, 4.5rem) 0;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .hero {
    min-height: min(100svh, 52rem);
  }

  .hero-content {
    padding: calc(var(--header-h) + 2.5rem) 0 2.25rem;
  }

  .hero-brand {
    letter-spacing: 0.1em;
    font-size: 0.92rem;
  }

  .hero-lead {
    font-size: 1.02rem;
    margin-bottom: 1.35rem;
  }

  .hero-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem 0;
  }

  .strip-link {
    white-space: normal;
  }

  .about-form-grid,
  .founder-grid,
  .reasons-list-6 {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(9.5rem, 26vw);
  }

  .fleet-shot {
    grid-column: span 3;
  }

  .fleet-shot--hero {
    grid-column: span 6;
    grid-row: span 2;
  }

  .fleet-shot--tall {
    grid-column: span 3;
    grid-row: span 2;
  }

  .fleet-shot--wide {
    grid-column: span 6;
  }

  .indicator-grid li {
    min-height: 7.5rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 4rem;
  }

  body {
    font-size: 1rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .site-header .container.header-inner,
  .header-inner {
    width: min(100% - 1.5rem, 82rem);
  }

  .logo-trust {
    display: none;
  }

  .logo-img img {
    height: 2.15rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: calc(var(--header-h) + 2rem) 0 1.75rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-strip p {
    font-size: 0.9rem;
  }

  .phone-pill {
    width: 100%;
    box-sizing: border-box;
  }

  .service-cards-home,
  .about-form-grid,
  .founder-grid,
  .reasons-list-6,
  .reasons-list,
  .blog-grid,
  .footer-grid,
  .coverage-grid,
  .route-cards-seo,
  .route-cards {
    grid-template-columns: 1fr;
  }

  .service-tile-body {
    padding: 1.1rem 1rem 1.2rem;
  }

  .fleet-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.7rem;
  }

  .fleet-shot,
  .fleet-shot--hero,
  .fleet-shot--tall,
  .fleet-shot--wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 11;
  }

  .fleet-shot--hero {
    aspect-ratio: 4 / 3;
  }

  .fleet-shot figcaption {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.85rem;
  }

  .indicator-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .indicator-grid li {
    min-height: 7rem;
    padding: 1rem 0.9rem 0.95rem;
  }

  .indicator-value {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .indicator-label {
    font-size: 0.82rem;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 1.15rem 1rem;
  }

  .final-cta .hero-actions {
    width: 100%;
  }

  .footer-cta-inner,
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .btn-lg {
    padding: 0.95rem 1.25rem;
  }
}

@media (max-width: 420px) {
  .indicator-grid {
    grid-template-columns: 1fr;
  }

  .indicator-grid li {
    min-height: 0;
  }

  .hero-brand {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
