/* ==========================================================================
   Andrettatur — Site Institucional
   Implementação do design "Andrettatur - Site Institucional.dc.html"
   ========================================================================== */

:root {
  --navy-900: #071226;
  --navy-800: #0A1B3A;
  --navy-700: #0C2148;
  --navy-650: #0D2450;
  --navy-600: #0E2450;
  --ink: #0E2240;
  --ink-soft: #22406B;
  --slate: #51617D;

  --green: #A6CE39;
  --green-dark: #8FB52C;
  --green-deep: #8FBE1F;
  --green-light: #B8DC4E;
  --green-pale: #C9E77A;
  --green-label: #6C9422;
  --green-text: #587F17;
  --green-text-dark: #3E5A0E;
  --green-check: #4F7A10;
  --green-chip: #46660D;

  --surface: #F5F8FC;
  --white: #FFFFFF;
  --road: #E3EAF4;

  --wa: #25D366;
  --wa-hover: #2BE070;

  --font-display: 'Comfortaa', 'Trebuchet MS', sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--navy-900);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
::selection { background: var(--green); color: var(--navy-900); }

img { max-width: 100%; }

.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: -9999px;
  top: 0;
  z-index: 200;
  background: var(--green);
  color: var(--navy-800);
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; color: var(--navy-800); }

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

/* --------------------------------------------------------------------------
   Animações
   -------------------------------------------------------------------------- */

@keyframes atMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes atFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes atRoad { from { background-position: 0 0; } to { background-position: -132px 0; } }
@keyframes atPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --------------------------------------------------------------------------
   Blocos compartilhados
   -------------------------------------------------------------------------- */

.wrap { max-width: 1160px; margin: 0 auto; }
.wrap--wide { max-width: 1360px; }
.wrap--narrow { max-width: 1000px; }

.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  margin-bottom: 14px;
}
.section-eyebrow--light { color: var(--green-label); }
.section-eyebrow--dark { color: var(--green); }

.section-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  text-wrap: pretty;
}
.section-title--light { color: var(--ink); }
.section-title--dark { color: var(--white); }

.section-lead {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  text-wrap: pretty;
}
.section-lead--light { color: var(--slate); }
.section-lead--dark { color: rgba(255, 255, 255, 0.72); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease,
              box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn--primary {
  background: var(--green);
  color: var(--navy-800);
  font-size: 14px;
  padding: 14px 26px;
}
.btn--primary:hover {
  background: var(--green-light);
  color: var(--navy-800);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 14px;
  padding: 13px 24px;
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(166, 206, 57, 0.07);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 18, 38, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__desktop {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 28px;
}

.header__logo { display: flex; align-items: center; }
.header__logo img { height: 58px; display: block; width: auto; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  flex-wrap: wrap;
}

.header__link {
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease;
}
.header__link:hover { color: var(--green); }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.header__cta:hover {
  background: var(--green-light);
  color: var(--navy-800);
  transform: translateY(-1px);
}

.header__mobile {
  display: none;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
}

.burger {
  width: 46px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.burger__lines { display: flex; flex-direction: column; gap: 4.5px; }
.burger__lines span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
.burger__lines span:last-child { width: 14px; background: var(--green); }

.header__logo--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo--center img { height: 42px; display: block; width: auto; }

.header__wa-round {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  justify-self: end;
}

/* --------------------------------------------------------------------------
   Menu mobile (overlay)
   -------------------------------------------------------------------------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(7, 18, 38, 0.98);
  display: none;
  flex-direction: column;
  padding: 14px 22px 30px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__top img { height: 36px; display: block; width: auto; }

.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--white);
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu__nav a:hover { color: var(--green); }

.mobile-menu__foot {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--green);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  padding: 17px 24px;
  border-radius: 999px;
}
.mobile-menu__cta:hover { background: var(--green-light); color: var(--navy-800); }
.mobile-menu__meta {
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Hero — desktop
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0A1B3A 0%, #0C2148 58%, #071226 100%);
  scroll-margin-top: var(--header-h);
}

/* <picture> é só um invólucro de formato: não deve gerar caixa própria
   (a imagem do hero desktop é posicionada em absoluto). */
.hero picture,
.hero-m__media picture { display: contents; }

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}
.hero__scrim-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 18, 38, 0.93) 0%, rgba(7, 18, 38, 0.78) 34%, rgba(7, 18, 38, 0.32) 62%, rgba(7, 18, 38, 0.12) 100%);
}
.hero__scrim-y {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 38, 0.42) 0%, rgba(7, 18, 38, 0) 30%, rgba(7, 18, 38, 0) 62%, rgba(7, 18, 38, 0.66) 100%);
}
.hero__rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(166, 206, 57, 0) 0%, rgba(166, 206, 57, 0.55) 50%, rgba(166, 206, 57, 0) 100%);
}

