:root {
  --font-main: "DM Sans", Arial, Helvetica, sans-serif;
  --ink: #17202c;
  --muted: #637083;
  --line: #dce3ec;
  --panel: #ffffff;
  --wash: #f3f6fa;
  --wash-strong: #e9eef5;
  --blue: #1c5a98;
  --blue-deep: #123f70;
  --red: #d74439;
  --yellow: #f4bf28;
  --green: #4f8b72;
  --shadow: 0 24px 70px rgba(23, 32, 44, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[data-parallax] {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(220, 227, 236, 0.85);
  box-shadow: 0 12px 36px rgba(23, 32, 44, 0.06);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 74px;
  height: auto;
}

.brand-name {
  display: grid;
  gap: 1px;
  color: var(--ink);
  line-height: 1;
}

.brand-name strong {
  font-size: 1.1rem;
  font-weight: 900;
}

.brand-name span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: #243142;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(28, 90, 152, 0.2);
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-outline {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-yellow {
  color: #17202c;
  background: var(--yellow);
}

.btn-light {
  color: #17202c;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-red {
  background: var(--red);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 3px;
  content: "";
  background: var(--yellow);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 16, 24, 0.8) 0%, rgba(10, 16, 24, 0.56) 42%, rgba(10, 16, 24, 0.14) 100%),
    var(--hero-bg, url("../img/hero-flota.jpg")) center / cover no-repeat;
  transform: scale(1.04);
  animation: headerDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(10, 16, 24, 0.32));
}

@keyframes headerDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-18px, -10px, 0);
  }
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 82px);
  padding: 42px 0 34px;
}

.hero-fullscreen {
  min-height: calc(100vh - 82px);
  color: #fff;
}

.hero-fullscreen::before {
  background:
    linear-gradient(90deg, rgba(10, 16, 24, 0.82) 0%, rgba(10, 16, 24, 0.58) 38%, rgba(10, 16, 24, 0.04) 100%),
    var(--hero-bg, url("../img/slider-stock-industrial.jpg")) center / cover no-repeat;
}

.hero-fullscreen .hero-slider {
  min-height: calc(100vh - 82px);
}

.hero-fullscreen .hero-slide {
  min-height: calc(100vh - 82px);
  align-items: end;
  padding: clamp(80px, 12vh, 130px) 0 104px;
}

.hero-fullscreen .hero-slide.is-active {
  display: block;
}

.hero-fullscreen-inner {
  display: grid;
  min-height: calc(100vh - 82px - 190px);
  align-items: end;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 0.82fr) minmax(450px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4.2vw, 64px);
}

.hero-slide.is-active {
  display: grid;
  animation: heroIn 520ms ease both;
}

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

.hero-copy {
  display: grid;
  gap: 20px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(23, 32, 44, 0.1);
  backdrop-filter: blur(18px) saturate(135%);
}

.hero-fullscreen .hero-copy {
  max-width: 860px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-fullscreen .hero-kicker {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-fullscreen h1,
.hero-fullscreen h2,
.hero-fullscreen p {
  color: #fff;
}

.hero-fullscreen h1,
.hero-fullscreen .hero-copy h2 {
  max-width: 880px;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.98;
  font-weight: 800;
}

.hero-fullscreen .hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-copy h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
  max-width: 920px;
}

.hero-copy p {
  max-width: 670px;
  color: #4f5c6e;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 8px;
}

.stat {
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(23, 32, 44, 0.06);
  backdrop-filter: blur(18px) saturate(135%);
}

.stat strong {
  display: block;
  color: var(--blue-deep);
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 575px;
}

.hero-main-image {
  position: absolute;
  inset: 32px 0 64px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(130%);
}

.hero-main-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255,255,255,0.16), transparent 42%), linear-gradient(0deg, rgba(255,255,255,0.2), transparent 36%);
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: min(340px, 72%);
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(140%);
}

.hero-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

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

.hero-thumb {
  position: absolute;
  bottom: 24px;
  left: -34px;
  width: 190px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(23, 32, 44, 0.18);
  backdrop-filter: blur(12px);
}

