/* =========================================================
   Select Imports — Folha de estilos
   Estilo minimalista/luxo: preto, branco, cinza e azul (logótipo)
   ========================================================= */

:root {
  --black: #0c0d0f;
  --ink: #14161a;          /* títulos */
  --body: #3d434d;         /* texto corrido */
  --muted: #6b7280;
  --white: #ffffff;
  --grey: #f3f4f6;         /* fundo de secção claro */
  --grey-2: #e9ebef;
  --line: #e5e7eb;
  --navy: #16294c;         /* azul-marinho do logótipo */
  --blue: #1b3aa0;         /* azul royal (botões/realces) */
  --blue-dark: #142e7d;
  --silver: #9aa4b2;
  --radius: 10px;
  --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.06);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  --container: 1200px;
  --topbar-h: 40px;
  --header-h: 88px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Montserrat", system-ui, sans-serif; line-height: 1.08; margin: 0 0 .5em; color: var(--ink); letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }
.opt { color: var(--muted); font-weight: 400; font-size: .82em; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 15px 30px; border-radius: 8px; font-family: "Montserrat", sans-serif;
  font-weight: 700; font-size: .92rem; letter-spacing: .01em; cursor: pointer; border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(27, 58, 160, .3); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Barra superior ---------- */
.topbar { background: var(--black); color: #c4cbd6; font-size: .82rem; }
.topbar__inner { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; padding: 9px 24px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; fill: var(--silver); }
.topbar__tagline { margin-left: auto; letter-spacing: 2.5px; text-transform: uppercase; font-size: .72rem; color: var(--silver); }

/* ---------- Cabeçalho (branco) ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(15,23,42,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand__logo { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink); font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .93rem; position: relative; }
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0;
  background: var(--blue); transition: width .25s ease;
}
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav a:hover { color: var(--blue); }
.nav a.nav__cta { background: var(--blue); color: #fff; padding: 11px 22px; border-radius: 8px; }
.nav a.nav__cta:hover { background: var(--blue-dark); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (preto, fotográfico) ---------- */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h) - var(--topbar-h)); display: flex; align-items: center;
  min-height: calc(100svh - var(--header-h) - var(--topbar-h));
  color: #fff; overflow: hidden; background: #08090b;
}
.hero__media {
  position: absolute; inset: 0;
  /* Hyundai Motor Group via Pexels: https://www.pexels.com/photo/11822720/ */
  background-image: url("../assets/hero-car.webp");
  background-size: cover; background-position: center center; background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,7,9,.96) 0%, rgba(6,7,9,.82) 34%, rgba(6,7,9,.35) 62%, rgba(6,7,9,.15) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 780px; padding: 70px 24px; }
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: 4px; font-size: .78rem; font-weight: 700;
  color: #fff; opacity: .7; margin-bottom: 18px;
}
.hero__title { font-size: clamp(2.6rem, 7vw, 5.4rem); color: #fff; font-weight: 800; margin-bottom: .35em; letter-spacing: -0.03em; }
.hero__text { font-size: 1.14rem; color: #d3d8e0; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 40px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 40px; }
.hero__badges li { font-size: .9rem; color: #aeb6c2; }
.hero__badges strong { display: block; font-family: "Montserrat", sans-serif; font-size: 1.7rem; color: #fff; }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.45); border-radius: 16px; position: relative; }
.hero__scroll span::after {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 3px; animation: scrolldot 1.6s ease infinite;
}
@keyframes scrolldot { 0%{opacity:0; top:8px} 40%{opacity:1} 80%{opacity:0; top:22px} 100%{opacity:0} }

/* ---------- Secções ---------- */
.section { padding: 100px 0; }
.section--grey { background: var(--grey); }
.section--dark { background: var(--black); color: #cdd3dc; }
.section__head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .76rem; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.section__title { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 800; }
.section__lead { color: var(--muted); font-size: 1.06rem; margin-top: .5em; }
.section--dark .section__title { color: #fff; }
.section--dark .section__lead { color: var(--silver); }

/* ---------- Como Funciona (passos numerados) ---------- */
.steps__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { text-align: center; padding: 8px 14px; }
.step__rule { width: 26px; height: 3px; background: var(--blue); margin: 0 auto 20px; }
.step__num { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.step h3 { font-size: 1.35rem; margin-bottom: .5em; }
.step p { color: var(--muted); margin: 0; font-size: .94rem; }

.steps__cta {
  margin-top: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--ink); color: #fff; border-radius: var(--radius); padding: 40px 44px;
}
.steps__cta h3 { color: #fff; margin-bottom: .25em; font-size: 1.6rem; }
.steps__cta p { color: #c4cbd6; margin: 0; max-width: 680px; }

/* ---------- Vantagens ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: transform .25s ease, box-shadow .25s ease; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.feature__num { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--blue); margin-bottom: 8px; }
.feature h3 { font-size: 1.18rem; margin-bottom: .35em; }
.feature p { color: var(--muted); margin: 0; font-size: .96rem; }
.features--benefits { margin-top: 40px; grid-template-columns: repeat(2, 1fr); }
.why__cta { text-align: center; margin-top: 40px; }

/* ---------- Simulador ---------- */
.simulator__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
.simulator__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.simulator__disclaimer { margin: 14px 0 0; font-size: .78rem; color: var(--muted); line-height: 1.5; }
.simulator__subfield {
  margin-top: -6px; padding: 15px 16px; border-left: 3px solid var(--blue); border-radius: 0 9px 9px 0;
  background: #f3f6ff;
}

.simulator__result {
  position: sticky; top: calc(var(--header-h) + 16px);
  background: var(--black); color: #fff;
  border-radius: var(--radius); padding: 36px 34px; box-shadow: var(--shadow); min-height: 260px;
}
.result__placeholder { text-align: center; color: var(--silver); padding: 24px 6px; }
.result__icon { width: 66px; height: 66px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.06); }
.result__icon svg { width: 34px; height: 34px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.result__label { text-transform: uppercase; letter-spacing: 2px; font-size: .74rem; color: var(--silver); margin: 0 0 6px; }
.result__total { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 2.8rem; color: #fff; margin: 0 0 20px; }
.result__breakdown { display: grid; gap: 11px; margin: 0 0 20px; }
.result__breakdown li { display: flex; justify-content: space-between; gap: 12px; font-size: .94rem; color: #cdd3dc; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 9px; }
.result__breakdown li strong { color: #fff; }
.result__grand { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 15px 16px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 4px; }
.result__grand span { font-size: .8rem; color: var(--silver); }
.result__grand strong { font-family: "Montserrat", sans-serif; font-size: 1.55rem; color: #6ea0ff; }

/* ---------- Viaturas entregues ---------- */
.deliveries-carousel { --delivery-gap: 28px; position: relative; }
.deliveries-carousel__viewport {
  overflow: hidden; padding: 8px 0 18px; outline: none; touch-action: pan-y;
}
.deliveries-carousel__viewport:focus-visible { box-shadow: 0 0 0 3px rgba(27,58,160,.22); border-radius: 18px; }
.deliveries-grid {
  display: flex; gap: var(--delivery-gap); align-items: stretch; will-change: transform;
  transition: transform .72s cubic-bezier(.22,1,.36,1);
}
.vehicle-card {
  flex: 0 0 calc((100% - var(--delivery-gap)) / 2); min-width: 0; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm);
  transition: transform .38s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, filter .38s ease;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.deliveries-carousel.is-moving .vehicle-card { transform: scale(.975); filter: saturate(.88); }
.vehicle-carousel { position: relative; overflow: hidden; background: #0a0b0d; outline: none; }
.vehicle-carousel:focus-visible { box-shadow: inset 0 0 0 3px #6ea0ff; }
.vehicle-carousel__track { position: relative; aspect-ratio: 4 / 3; }
.vehicle-carousel__slide {
  position: absolute; inset: 0; visibility: hidden; margin: 0; opacity: 0;
  transition: opacity .35s ease, visibility .35s ease;
}
.vehicle-carousel__slide.is-active { visibility: visible; opacity: 1; }
.vehicle-carousel__slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 62%; cursor: zoom-in;
  transition: transform .45s ease;
}
.vehicle-carousel__slide.is-active:hover img { transform: scale(1.015); }
.vehicle-carousel__badge {
  position: absolute; top: 18px; left: 18px; z-index: 3; padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(10,11,13,.72);
  color: #fff; font-family: "Montserrat", sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: 1.5px; line-height: 1; text-transform: uppercase; backdrop-filter: blur(8px);
}
.vehicle-carousel__control {
  position: absolute; top: 50%; z-index: 4; display: grid; width: 44px; height: 44px; padding: 0;
  place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  background: rgba(10,11,13,.7); color: #fff; cursor: pointer; transform: translateY(-50%);
  backdrop-filter: blur(8px); transition: background .2s ease, transform .2s ease;
}
.vehicle-carousel__control:hover { background: var(--blue); transform: translateY(-50%) scale(1.06); }
.vehicle-carousel__control:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.vehicle-carousel__control svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vehicle-carousel__control--prev { left: 18px; }
.vehicle-carousel__control--next { right: 18px; }
.vehicle-carousel__footer {
  position: absolute; right: 0; bottom: 0; left: 0; z-index: 3; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: 32px 18px 15px;
  background: linear-gradient(transparent, rgba(6,7,9,.88)); pointer-events: none;
}
.vehicle-carousel__dots { display: flex; flex-wrap: wrap; gap: 6px; pointer-events: auto; }
.vehicle-carousel__dot {
  width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.42); cursor: pointer; transition: width .2s ease, background .2s ease;
}
.vehicle-carousel__dot.is-active { width: 20px; border-radius: 999px; background: #fff; }
.vehicle-carousel__dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.vehicle-carousel__counter {
  flex: none; color: rgba(255,255,255,.74); font-family: "Montserrat", sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: 1px;
}
.vehicle-carousel__counter [data-current] { color: #fff; }
.vehicle-card__body { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 26px 25px; }
.vehicle-card__body h3 { margin: 0; font-size: 1.25rem; }
.vehicle-card__eyebrow { margin: 0 0 6px; color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.vehicle-card__year {
  flex: none; padding: 7px 11px; border: 1px solid var(--line); border-radius: 8px;
  color: var(--ink); font-family: "Montserrat", sans-serif; font-size: .78rem; font-weight: 700;
}
.deliveries-carousel__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 20px; }
.deliveries-carousel__control {
  display: grid; width: 48px; height: 48px; padding: 0; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}
.deliveries-carousel__control:hover:not(:disabled) { border-color: var(--blue); background: var(--blue); color: #fff; transform: scale(1.08); }
.deliveries-carousel__control:focus-visible { outline: 3px solid rgba(27,58,160,.3); outline-offset: 3px; }
.deliveries-carousel__control:disabled { opacity: .32; cursor: default; }
.deliveries-carousel__control svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.deliveries-carousel__progress { display: flex; min-width: 116px; flex-direction: column; align-items: center; gap: 7px; }
.deliveries-carousel__dots { display: flex; align-items: center; justify-content: center; gap: 7px; }
.deliveries-carousel__dot {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px;
  background: #c8cdd7; cursor: pointer; transition: width .28s ease, background .28s ease;
}
.deliveries-carousel__dot.is-active { width: 28px; background: var(--blue); }
.deliveries-carousel__dot:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.deliveries-carousel__status { color: var(--muted); font-family: "Montserrat", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: 1px; }
.works__note { text-align: center; margin-top: 38px; color: var(--muted); }
.works__note a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* ---------- Testemunhos ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.testimonial {
  position: relative; display: flex; flex-direction: column; min-width: 0; margin: 0;
  padding: 32px 28px 28px; overflow: hidden; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.testimonial__quote {
  position: absolute; top: 4px; right: 22px; color: rgba(27,58,160,.1);
  font-family: Georgia, serif; font-size: 7rem; font-weight: 700; line-height: 1;
}
.testimonial blockquote { position: relative; z-index: 1; flex: 1; margin: 0 0 28px; color: var(--body); font-size: .98rem; line-height: 1.72; }
.testimonial figcaption { position: relative; z-index: 1; color: var(--ink); font-family: "Montserrat", sans-serif; font-size: .82rem; font-weight: 700; }
.testimonial figcaption span { display: block; margin-top: 4px; color: var(--muted); font-family: "Open Sans", sans-serif; font-size: .72rem; font-weight: 400; }
.testimonials__cta { margin-top: 36px; text-align: center; }
.testimonials__cta p { margin-bottom: 14px; color: var(--muted); }
.testimonials__cta .btn svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- FAQs ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-family: "Montserrat", sans-serif; font-weight: 600;
  color: var(--ink); font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.6rem; color: var(--blue); transition: transform .25s ease; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item[open] summary { color: var(--blue); }
.faq__body { padding: 0 24px 22px; }
.faq__body p { margin: 0; color: var(--muted); }

/* ---------- Contacto / Orçamento ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: start; }
.contact__info .section__title { margin-bottom: .4em; text-align: left; }
.contact__info > p { color: var(--muted); }
.contact__list { margin: 28px 0 26px; display: grid; gap: 18px; }
.contact__list li { display: flex; gap: 16px; align-items: center; }
.contact__ic { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; border-radius: 12px; background: var(--grey); }
.contact__ic svg { width: 24px; height: 24px; display: block; fill: var(--blue); }
.contact__list span { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.contact__list a, .contact__list strong { font-family: "Montserrat", sans-serif; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.contact__socials { display: flex; gap: 12px; }
.social { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
.social svg { width: 22px; height: 22px; fill: #fff; }
.social:hover { background: var(--blue); transform: translateY(-3px); }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form__trap {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.field { margin-bottom: 18px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field--row-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field--row.field--single { grid-template-columns: 1fr; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: .97rem; color: var(--ink); background: #fbfcfd; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,58,160,.14); background: #fff;
}
.field select:disabled { color: var(--muted); background: var(--grey); cursor: not-allowed; }
.simulator__disclaimer a { color: var(--blue); font-weight: 600; text-decoration: underline; }
.registration-date { display: grid; grid-template-columns: 1.35fr .85fr; gap: 10px; }
.field__hint { margin: 7px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.simulator__vat-note {
  margin: -5px 0 18px; padding: 9px 11px; border-radius: 7px; background: var(--grey);
  color: var(--muted); font-size: .72rem; line-height: 1.4;
}
.simulator__vat-note strong { color: var(--ink); }
.field textarea { resize: vertical; }
.form__status { margin: 14px 0 0; font-weight: 600; font-size: .92rem; min-height: 1.2em; }
.form__status.ok { color: #1a9c6b; }
.form__status.err { color: #d64545; }
.form__hint { margin: 10px 0 0; font-size: .82rem; color: var(--muted); }

/* ---------- Rodapé (preto) ---------- */
.footer { background: var(--black); color: #aeb6c2; padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
.footer__brand img { height: 64px; margin-bottom: 18px; background: #fff; padding: 12px 20px; border-radius: 12px; }
.footer__brand p { color: #8b93a1; max-width: 380px; font-size: .95rem; }
.footer__col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 16px; }
.footer__col li { margin-bottom: 10px; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .84rem; }
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { margin: 0; color: #6f7683; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s ease;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90; background: rgba(6,7,9,.94);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 22px; right: 30px; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .steps__grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
}
@media (max-width: 960px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .simulator__grid, .contact__grid { grid-template-columns: 1fr; gap: 34px; }
  .simulator__result { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --header-h: 74px; }
  .topbar__tagline { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 10px 24px 22px;
    transform: translateY(-150%); transition: transform .3s ease; box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav a:not(.nav__cta)::after { display: none; }
  .nav__cta { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__cta { flex-direction: column; align-items: flex-start; }
  .hero__media { background-position: 70% center; }
  .hero__overlay { background: linear-gradient(180deg, rgba(6,7,9,.7) 0%, rgba(6,7,9,.9) 100%); }
  .deliveries-carousel { --delivery-gap: 18px; }
  .deliveries-grid > .vehicle-card { flex-basis: 100%; }
  .testimonials__grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  :root { --topbar-h: 70px; }
}
@media (max-width: 560px) {
  .section { padding: 66px 0; }
  .features { grid-template-columns: 1fr; }
  .vehicle-card__body { align-items: flex-start; padding: 21px 20px 22px; }
  .vehicle-card__body h3 { font-size: 1.08rem; }
  .vehicle-carousel__control { width: 40px; height: 40px; }
  .vehicle-carousel__control--prev { left: 12px; }
  .vehicle-carousel__control--next { right: 12px; }
  .vehicle-carousel__badge { top: 13px; left: 13px; }
  .vehicle-carousel__footer { padding-right: 13px; padding-left: 13px; }
  .deliveries-carousel__nav { gap: 14px; }
  .deliveries-carousel__control { width: 44px; height: 44px; }
  .testimonial { padding: 30px 24px 26px; }
  .steps__grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .registration-date { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__badges { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .deliveries-grid, .vehicle-card { transition: none; }
}
