/* =====================================================================
   Letícia Honda — CSS de conteúdo (páginas de modelo + blog)
   100% estático, sem dependências, mobile-first a partir de 200px.
   Identidade: vermelho Honda, zinc, verde WhatsApp. WCAG AA.
   ===================================================================== */

/* ---------- Escopo por página ----------
   Cada página recebe uma classe no <body> para isolar estilos e evitar que
   regras de uma página afetem outra. Use como prefixo para estilos
   específicos (ex.: .page-tabela .preco-box { ... }):
     .page-modelo        -> páginas de modelo (+ .modelo-<slug>)
     .page-modelos       -> índice /motos/
     .page-artigo        -> artigos do blog (+ .artigo-<slug>)
     .page-blog          -> índice /blog/
     .page-tabela        -> /tabela-honda-2026/
     .page-consorcio     -> /consorcio-honda-norte-de-minas/
     .page-financiamento -> /financiamento-moto-honda/
     .page-cidade        -> landings de cidade (+ .cidade-<cidade>)
     .page-sobre         -> /sobre/
   A home (index.html) usa style.css e a classe .page-home.
   --------------------------------------- */

/* ---------- Base tipográfica ---------- */
/* Escala de fonte padronizada: 87.5% = 14px (root de 16px), ou seja -2px no
   texto base. Todas as fontes em rem/clamp acompanham proporcionalmente, em
   todas as páginas. Respeita o zoom/preferência do usuário (WCAG). */
html { font-size: 87.5%; }

