:root {
  --black: #090909;
  --black-soft: #111113;
  --graphite: #19191c;
  --white: #ffffff;
  --off-white: #f4f4f1;
  --gray-100: #eeeeea;
  --gray-300: #c9c9c4;
  --gray-500: #85858a;
  --gray-700: #343438;
  --red: #e01920;
  --red-dark: #a90e14;
  --yellow: #f5c51b;
  --green: #25d366;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(9, 9, 9, 0.14);
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-offset: 104px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.035em;
}

p {
  color: inherit;
}

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

.section {
  padding: 112px 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

/* Botões */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.card-link:focus-visible,
.text-link:focus-visible,
.floating-whatsapp:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ba1017);
  box-shadow: 0 14px 32px rgba(224, 25, 32, 0.25);
}

.button-primary:hover {
  background: linear-gradient(135deg, #f02028, var(--red-dark));
  box-shadow: 0 18px 38px rgba(224, 25, 32, 0.36);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-light {
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-light:hover {
  background: var(--off-white);
}

.button-sm {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.button-full {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(9, 9, 9, 0.94);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.utility-bar {
  color: var(--gray-300);
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
}

.utility-content {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-content p {
  margin: 0;
}

.utility-content a {
  color: var(--white);
  font-weight: 700;
}

.header-content {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  width: 145px;
  height: 64px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: #e5e5e5;
  font-size: 0.86rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.85) 43%, rgba(5, 5, 5, 0.24) 100%),
    url("assets/hero-carro-pneus.jpg") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  left: -170px;
  width: 500px;
  height: 500px;
  content: "";
  background: rgba(224, 25, 32, 0.18);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.025) 120px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  min-height: 586px;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: 76px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.5vw, 5.35rem);
  font-weight: 900;
  letter-spacing: -0.062em;
}

.hero-copy > p {
  max-width: 640px;
  margin-bottom: 30px;
  color: #dedede;
  font-size: clamp(1rem, 1.6vw, 1.17rem);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 26px 0 0;
  padding: 0;
  color: #d8d8d8;
  font-size: 0.82rem;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

/* Formulário de cotação */
.quote-card {
  padding: 28px;
  background: rgba(18, 18, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.quote-heading > span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-heading h2 {
  margin: 8px 0 9px;
  font-size: 1.7rem;
}

.quote-heading p {
  margin-bottom: 21px;
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-field {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

.form-field label {
  color: #e9e9e9;
  font-size: 0.79rem;
  font-weight: 700;
}

.form-field label span {
  color: var(--gray-500);
  font-weight: 500;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--white);
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder {
  color: #747477;
}

.form-field select {
  color-scheme: dark;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 197, 27, 0.13);
}

.form-field.is-invalid input,
.form-field.is-invalid select {
  border-color: var(--red);
}

.form-error {
  min-height: 20px;
  margin: -2px 0 8px;
  color: #ff8b8f;
  font-size: 0.78rem;
}

.quote-card small {
  display: block;
  margin-top: 10px;
  color: var(--gray-500);
  font-size: 0.72rem;
  text-align: center;
}

/* Faixa de benefícios */
.benefit-strip {
  color: var(--black);
  background: var(--off-white);
  border-bottom: 1px solid var(--border-light);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-grid article {
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: 18px;
  padding: 24px 34px;
  border-right: 1px solid var(--border-light);
}

.benefit-grid article:first-child {
  padding-left: 0;
}

.benefit-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-grid article > span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.benefit-grid strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.98rem;
}

.benefit-grid p {
  margin: 0;
  color: #59595c;
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Títulos de seção */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.58fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
}

.section-heading > p {
  margin: 0 0 5px;
  font-size: 0.98rem;
}

.section-heading-dark {
  color: var(--black);
}

.section-heading-dark > p {
  color: #5f5f62;
}

/* Categorias */
.vehicle-section {
  color: var(--black);
  background: var(--off-white);
}

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

.vehicle-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.vehicle-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #151515;
}

.vehicle-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.5));
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.035);
}

.vehicle-image > span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 15px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.vehicle-content {
  padding: 27px 28px 29px;
}

.vehicle-content h3 {
  margin-bottom: 9px;
  font-size: 1.65rem;
}

.vehicle-content p {
  margin-bottom: 19px;
  color: #656568;
  font-size: 0.91rem;
}

.card-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 800;
}