.hero__inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 110px 28px 150px;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; max-width: 660px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(166, 206, 57, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 26px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.hero__badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--green-pale);
}

.hero__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.13;
  color: var(--white);
  text-shadow: 0 2px 26px rgba(7, 18, 38, 0.6);
  text-wrap: pretty;
}
.hero__title em { color: var(--green); font-style: normal; }

.hero__text {
  margin: 0 0 34px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  text-shadow: 0 1px 16px rgba(7, 18, 38, 0.6);
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--hero {
  background: var(--green);
  color: var(--navy-800);
  font-size: 15px;
  padding: 16px 28px;
  box-shadow: 0 12px 30px rgba(166, 206, 57, 0.25);
}
.btn--hero:hover {
  background: var(--green-light);
  color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(166, 206, 57, 0.4);
}
.btn--hero-ghost { padding: 15px 26px; }

.hero__facts {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero__fact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   Hero — mobile
   -------------------------------------------------------------------------- */

.hero-m {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  scroll-margin-top: 66px;
  display: none;
}
.hero-m__media { position: relative; }
.hero-m__media img {
  display: block;
  width: 100%;
  height: min(94vw, 480px);
  object-fit: cover;
  object-position: center 30%;
}
.hero-m__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 27, 58, 0.25) 0%, rgba(10, 27, 58, 0) 34%, rgba(10, 27, 58, 0.55) 72%, #0A1B3A 100%);
}
.hero-m__body {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  padding: 0 22px 58px;
}
.hero-m__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(166, 206, 57, 0.45);
  background: rgba(7, 18, 38, 0.6);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 18px;
}
.hero-m__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero-m__badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--green-pale);
}
.hero-m__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 7vw, 2.3rem);
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(7, 18, 38, 0.7);
  text-wrap: pretty;
}
.hero-m__title em { color: var(--green); font-style: normal; }
.hero-m__text {
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: pretty;
}
.hero-m__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}
.hero-m__actions .btn {
  justify-content: center;
  display: flex;
}
.btn--hero-m {
  background: var(--green);
  color: var(--navy-800);
  font-size: 15px;
  padding: 17px 24px;
  box-shadow: 0 12px 28px rgba(166, 206, 57, 0.28);
}
.btn--hero-m:hover { background: var(--green-light); color: var(--navy-800); }
.btn--hero-m-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 14px;
  padding: 15px 24px;
}
.hero-m__facts {
  display: flex;
  align-items: center;
  gap: 14px 20px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-m__fact {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
.hero-m__rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(166, 206, 57, 0) 0%, rgba(166, 206, 57, 0.55) 50%, rgba(166, 206, 57, 0) 100%);
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  z-index: 6;
  overflow: hidden;
  margin-top: -30px;
  padding: 10px 0 26px;
}
.marquee__bar {
  transform: rotate(-1.4deg) scale(1.03);
  background: var(--green);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.marquee__viewport { overflow: hidden; display: flex; }
.marquee__track {
  display: flex;
  width: max-content;
  animation: atMarquee 35s linear infinite;
}
.marquee__track span {
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.18em;
  color: var(--navy-800);
  padding: 15px 0 13px;
}

/* --------------------------------------------------------------------------
   Serviços
   -------------------------------------------------------------------------- */

.services {
  background: var(--surface);
  padding: 100px 28px 104px;
  margin-top: -16px;
  scroll-margin-top: var(--header-h);
}
.services__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 54px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.services__segments {
  margin-top: 52px;
  text-align: center;
}
.services__segments-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--green-label);
  margin-bottom: 20px;
}
.services__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(14, 34, 64, 0.07);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 10px 30px rgba(10, 27, 58, 0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  border-color: rgba(166, 206, 57, 0.7);
  box-shadow: 0 22px 44px rgba(10, 27, 58, 0.12);
}
.card__icon {
  width: 54px; height: 54px;
  border-radius: 18px;
  background: rgba(166, 206, 57, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.card__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}
.card__text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  text-wrap: pretty;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--green-text);
  transition: color 0.25s ease, gap 0.25s ease;
}
.card__link:hover { color: var(--green-text-dark); gap: 12px; }