/* ---------- Tokens ---------- */
:root {
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --red-50:  #fef2f2;
  --red-100: #fee2e2;

  --zinc-950: #09090b;
  --zinc-900: #18181b;
  --zinc-800: #27272a;
  --zinc-700: #3f3f46;
  --zinc-500: #71717a;
  --zinc-400: #a1a1aa;
  --zinc-300: #d4d4d8;
  --zinc-200: #e4e4e7;
  --zinc-100: #f4f4f5;
  --zinc-50:  #fafafa;

  --green:        #25d366;
  --green-dark:   #1da851;
  --green-600:    #16a34a;

  --blue-50:  #eff6ff;
  --blue-700: #1d4ed8;

  --white: #fff;

  --bg:        var(--zinc-100);
  --ink:       #111827;
  --ink-soft:  var(--zinc-500);
  --line:      var(--zinc-200);

  --radius:    0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --shadow-sm: 0 1px 2px rgba(9, 9, 11, .06), 0 1px 3px rgba(9, 9, 11, .04);
  --shadow-md: 0 4px 6px -1px rgba(9, 9, 11, .08), 0 2px 4px -2px rgba(9, 9, 11, .06);
  --shadow-lg: 0 10px 25px -5px rgba(9, 9, 11, .12), 0 8px 10px -6px rgba(9, 9, 11, .08);

  --maxw: 72rem;       /* 1152px, = max-w-6xl do site */
  --maxw-prose: 46rem; /* leitura confortável de artigos */
  --pad: clamp(0.75rem, 3.5vw, 1.5rem);

  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
img, picture { display: block; max-width: 100%; height: auto; }
svg { display: block; width: 1em; height: 1em; flex: none; fill: currentColor; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:where(h1, h2, h3, h4) { line-height: 1.15; letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }

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

/* ---------- Acessibilidade ---------- */
:focus-visible { outline: 3px solid var(--red-500); outline-offset: 2px; border-radius: 4px; }
.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: 0.5rem; top: -3rem; z-index: 200;
  background: var(--zinc-950); color: #fff; padding: .6rem 1rem;
  border-radius: var(--radius); font-weight: 800; font-size: .85rem;
  transition: top .15s ease;
}
.skip-link:focus { top: 0.5rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
main { flex: 1 0 auto; width: 100%; }
.secao { padding-block: clamp(2rem, 6vw, 3.75rem); }

/* ---------- Navbar (réplica do Header do site) ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--red-700); color: #fff;
  box-shadow: var(--shadow-md);
}
.nav__wrap {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding-block: .5rem;
}
.nav__brand { display: flex; align-items: center; gap: clamp(.35rem, 2vw, .75rem); min-width: 0; }
.nav__logo {
  width: clamp(2rem, 8vw, 2.25rem); height: clamp(2rem, 8vw, 2.25rem);
  border-radius: 50%; object-fit: cover; background: #fff;
  border: 1px solid var(--red-500); box-shadow: var(--shadow-sm); flex: none;
}
.nav__titles { min-width: 0; }
.nav__titles strong {
  display: block; font-weight: 900; line-height: 1.1;
  font-size: clamp(.85rem, 3.5vw, 1.05rem); letter-spacing: -0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav__titles small {
  display: none; font-size: .62rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red-100);
}
.nav__cta {
  display: inline-flex; align-items: center; gap: .4rem; flex: none;
  background: var(--green); color: #fff; font-weight: 800;
  padding: .45rem clamp(.6rem, 3vw, 1rem); border-radius: 999px;
  font-size: clamp(.62rem, 2.6vw, .78rem); box-shadow: var(--shadow-sm);
  transition: background .15s ease, transform .15s ease;
}
.nav__cta:hover { background: var(--green-dark); }
.nav__cta:active { transform: scale(.96); }
.nav__cta svg { width: 1em; height: 1em; }
.nav__cta span { display: none; }
@media (min-width: 360px) { .nav__cta span { display: inline; } }
@media (min-width: 640px) { .nav__titles small { display: block; } }

/* ---------- Breadcrumb ---------- */
.crumbs { padding-top: clamp(.75rem, 3vw, 1.25rem); }
.crumbs ol {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; align-items: center;
  gap: .25rem .5rem; font-size: .72rem; font-weight: 700; color: var(--ink-soft);
}
.crumbs li { display: inline-flex; align-items: center; gap: .5rem; }
.crumbs li:not(:last-child)::after { content: "›"; color: var(--zinc-300); }
.crumbs a:hover { color: var(--red-600); }
.crumbs [aria-current] { color: var(--ink); }

/* ---------- Hero da página de modelo ---------- */
.hero {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-sm);
  overflow: hidden; margin-top: 1rem;
}
.hero__grid { display: grid; gap: clamp(1rem, 4vw, 2rem); padding: clamp(1rem, 4vw, 2.25rem); }
.hero__media {
  order: -1; background: var(--zinc-50); border-radius: var(--radius-lg);
  border: 1px solid var(--line); aspect-ratio: 4 / 3; display: grid; place-items: center;
  overflow: hidden;
}
.hero__media img { width: 100%; height: 100%; object-fit: contain; padding: .5rem; }
.badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .85rem; }
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
  padding: .3rem .6rem; border-radius: 999px;
}
.badge--red   { background: var(--red-50);  color: var(--red-700);  border: 1px solid var(--red-100); }
.badge--zinc  { background: var(--zinc-100); color: var(--zinc-700); border: 1px solid var(--zinc-200); }
.badge--green { background: #f0fdf4; color: var(--green-600); border: 1px solid #dcfce7; }
.hero h1 { font-size: clamp(1.45rem, 6.5vw, 2.6rem); font-weight: 900; margin-bottom: .6rem; }
.hero__lead { color: var(--ink-soft); font-size: clamp(.95rem, 3vw, 1.1rem); font-weight: 500; }
.preco-box {
  margin-top: 1.1rem; padding: .85rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--zinc-50);
}
.preco-box span { display: block; font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: var(--zinc-400); }
.preco-box strong { display: block; font-size: clamp(1.35rem, 5vw, 1.9rem); font-weight: 900; color: var(--red-600); letter-spacing: -0.02em; }
.preco-box strong small { font-size: .6em; color: var(--ink-soft); font-weight: 700; }
.preco-box > small { display: block; margin-top: .2rem; color: var(--ink-soft); font-weight: 600; font-size: .8rem; }
@media (min-width: 760px) {
  .hero__grid { align-items: center; }
}

/* ---------- Botões / CTA ---------- */
.cta-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 800; border-radius: var(--radius); border: 1px solid transparent;
  padding: .8rem 1.15rem; font-size: clamp(.8rem, 2.6vw, .95rem);
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
  text-align: center; line-height: 1.2; overflow-wrap: anywhere; max-width: 100%;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: scale(.97); }