.hero-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.hero-fullscreen .hero-controls {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 64px);
  bottom: 54px;
  margin: 0;
}

.hero-dot {
  width: 42px;
  height: 7px;
  padding: 0;
  cursor: pointer;
  background: #c7d1df;
  border: 0;
  border-radius: 999px;
}

.hero-dot.is-active {
  width: 74px;
  background: var(--blue);
}

.hero-fullscreen .hero-dot {
  width: 34px;
  height: 4px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-fullscreen .hero-dot.is-active {
  width: 70px;
  background: var(--yellow);
}

.hero-counter {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 92px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #fff;
  font-weight: 800;
}

.hero-counter .hero-current {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}

.hero-counter span:last-child {
  font-size: 1.5rem;
}

.section {
  padding: clamp(72px, 10vw, 126px) 0;
}

.section-soft {
  background: var(--wash);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head p {
  font-size: 1.08rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.project-card,
.value-card,
.office-card,
.process-step {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(23, 32, 44, 0.06);
}

.service-card,
.project-card,
.process-step {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  backdrop-filter: blur(14px) saturate(120%);
}

.service-card {
  min-height: 390px;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.service-card small,
.project-card small,
.case-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

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

.media-stack img {
  position: absolute;
  width: 72%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-stack img:first-child {
  top: 0;
  left: 0;
}

.media-stack img:last-child {
  right: 0;
  bottom: 0;
  border: 10px solid #fff;
}

.copy-stack {
  display: grid;
  gap: 24px;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #3c4858;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  font-size: 0.78rem;
  content: "✓";
  background: var(--green);
  border-radius: 50%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.process-step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  font-weight: 800;
  background: var(--yellow);
  border-radius: 50%;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.logo-tile {
  display: grid;
  min-height: 96px;
  padding: 18px;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.logo-tile img {
  max-height: 54px;
  object-fit: contain;
}

.cta-band {
  padding: 34px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.84), rgba(247, 249, 252, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-left: 8px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(135%);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 54px;
  background: #fff;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.3) 100%),
    var(--page-hero-image, url("../img/hero-flota.jpg")) center / cover no-repeat;
  transform: scale(1.04);
  animation: headerDrift 18s ease-in-out infinite alternate;
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(243, 246, 250, 0.86));
}

.page-hero-services {
  --page-hero-image: url("../img/servicio-industrial.jpg");
}

.page-hero-projects {
  --page-hero-image: url("../img/proyecto-altura-foco.jpg");
}

.page-hero-company {
  --page-hero-image: url("../img/empresa-flota.jpg");
}

.page-hero-values {
  --page-hero-image: url("../img/proyecto-altura-grua.jpg");
}

.page-hero-contact {
  --page-hero-image: url("../img/empresa-flota.jpg");
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: 48px;
  align-items: end;
}

.page-hero-inner > div:first-child {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(23, 32, 44, 0.1);
  backdrop-filter: blur(18px) saturate(135%);
}

.page-hero p {
  margin-top: 22px;
  font-size: 1.14rem;
}

.hero-meter {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(135%);
}

.meter-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.meter-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.meter-row strong {
  color: var(--blue-deep);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 22px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.service-detail-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 12px 10px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 11px;
  color: #344154;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-bar button {
  min-height: 42px;
  padding: 0 15px;
  color: #344154;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-bar button.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.about-panel img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.value-grid,
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-card,
.office-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.value-card span {
  color: var(--red);
  font-weight: 900;
}

.office-card strong {
  color: var(--blue-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(130%);
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header,
  .stat,
  .hero-main-image,
  .hero-card,
  .hero-thumb,
  .hero-copy,
  .page-hero-inner > div:first-child,
  .service-card,
  .project-card,
  .process-step,
  .cta-band,
  .hero-meter,
  .contact-form,
  .footer-brand-panel,
  .footer-cert-panel,
  .footer-office,
  .footer-links {
    background: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .page-hero::before {
    animation: none;
  }

  [data-parallax] {
    transform: none;
  }
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #344154;
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 46px 0 22px;
  background: #f7f9fc;
  border-top: 1px solid var(--line);
}

.site-footer::before {
  content: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 1.35fr) minmax(220px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.footer-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.footer-brand-panel,
.footer-cert-panel,
.footer-office,
.footer-links {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-brand-panel {
  display: grid;
  gap: 16px;
  padding: 0;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand-lockup img {
  width: 72px;
}

.footer-brand-lockup strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.footer-brand-lockup span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand-panel p {
  max-width: 720px;
  font-size: 0.98rem;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-cert-panel {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
  padding: 0;
}

.footer-cert-panel img {
  max-width: 118px;
  max-height: 76px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.footer-cert-panel strong {
  color: var(--blue-deep);
  font-size: 0.98rem;
}

.footer-office-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.footer-office {
  display: grid;
  gap: 7px;
  padding: 0;
}

.footer-office small {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-office strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.footer-office a {
  color: var(--blue-deep);
  font-weight: 800;
}

.footer-lower {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.footer-links {
  padding: 0;
}

.footer-links h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  margin-top: 4px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: block;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(140%);
  }

  .site-nav ul {
    display: grid;
    gap: 14px;
  }

  .hero-slide,
  .split,
  .page-hero-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .service-strip,
  .process-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-head,
  .service-detail,
  .about-panel,
  .value-grid,
  .office-grid,
  .footer-hero,
  .footer-office-grid,
  .footer-lower,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 58px;
  }

  .brand-name strong {
    font-size: 0.98rem;
  }

  .brand-name span {
    font-size: 0.64rem;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-shell {
    min-height: auto;
    padding-top: 40px;
  }

  .hero::before,
  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 62%, rgba(255, 255, 255, 0.7) 100%),
      var(--page-hero-image, url("../img/hero-flota.jpg")) center / cover no-repeat;
  }

  .hero-fullscreen::before {
    background:
      linear-gradient(180deg, rgba(10, 16, 24, 0.72) 0%, rgba(10, 16, 24, 0.56) 62%, rgba(10, 16, 24, 0.82) 100%),
      var(--hero-bg, url("../img/slider-stock-industrial.jpg")) center / cover no-repeat;
  }

  .hero-fullscreen,
  .hero-fullscreen .hero-slider,
  .hero-fullscreen .hero-slide {
    min-height: calc(100vh - 82px);
  }

  .hero-fullscreen .hero-slide {
    padding: 74px 0 132px;
  }

  .hero-fullscreen-inner {
    min-height: calc(100vh - 82px - 206px);
  }

  .hero-fullscreen h1,
  .hero-fullscreen .hero-copy h2 {
    font-size: clamp(2.45rem, 12vw, 4.1rem);
  }

  .hero-fullscreen .hero-controls {
    right: 20px;
    bottom: 42px;
    left: 20px;
  }

  .hero-counter {
    right: 20px;
    bottom: 74px;
  }

  .hero-copy,
  .page-hero-inner > div:first-child {
    padding: 20px;
  }

  .service-strip,
  .process-grid,
  .project-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stat {
    min-height: 96px;
    padding: 12px 10px;
  }

  .stat strong {
    font-size: 1.55rem;
  }

  .stat span {
    font-size: 0.72rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  [data-parallax] {
    transform: none;
  }

  .hero-main-image {
    inset: 0 0 48px 0;
  }

  .hero-thumb {
    left: 12px;
    width: 128px;
    border-width: 6px;
  }

  .hero-card {
    right: 12px;
    width: min(300px, 82%);
    padding: 18px;
  }

  .media-stack {
    min-height: 420px;
  }

  .media-stack img {
    width: 82%;
    height: 280px;
  }

  .service-detail {
    padding: 14px;
  }

  .service-detail img {
    min-height: 230px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-brand-lockup {
    align-items: flex-start;
  }

  .footer-brand-lockup img {
    width: 64px;
  }

  .footer-hero,
  .footer-office-grid,
  .footer-lower {
    gap: 12px;
  }

  .footer-hero,
  .footer-office-grid {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}