/* --------------------------------------------------------------------------
   Frota
   -------------------------------------------------------------------------- */

.fleet {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1B3A 0%, #0D2450 100%);
  padding: 104px 28px;
  scroll-margin-top: var(--header-h);
}
.fleet__ring {
  position: absolute;
  bottom: -180px; left: -180px;
  width: 640px; height: 640px;
  border-radius: 50%;
  border: 90px solid rgba(166, 206, 57, 0.06);
  pointer-events: none;
}
.fleet__glow {
  position: absolute;
  top: -120px; right: -100px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 206, 57, 0.14) 0%, rgba(166, 206, 57, 0) 62%);
  pointer-events: none;
}
.fleet__inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}
.fleet__media { position: relative; }

/* A etiqueta do 2730 se ancora no showcase, não na coluna inteira — senão ela
   desceria para cima da foto do segundo veículo. */
.fleet__showcase { position: relative; }

.fleet__float { animation: atFloat 7s ease-in-out infinite; }
.fleet__float picture { display: block; }
.fleet__float img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 34px rgba(2, 8, 20, 0.55));
}
.fleet__tag {
  position: absolute;
  bottom: -10px; right: 4%;
  background: rgba(7, 18, 38, 0.8);
  border: 1px solid rgba(166, 206, 57, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 16px;
}
.fleet__tag span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--green);
}
/* Segundo veículo da frota: foto emoldurada, com etiqueta no mesmo padrão */
.fleet__vehicle {
  position: relative;
  margin: 46px 0 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(166, 206, 57, 0.28);
  box-shadow: 0 22px 44px rgba(2, 8, 20, 0.42);
}
.fleet__vehicle picture { display: block; }
.fleet__vehicle img {
  display: block;
  width: 100%;
  height: auto;
}
.fleet__vehicle-tag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(7, 18, 38, 0.8);
  border: 1px solid rgba(166, 206, 57, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--green);
}

.fleet__lead { margin-bottom: 34px; }
.fleet__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 38px;
}
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 13px;
  background: rgba(166, 206, 57, 0.16);
  border: 1px solid rgba(166, 206, 57, 0.35);
  display: grid;
  place-items: center;
}
.feature__title {
  font-weight: 800;
  font-size: 15.5px;
  color: var(--white);
  margin-bottom: 4px;
}
.feature__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}
.fleet__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Empresas
   -------------------------------------------------------------------------- */

.business {
  background: var(--white);
  padding: 104px 28px;
  scroll-margin-top: var(--header-h);
}
.business__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}
.business__lead { margin-bottom: 32px; }
.business__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.check { display: flex; gap: 16px; align-items: flex-start; }
.check__mark {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(166, 206, 57, 0.2);
  display: grid;
  place-items: center;
}
.check__title {
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 3px;
}
.check__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate);
}