.card-link svg,
.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.card-link:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

/* Diferenciais */
.difference-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 25, 32, 0.18), transparent 34%),
    var(--black-soft);
}

.difference-section::after {
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.difference-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

.difference-image {
  position: relative;
}

.difference-image > img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-badge {
  position: absolute;
  right: -22px;
  bottom: 28px;
  display: flex;
  max-width: 270px;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  line-height: 1.35;
}

.image-badge svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
}

.image-badge strong {
  display: block;
}

.difference-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.difference-intro {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--gray-300);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
}

.feature-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  padding: 23px 20px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.feature-list article > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-list h3 {
  margin-bottom: 7px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.feature-list p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.8rem;
  line-height: 1.45;
}

/* Etapas */
.steps-section {
  color: var(--black);
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps-grid article {
  position: relative;
  min-height: 255px;
  padding: 38px 36px 34px;
  border-right: 1px solid var(--border-light);
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 900;
}

.steps-grid h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.steps-grid p {
  margin: 0;
  color: #656568;
  font-size: 0.9rem;
}

.steps-action {
  margin-top: 36px;
  text-align: center;
}

/* FAQ */
.faq-section {
  background:
    radial-gradient(circle at 5% 100%, rgba(224, 25, 32, 0.13), transparent 29%),
    #0c0c0e;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 94px;
}

.faq-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.faq-heading p {
  max-width: 430px;
  margin-bottom: 25px;
  color: var(--gray-300);
}

.faq-list {
  border-top: 1px solid var(--border-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--border-dark);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 17px;
  height: 2px;
  content: "";
  background: var(--red);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 0 25px;
  padding-right: 50px;
  color: var(--gray-300);
  font-size: 0.9rem;
}

/* CTA final */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: linear-gradient(120deg, #bd1016, var(--red) 58%, #ff3137);
}

.final-cta::before {
  position: absolute;
  top: -170px;
  right: 4%;
  width: 420px;
  height: 420px;
  content: "";
  border: 80px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}

.final-cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .eyebrow {
  color: var(--white);
  opacity: 0.76;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button {
  flex: 0 0 auto;
}

/* Rodapé */
.site-footer {
  padding-top: 70px;
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.8fr;
  gap: 70px;
  padding-bottom: 56px;
}

.footer-brand img {
  width: 170px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p {
  max-width: 350px;
  margin: 0;
  color: var(--gray-500);
  font-size: 0.86rem;
}

.footer-links,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: var(--gray-300);
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray-500);
  border-top: 1px solid var(--border-dark);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gray-300);
}

/* WhatsApp flutuante */
.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.3);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.25);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Animações discretas */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

/* Tablet */
@media (max-width: 1040px) {
  :root {
    --header-offset: 78px;
  }

  .utility-bar,
  .header-button {
    display: none;
  }

  .header-content {
    min-height: 78px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    width: 132px;
    height: 59px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 110;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    background: rgba(9, 9, 9, 0.99);
    border-bottom: 1px solid var(--border-dark);
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    max-height: 400px;
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.95rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  }

  .difference-grid {
    gap: 44px;
  }

  .difference-image > img {
    min-height: 540px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    gap: 54px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    background-position: 63% top;
  }

  .hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.66), rgba(5, 5, 5, 0.95) 43%, #090909 72%);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 13vw, 4.05rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .quote-card {
    padding: 24px 20px;
  }

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

  .benefit-grid article,
  .benefit-grid article:first-child,
  .benefit-grid article:last-child {
    min-height: 104px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .difference-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

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

  .vehicle-content {
    padding: 23px 22px 25px;
  }

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

  .difference-image > img {
    min-height: 380px;
    border-radius: var(--radius-md);
  }

  .image-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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

  .steps-grid article {
    min-height: 0;
    padding: 30px 5px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .steps-grid article:last-child {
    border-bottom: 0;
  }

  .steps-grid article > span {
    margin-bottom: 22px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta {
    padding: 66px 0;
  }

  .final-cta-content {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 90px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 12px 16px;
  }
}

@media (max-width: 410px) {
  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 56px;
    justify-content: center;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