.btn--wpp { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--wpp:hover { background: var(--green-dark); }
.btn--red { background: var(--red-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--red:hover { background: var(--red-700); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--zinc-300); background: var(--zinc-50); }
.btn--block { width: 100%; }
.btn--lg { padding: .95rem 1.4rem; font-size: clamp(.9rem, 3vw, 1.05rem); }

/* ---------- Corpo do artigo ---------- */
.artigo { max-width: var(--maxw-prose); margin-inline: auto; }
.artigo h2 {
  font-size: clamp(1.25rem, 4.5vw, 1.7rem); font-weight: 900; margin-top: 2.25rem; margin-bottom: .75rem;
  padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.artigo h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.artigo h3 { font-size: clamp(1.05rem, 3.6vw, 1.3rem); font-weight: 800; margin-top: 1.5rem; margin-bottom: .5rem; }
.artigo p { margin-bottom: 1rem; font-size: clamp(.95rem, 2.6vw, 1.05rem); color: var(--zinc-800); }
.artigo ul, .artigo ol { margin: 0 0 1.15rem; padding-left: 1.25rem; }
.artigo li { margin-bottom: .5rem; font-size: clamp(.95rem, 2.6vw, 1.05rem); color: var(--zinc-800); }
.artigo a:not(.btn) { color: var(--red-700); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.artigo a:not(.btn):hover { color: var(--red-600); }
.artigo strong { font-weight: 800; color: var(--ink); }
.lista-check { list-style: none; padding-left: 0; }
.lista-check li { position: relative; padding-left: 1.85rem; }
.lista-check li::before {
  content: ""; position: absolute; left: 0; top: .28em; width: 1.15rem; height: 1.15rem;
  background: var(--green-600); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 72% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 72% no-repeat;
}

/* ---------- Destaques (grid de benefícios) ---------- */
.destaques { display: grid; gap: .85rem; grid-template-columns: 1fr; margin: 1.25rem 0; }
.destaque {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.1rem; box-shadow: var(--shadow-sm);
}
.destaque h3 { display: flex; align-items: center; gap: .5rem; font-size: .98rem; font-weight: 900; margin: 0 0 .35rem; }
.destaque h3 svg { width: 1.1rem; height: 1.1rem; color: var(--red-600); flex: none; }
.destaque p { margin: 0; font-size: .9rem; color: var(--ink-soft); }
@media (min-width: 540px) { .destaques { grid-template-columns: 1fr 1fr; } }

/* ---------- Ficha técnica (lista de definições, super responsiva) ---------- */
.ficha {
  display: grid; gap: .5rem; grid-template-columns: 1fr; margin: 1.25rem 0 .5rem;
  background: transparent;
}
.ficha__item {
  display: flex; flex-direction: column; gap: .1rem;
  background: #fff; border: 1px solid var(--line); border-radius: .6rem; padding: .65rem .8rem;
}
.ficha__item dt { font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--zinc-400); }
.ficha__item dd { font-size: .92rem; font-weight: 700; color: var(--ink); margin: 0; }
@media (min-width: 460px) { .ficha { grid-template-columns: 1fr 1fr; } }
@media (min-width: 820px) { .ficha { grid-template-columns: 1fr 1fr 1fr; } }

/* ---------- Callout / caixa de oferta ---------- */
.callout {
  border: 1px solid var(--red-100); background: var(--red-50);
  border-radius: var(--radius-lg); padding: 1.1rem 1.2rem; margin: 1.5rem 0;
}
.callout--dark { background: var(--zinc-950); color: var(--zinc-300); border-color: var(--zinc-800); }
.callout--dark strong, .callout--dark h2, .callout--dark h3 { color: #fff; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- CTA final ---------- */
.cta-final {
  background: var(--zinc-950); color: #fff; border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 5vw, 2.5rem); text-align: center; margin: 2rem auto 0;
  max-width: var(--maxw-prose); border: 1px solid var(--zinc-800);
}
.cta-final h2 { border: 0; padding: 0; margin: 0 0 .6rem; color: #fff; font-size: clamp(1.3rem, 5vw, 1.9rem); font-weight: 900; }
.cta-final p { color: var(--zinc-400); margin-bottom: 1.25rem; font-size: clamp(.92rem, 2.8vw, 1.05rem); }
.cta-final .cta-row { justify-content: center; }

/* ---------- FAQ (details/summary nativo) ---------- */
.faq { display: grid; gap: .6rem; margin: 1.25rem 0; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.faq summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 1.05rem; font-weight: 800; font-size: clamp(.9rem, 2.8vw, 1rem); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 700; color: var(--red-600); line-height: 1; flex: none;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.05rem 1rem; color: var(--ink-soft); font-size: clamp(.9rem, 2.6vw, 1rem); }
.faq details > div p { margin-bottom: .6rem; }
.faq details > div :last-child { margin-bottom: 0; }

/* ---------- Cards (motos / artigos relacionados) ---------- */
.cards { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 420px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .cards { grid-template-columns: 1fr 1fr 1fr; } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4 / 3; background: var(--zinc-50); border-bottom: 1px solid var(--line); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: .9rem 1rem 1.05rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card__body h3 { font-size: 1rem; font-weight: 900; }
.card__body p { font-size: .82rem; color: var(--ink-soft); margin: 0; }
.card__meta { margin-top: auto; padding-top: .6rem; font-size: .72rem; font-weight: 800; color: var(--red-700); display: inline-flex; align-items: center; gap: .35rem; }

/* artigos: card mais editorial */
.card--post .card__media { aspect-ratio: 16 / 9; display: grid; place-items: center; background: linear-gradient(135deg, var(--red-700), var(--zinc-950)); }
.card--post .card__media .tag { color: #fff; font-weight: 900; font-size: 2.2rem; opacity: .9; }
.card--post .card__cat { font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: var(--red-600); }

/* ---------- Seção de relacionados ---------- */
.relacionados h2 { font-size: clamp(1.2rem, 4.5vw, 1.6rem); font-weight: 900; margin-bottom: 1rem; }

/* ---------- Bloco local SEO ---------- */
.local {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 4vw, 1.75rem); margin-top: 1.5rem;
}
.local h2 { font-size: clamp(1.15rem, 4vw, 1.5rem); font-weight: 900; margin: 0 0 .6rem; border: 0; padding: 0; }
.cidades { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; }
.cidades span {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 700; color: var(--zinc-700);
  background: var(--zinc-100); border: 1px solid var(--zinc-200);
  padding: .3rem .65rem; border-radius: 999px;
}
.cidades span svg { color: var(--red-600); }

/* ---------- Índice do blog (cabeçalho) ---------- */
.page-head { text-align: center; max-width: 42rem; margin: 0 auto clamp(1.5rem, 5vw, 2.5rem); }
.page-head h1 { font-size: clamp(1.6rem, 7vw, 2.6rem); font-weight: 900; margin-bottom: .6rem; }
.page-head p { color: var(--ink-soft); font-size: clamp(.95rem, 3vw, 1.1rem); }
.eyebrow { display: inline-block; font-size: .68rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: var(--red-600); margin-bottom: .6rem; }

/* meta do artigo (data, leitura) */
.post-meta { display: flex; flex-wrap: wrap; gap: .35rem .9rem; font-size: .78rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 1.25rem; }
.post-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.post-hero-title { font-size: clamp(1.6rem, 6.5vw, 2.7rem); font-weight: 900; margin: .35rem 0 .75rem; }
.post-sub { font-size: clamp(1rem, 3.2vw, 1.2rem); color: var(--ink-soft); font-weight: 500; margin-bottom: 1.25rem; }

/* ---------- Rodapé (réplica do Footer do site) ---------- */
.rodape { background: var(--zinc-950); color: var(--zinc-400); margin-top: clamp(2.5rem, 7vw, 4rem); border-top: 1px solid var(--zinc-900); }
.rodape__wrap { text-align: center; padding-block: clamp(2rem, 6vw, 2.75rem); }
.rodape__brand { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.rodape__brand img { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; background: #fff; border: 1px solid rgba(220,38,38,.5); }
.rodape__brand-name { color: #fff; font-size: 1.15rem; font-weight: 900; margin: 0; }
.rodape__role { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 1.25rem; }
.rodape__links { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.25rem; margin-bottom: 1.5rem; }
.rodape__links a { font-size: .8rem; font-weight: 700; color: var(--zinc-300); }
.rodape__links a:hover { color: #fff; }
.rodape__base { padding-top: 1.25rem; border-top: 1px solid var(--zinc-900); display: flex; flex-direction: column; align-items: center; gap: .85rem; }
.rodape__base p { font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .25em; }
.rodape__base a { font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: #fff; }
.rodape__base a:hover { color: var(--red-500); }

/* ---------- WhatsApp flutuante (réplica do site) ---------- */
.float-wpp {
  position: fixed; right: clamp(.85rem, 4vw, 1.5rem); bottom: clamp(.85rem, 4vw, 1.5rem); z-index: 90;
  width: clamp(3rem, 13vw, 3.6rem); height: clamp(3rem, 13vw, 3.6rem);
  background: var(--green); color: #fff; border-radius: 50%;
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(37,211,102,.5);
  transition: background .2s ease, transform .2s ease;
}
.float-wpp:hover { background: var(--green-dark); transform: scale(1.08); }
.float-wpp svg { width: 56%; height: 56%; }

/* ---------- Divisor de seção do artigo ---------- */
.rule { height: 1px; background: var(--line); border: 0; margin: 2rem 0; }

/* ---------- Antiquebra de microtextos (nunca quebram em 2 linhas) ---------- */
.card__meta, .badge, .post-meta span, .nav__cta span, .cidades span, .crumbs a, .crumbs [aria-current] {
  white-space: nowrap;
}
.crumbs ol { overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.crumbs ol::-webkit-scrollbar { display: none; }

/* ---------- Salvaguarda anti-overflow horizontal (a partir de 200px) ---------- */
.hero__grid { grid-template-columns: minmax(0, 1fr); }
.hero__grid > *, .cards > *, .destaques > *, .ficha > *, .cta-row > * { min-width: 0; }
.hero__lead, .artigo p, .artigo li, .ficha__item dd, .destaque p, .card__body h3, .card__body p { overflow-wrap: break-word; }
@media (min-width: 760px) {
  .hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
}

/* ---------- Utilitários (extraídos de estilos inline) ---------- */
.u-mt-0 { margin-top: 0; }
.u-mt-1 { margin-top: 1rem; }
.u-mt-2 { margin-top: 2rem; }
.u-mt-3 { margin-top: 2.5rem; }
.u-my-2 { margin: 1.5rem 0; }
.nota { font-size: .8rem; color: var(--zinc-500); }

/* Caixas .callout: primeiro/último filho sem margem sobrando (substitui inline) */
.callout > :first-child { margin-top: 0; }
.callout > :last-child { margin-bottom: 0; }

/* Botão fantasma sobre o fundo escuro do CTA final */
.cta-final .btn--ghost { background: transparent; color: #fff; border-color: var(--zinc-700); }

/* Marca/foto da página Sobre */
.sobre-foto { display: block; margin: 0 auto .85rem; padding: .3rem; border-radius: 9999px; border: 3px solid var(--red-700); background: #fff; }

/* ---------- Tabela de preços (/tabela-honda-2026/) ----------
   Mobile-first: cada linha vira um CARTÃO (sem rolar a tabela para o lado).
   A partir de 600px volta a ser uma tabela tradicional. */
.tabela-wrap { margin: 1.25rem 0; }
.tabela-precos { width: 100%; border-collapse: collapse; display: block; }
.tabela-precos caption { display: block; text-align: left; font-weight: 800; color: var(--ink); margin-bottom: .75rem; }
.tabela-precos a { color: var(--red-700); font-weight: 700; text-decoration: none; }
.tabela-precos a:hover { text-decoration: underline; }

/* Cabeçalho some no modo cartão; os rótulos vêm do data-label (acessível) */
.tabela-precos thead { display: none; }
.tabela-precos tbody, .tabela-precos tr, .tabela-precos td { display: block; }
.tabela-precos tr {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: .35rem .9rem; margin-bottom: .75rem;
}
.tabela-precos td {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .2rem 1rem;
  padding: .5rem 0; border-top: 1px solid var(--line); text-align: right;
  font-size: .92rem; color: var(--ink);
}
.tabela-precos td::before {
  content: attr(data-label); flex: none; text-align: left;
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--zinc-500);
}
.tabela-precos td:first-child { border-top: 0; font-weight: 900; font-size: 1.05rem; color: var(--ink); }
.tabela-precos td:first-child::before { content: none; }
.tabela-precos td.parcela { color: var(--red-600); font-weight: 800; white-space: nowrap; }
.tabela-precos td.parcela small { font-weight: 600; color: var(--ink-soft); }

/* Tablet/desktop: tabela tradicional */
@media (min-width: 600px) {
  .tabela-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--zinc-200, #e4e4e7); border-radius: 12px; }
  .tabela-precos { display: table; font-size: .95rem; min-width: 360px; }
  .tabela-precos caption { display: table-caption; padding: .75rem 1rem; margin: 0; background: var(--zinc-50, #fafafa); }
  .tabela-precos thead { display: table-header-group; }
  .tabela-precos thead th { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; color: var(--zinc-500); text-align: left; padding: .65rem .9rem; border-top: 0; }
  .tabela-precos tbody { display: table-row-group; }
  .tabela-precos tr { display: table-row; background: #fff; border: 0; border-radius: 0; box-shadow: none; padding: 0; margin: 0; }
  .tabela-precos tbody tr:nth-child(even) { background: var(--zinc-50, #fafafa); }
  .tabela-precos td { display: table-cell; align-items: initial; justify-content: initial; gap: 0; padding: .65rem .9rem; text-align: left; border-top: 1px solid var(--zinc-200, #e4e4e7); font-size: .95rem; }
  .tabela-precos td::before, .tabela-precos td:first-child::before { content: none; }
  .tabela-precos td:first-child { font-size: .95rem; font-weight: 600; }
  .tabela-precos td.parcela, .tabela-precos th.parcela { text-align: right; white-space: nowrap; font-weight: 700; color: var(--ink); }
}