.steps {
  background: linear-gradient(160deg, #0B1B38 0%, #0E2450 100%);
  border-radius: 28px;
  padding: 40px 38px;
  box-shadow: 0 30px 60px rgba(10, 27, 58, 0.35);
  position: relative;
  overflow: hidden;
}
.steps__watermark {
  position: absolute;
  right: -50px; bottom: -60px;
  width: 240px;
  opacity: 0.07;
  transform: rotate(-10deg);
  pointer-events: none;
}
.steps__title {
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 34px;
}
.step { display: flex; gap: 16px; align-items: flex-start; }
.step__num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.step__title {
  font-weight: 800;
  font-size: 15.5px;
  color: var(--white);
  margin-bottom: 3px;
}
.step__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}
.steps__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 24px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.steps__cta:hover {
  background: var(--green-light);
  color: var(--navy-800);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Cobertura
   -------------------------------------------------------------------------- */

.coverage {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  padding: 100px 28px;
  scroll-margin-top: var(--header-h);
}
.coverage__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.coverage__lead { margin-bottom: 44px; }
.coverage__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}
.chip {
  background: var(--white);
  border: 1px solid rgba(14, 34, 64, 0.1);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
}
.chip--accent {
  background: rgba(166, 206, 57, 0.22);
  border: 1px solid rgba(108, 148, 34, 0.4);
  font-weight: 800;
  color: var(--green-chip);
}
.coverage__road {
  position: relative;
  height: 14px;
  max-width: 720px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: var(--road);
  overflow: hidden;
}
.coverage__dashes {
  position: absolute;
  top: 5px; left: 0; right: 0;
  height: 4px;
  background-image: linear-gradient(90deg, rgba(14, 34, 64, 0.28) 0px, rgba(14, 34, 64, 0.28) 52px, rgba(14, 34, 64, 0) 52px, rgba(14, 34, 64, 0) 132px);
  background-size: 132px 4px;
  background-repeat: repeat-x;
  animation: atRoad 1.1s linear infinite;
}
.coverage__note {
  margin: 0;
  font-size: 15px;
  color: var(--slate);
}
.coverage__note a {
  font-weight: 800;
  color: var(--green-text);
}
.coverage__note a:hover { color: var(--green-text-dark); }

/* --------------------------------------------------------------------------
   Contato
   -------------------------------------------------------------------------- */

.contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #A6CE39 0%, #8FBE1F 100%);
  padding: 96px 28px;
  scroll-margin-top: var(--header-h);
}
.contact__watermark {
  position: absolute;
  right: -70px; bottom: -90px;
  width: 400px;
  opacity: 0.1;
  transform: rotate(-8deg);
  filter: brightness(0);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.contact__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--navy-800);
  text-wrap: pretty;
}
.contact__text {
  margin: 0 0 38px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(10, 27, 58, 0.75);
  text-wrap: pretty;
}
.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: var(--navy-800);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 19px 38px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(10, 27, 58, 0.35);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.contact__cta:hover {
  background: #11295A;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(10, 27, 58, 0.45);
}
.contact__steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.contact__step { display: flex; align-items: center; gap: 10px; }
.contact__step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
}
.contact__step span {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--navy-800);
}

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */

.footer {
  background: var(--navy-900);
  padding: 68px 28px 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 48px 56px;
  margin-bottom: 52px;
  align-items: start;
}
.footer__logo {
  width: min(100%, 230px);
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.footer__about {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  text-wrap: pretty;
}
.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__list a,
.footer__list span {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.footer__list a { transition: color 0.25s ease; }
.footer__list a:hover { color: var(--green); }
.footer__contact { gap: 14px; }
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--green);
}
.footer__wa:hover { color: var(--green-light); }
.footer__email { word-break: break-all; }
.footer__address {
  font-style: normal;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}
.footer__region { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.footer__copy,
.footer__cnpj { font-size: 13px; color: rgba(255, 255, 255, 0.45); }
.footer__slogan {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(166, 206, 57, 0.75);
}

/* --------------------------------------------------------------------------
   Botão flutuante WhatsApp
   -------------------------------------------------------------------------- */

.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  animation: atPulse 2.6s ease-out infinite;
  transition: transform 0.25s ease, background 0.25s ease;
}
.wa-fab:hover { transform: scale(1.08); background: var(--wa-hover); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsivo — troca desktop/mobile no mesmo breakpoint do design (820px)
   -------------------------------------------------------------------------- */

@media (max-width: 820px) {
  :root { --header-h: 66px; }

  .header__desktop { display: none; }
  .header__mobile { display: grid; }

  .hero { display: none; }
  .hero-m { display: block; }

  .marquee { margin-top: 0; }

  .services { padding: 74px 20px 78px; margin-top: 0; }
  .fleet { padding: 78px 20px; }
  .business { padding: 78px 20px; }
  .coverage { padding: 74px 20px; }
  .contact { padding: 72px 20px; }
  .footer { padding: 56px 20px 26px; }

  .fleet__inner, .business__inner { gap: 42px; }
  .steps { padding: 32px 26px; }
}

@media (max-width: 520px) {
  .marquee__track span { font-size: 12.5px; }
  .contact__steps { gap: 18px; flex-direction: column; align-items: center; }
  .wa-fab { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track,
  .fleet__float,
  .coverage__dashes,
  .wa-fab { animation: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
