/* ============================================================
   CONSORBENS — Design System (fiel ao consorbens.com original)
   Tokens HSL idênticos ao site original.
   ============================================================ */
:root {
  --primary: 152 55% 35%;
  --primary-glow: 152 60% 45%;
  --primary-foreground: 0 0% 100%;
  --gold: 42 80% 55%;
  --gold-foreground: 42 90% 20%;
  --foreground: 160 15% 12%;
  --background: 0 0% 100%;
  --muted: 150 12% 95%;
  --muted-foreground: 150 8% 46%;
  --accent: 152 45% 92%;
  --accent-foreground: 152 55% 22%;
  --secondary: 150 25% 96%;
  --border: 150 18% 90%;
  --destructive: 0 72% 51%;
  --card: 0 0% 100%;

  --header-h: 81px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px -12px hsl(160 20% 20% / .12);
  --shadow-primary: 0 8px 30px -8px hsl(var(--primary) / .35);
  --wrap: 1400px;
  --font: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Montserrat', var(--font);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: hsl(var(--foreground)); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: 76px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.tag {
  display: inline-block; background: hsl(var(--accent)); color: hsl(var(--accent-foreground));
  font-weight: 700; letter-spacing: 1px; font-size: 12px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.section-lead { color: hsl(var(--muted-foreground)); font-size: 17px; margin-top: 14px; }
.gradient-primary { background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow))); }
.text-primary { color: hsl(var(--primary)); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-family: var(--font-head); font-size: 15px;
  padding: 13px 28px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: .18s;
}
.btn-primary { background: hsl(var(--primary)); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { background: hsl(var(--primary-glow)); transform: translateY(-1px); }
.btn-gold { background: hsl(var(--gold)); color: hsl(var(--gold-foreground)); }
.btn-gold:hover { filter: brightness(1.05); }
.btn-outline { border-color: hsl(var(--primary)); color: hsl(var(--primary)); background: transparent; }
.btn-outline:hover { background: hsl(var(--accent)); }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid hsl(var(--border)); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 28px; }
.brand img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { font-weight: 500; font-size: 14px; color: hsl(var(--foreground) / .7); padding: 8px 16px; border-radius: 8px; transition: .15s; }
.nav a:hover { color: hsl(var(--primary)); background: hsl(var(--accent) / .5); }
.nav a.active { background: hsl(var(--accent) / .6); color: hsl(var(--primary)); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.wa-circle { width: 40px; height: 40px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.4); flex: none; }
.header-cta .btn-primary { padding: 10px 20px; font-size: 14px; border-radius: 8px; background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow))); }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: hsl(var(--primary)); cursor: pointer; }
@media (max-width: 1000px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open { display: flex; position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; padding: 14px 22px; gap: 4px; border-bottom: 1px solid hsl(var(--border)); box-shadow: var(--shadow); }
}

/* ---------- Hero (fiel ao original: altura fixa, padding assimétrico) ---------- */
.hero { position: relative; height: 520px; display: flex; align-items: center; color: #fff; overflow: hidden; }
@media (min-width: 768px) { .hero { height: 650px; } }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; transform: scale(1); }
.hero-slide.active { opacity: 1; z-index: 1; animation: kenburns 7.5s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1) translateX(0); } to { transform: scale(1.14) translateX(-1.5%); } }
@media (prefers-reduced-motion: reduce) { .hero-slide.active { animation: none; } }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, hsl(160 30% 8% / .72) 0%, hsl(160 30% 8% / .38) 42%, hsl(160 30% 8% / .05) 100%); }
.hero-container { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; width: 100%; padding: 0 24px 0 64px; }
@media (min-width: 768px) { .hero-container { padding-left: 80px; } }
.hero-inner { max-width: 42rem; }
.hero-badge { display: inline-block; background: hsl(var(--primary) / .82); backdrop-filter: blur(4px); color: #fff; font-weight: 600; font-size: 14px; padding: 8px 20px; border-radius: 30px; }
.hero h1 { color: #fff; font-size: clamp(32px, 5.5vw, 60px); font-weight: 800; line-height: 1; margin: 20px 0; text-shadow: 0 2px 10px rgba(0,0,0,.28); }
.hero p { font-size: 20px; max-width: 512px; margin-bottom: 28px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.15); border: 0; color: #fff; font-size: 22px; cursor: pointer; backdrop-filter: blur(4px); transition: .15s; display: flex; align-items: center; justify-content: center; }
.hero-arrow:hover { background: rgba(255,255,255,.3); }
.hero-arrow.prev { left: 22px; } .hero-arrow.next { right: 22px; }
.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); cursor: pointer; transition: .2s; }
.hero-dots button.active { background: hsl(var(--primary-glow)); width: 30px; border-radius: 6px; }
@media (max-width: 640px){ .hero-arrow { display: none; } }

/* ---------- Intro ---------- */
.intro { text-align: center; padding: 70px 0 30px; }
.intro h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; max-width: 820px; margin: 0 auto 16px; }
.intro p { color: hsl(var(--muted-foreground)); font-size: 17px; max-width: 760px; margin: 0 auto; }

/* ---------- Cartas (home = cards claros) ---------- */
.cartas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.carta {
  background: #fff; border: 1px solid hsl(var(--border)); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: .18s;
}
.carta:hover { transform: translateY(-4px); box-shadow: 0 16px 44px -12px hsl(var(--primary) / .2); }
.carta-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.carta-tipo-pill { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); font-weight: 700; font-size: 12px; padding: 4px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 4px; }
/* diferenciação visual por tipo de carta (cor do pill + acento na lateral) */
.carta.tipo-imoveis  .carta-tipo-pill { background:#e6f0fb; color:#1e5aa8; }
.carta.tipo-autos    .carta-tipo-pill { background:#e7f7ee; color:#178a4e; }
.carta.tipo-motos    .carta-tipo-pill { background:#f1e9fb; color:#6b3fb0; }
.carta.tipo-pesados  .carta-tipo-pill { background:#fdeede; color:#a8600f; }
.carta.tipo-servicos .carta-tipo-pill { background:#e3f6f5; color:#0f766e; }
.carta.tipo-imoveis  { border-top: 3px solid #1e5aa8; }
.carta.tipo-autos    { border-top: 3px solid #178a4e; }
.carta.tipo-motos    { border-top: 3px solid #6b3fb0; }
.carta.tipo-pesados  { border-top: 3px solid #a8600f; }
.carta.tipo-servicos { border-top: 3px solid #0f766e; }
.carta-adm { color: hsl(var(--muted-foreground)); font-size: 13px; font-weight: 600; }
.carta-valor { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: hsl(var(--foreground)); }
.carta-sub { color: hsl(var(--muted-foreground)); font-size: 14px; margin: 6px 0 18px; }
.carta-status { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-left: 8px; }
.status-disp { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.status-res { background: hsl(42 80% 92%); color: hsl(var(--gold-foreground)); }
.carta-cta { margin-top: auto; }
.carta-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; background: hsl(var(--primary)); color: #fff; font-weight: 700; padding: 12px; border-radius: var(--radius-sm); transition: .15s; }
.carta-cta a:hover { background: hsl(var(--primary-glow)); }
.cartas-empty { text-align: center; color: hsl(var(--muted-foreground)); padding: 40px 0; }
.cartas-more { text-align: center; margin-top: 34px; }
.link-verde { color: hsl(var(--primary)); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.link-verde:hover { gap: 10px; }

/* ---------- Comparação (simulador + vantagens) ---------- */
.comp { background: hsl(var(--secondary)); }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
@media (max-width: 900px){ .comp-grid { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.card + .card { margin-top: 22px; }
.card-h { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-family: var(--font-head); font-weight: 700; font-size: 20px; }
.card-ico { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; }
.ico-green { background: hsl(var(--primary)); } .ico-red { background: hsl(var(--destructive)); }
.sim-field { margin-bottom: 22px; }
.sim-field label { display: flex; justify-content: space-between; font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.sim-field label b { color: hsl(var(--primary)); font-size: 18px; font-family: var(--font-head); }
.sim-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 4px; }
input[type=range] { width: 100%; accent-color: hsl(var(--primary)); }
.sim-result { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.sim-box { border-radius: var(--radius-sm); padding: 18px; text-align: center; }
.sim-box small { display: block; font-size: 13px; margin-bottom: 6px; }
.sim-box b { font-size: 22px; font-family: var(--font-head); }
.sim-consorcio { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.sim-financ { background: hsl(0 72% 96%); color: hsl(var(--destructive)); }
.sim-eco { grid-column: 1/-1; background: hsl(var(--muted)); color: hsl(var(--primary)); }
.sim-eco b { color: hsl(var(--primary)); }
.lista-check { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lista-check li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.lista-check .ck { flex: none; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 2px; }
.ck-green { background: hsl(var(--accent)); color: hsl(var(--primary)); }
.ck-red { background: hsl(0 72% 95%); color: hsl(var(--destructive)); }
.totais { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.totais small { display: block; color: hsl(var(--muted-foreground)); font-size: 13px; }
.totais b { font-family: var(--font-head); font-size: 20px; }

/* ---------- Números (barra verde arredondada) ---------- */
.stats-wrap { padding: 30px 0 60px; }
.stats { border-radius: 22px; padding: 40px 24px; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { font-family: var(--font-head); font-size: 36px; font-weight: 800; display: block; }
.stat span { opacity: .92; font-size: 14px; }
@media (max-width: 700px){ .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* ---------- CTA verde ---------- */
.cta { color: #fff; text-align: center; }
.cta .tag { background: rgba(255,255,255,.18); color: #fff; }
.cta h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); font-weight: 800; max-width: 760px; margin: 0 auto 16px; }
.cta p { color: #eaf2ee; font-size: 17px; max-width: 680px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Produtos ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px){ .prod-grid { grid-template-columns: 1fr; } }
.prod { background: #fff; border: 1px solid hsl(var(--border)); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: .18s; }
.prod:hover { transform: translateY(-4px); }
.prod-img { height: 190px; background-size: cover; background-position: center; }
.prod-body { padding: 22px; }
.prod-body h3 { font-size: 20px; margin-bottom: 6px; }
.prod-body p { color: hsl(var(--muted-foreground)); font-size: 14px; }

/* ---------- Administradoras parceiras (cards próprios, sem imagem) ---------- */
.adm-parceiros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px){ .adm-parceiros { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.adm-parceiro {
  background: #fff; border: 1px solid hsl(var(--border)); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 30px 22px; text-align: center; transition: .18s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.adm-parceiro:hover { transform: translateY(-4px); }
.adm-ico {
  width: 58px; height: 58px; border-radius: 50%; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--accent)); color: hsl(var(--primary));
}
.adm-parceiro h3 { font-size: 19px; margin: 0; }
.adm-parceiro > p { color: hsl(var(--muted-foreground)); font-size: 13.5px; line-height: 1.5; margin: 0; flex: 1; }
.adm-selo {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 6px;
  background: #eefaf2; color: #178a4e; border: 1px solid #cdeed9; border-radius: 20px;
  padding: 7px 15px; font-size: 12.5px; font-weight: 700;
}
.prod-body .val { color: hsl(var(--primary)); font-weight: 800; font-family: var(--font-head); margin-top: 10px; }

/* ---------- Quem somos ---------- */
.quem-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px){ .quem-grid { grid-template-columns: 1fr; } }
.quem p { color: hsl(var(--muted-foreground)); font-size: 16px; margin-bottom: 18px; }
.quem .lista-check li { font-weight: 600; }
.quem-img { border-radius: var(--radius); height: 360px; background-size: cover; background-position: center; box-shadow: var(--shadow); }

/* ---------- Depoimentos ---------- */
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .dep-grid { grid-template-columns: 1fr; } }
.dep { background: #fff; border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.dep-stars { color: hsl(var(--gold)); margin-bottom: 12px; }
.dep-txt { font-size: 15px; color: hsl(var(--foreground)); font-style: italic; margin-bottom: 18px; }
.dep-quem { display: flex; align-items: center; gap: 12px; }
.dep-av { width: 44px; height: 44px; border-radius: 50%; background: hsl(var(--primary)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); }
.dep-nome { font-weight: 700; font-size: 15px; }
.dep-info { color: hsl(var(--muted-foreground)); font-size: 13px; }

/* ---------- Footer ---------- */
.site-footer { background: hsl(160 30% 8%); color: #b8c4bd; padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
@media (max-width: 780px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.site-footer a { color: #b8c4bd; display: block; padding: 4px 0; }
.site-footer a:hover { color: hsl(var(--gold)); }
.footer-brand img { height: 40px; margin: 0 auto 14px; display: block; filter: brightness(0) invert(1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 20px; text-align: center; font-size: 13px; color: #7f8f86; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.25); transition: .18s; }
.wa-float:hover { transform: scale(1.08); }

.skeleton { background: linear-gradient(90deg, hsl(var(--muted)) 25%, hsl(var(--secondary)) 37%, hsl(var(--muted)) 63%); background-size: 400% 100%; animation: sk 1.3s infinite; border-radius: var(--radius); height: 210px; }
@keyframes sk { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ---------- Fundo verde clarinho (Oportunidades) ---------- */
.bg-soft-green { background: hsl(152 44% 97%); }

/* ---------- Animações ao rolar (reveal) ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-stagger.visible > * { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---------- Página de Cartas (tabela + filtros, fiel ao original) ---------- */
/* Cabeçalho de página simples (sem faixa colorida — o original não tem) */
.page-hero { text-align: center; padding: 64px 0; }
.page-hero .tag { display: inline-block; background: hsl(var(--accent)); color: hsl(var(--primary)); font-weight: 600; font-size: 14px; padding: 6px 16px; border-radius: 30px; margin-bottom: 16px; }
.page-hero h1 { color: hsl(var(--foreground)); font-size: clamp(30px, 4.5vw, 48px); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: hsl(var(--muted-foreground)); font-size: 18px; max-width: 672px; margin: 0 auto; }

.filtros-card { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 12px; padding: 16px; margin-bottom: 24px; }
.filtros-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.filtros-head .ft { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px; }
.filtros-head .ct { color: hsl(var(--muted-foreground)); font-size: 14px; }
.filtros-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 1000px){ .filtros-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px){ .filtros-grid { grid-template-columns: repeat(2, 1fr); } }
.filtros-grid label { display: block; font-size: 12px; font-weight: 500; color: hsl(var(--muted-foreground)); margin-bottom: 4px; }
.filtros-grid select, .filtros-grid input { width: 100%; height: 36px; padding: 8px 12px; border: 1px solid hsl(var(--border)); border-radius: 6px; font-size: 14px; font-family: inherit; background: #fff; }
.minmax { display: flex; gap: 8px; }
.minmax input { min-width: 0; }

.tabela-wrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 1px 3px rgba(0,0,0,.06); border: 1px solid hsl(var(--border)); background: #fff; margin-bottom: 20px; }
.tabela-cartas { width: 100%; border-collapse: collapse; min-width: 900px; font-size: 14px; }
.tabela-cartas thead th { background: hsl(var(--primary)); color: #fff; text-align: left; padding: 12px 16px; font-size: 14px; font-weight: 700; }
.tabela-cartas thead th:last-child, .tabela-cartas thead th.th-center { text-align: center; }
.tabela-cartas tbody td { padding: 12px 16px; color: hsl(var(--foreground)); }
.tabela-cartas tbody tr:nth-child(odd) { background: hsl(var(--accent) / .3); }
.tabela-cartas tbody tr:nth-child(even) { background: #fff; }
.tabela-cartas .td-tipo { font-weight: 600; }
.tabela-cartas .td-credito { color: #16a34a; font-weight: 700; }
.tabela-cartas .td-entrada, .tabela-cartas .td-parcela { font-weight: 600; }
.tabela-cartas .td-disp { text-align: center; }
.status-ico { display: inline-flex; align-items: center; justify-content: center; }
.status-ico.disp { color: #16a34a; }
.status-ico.res { color: hsl(var(--gold-foreground)); }
.status-txt { display: none; } /* texto do status só aparece no mobile (ver @media abaixo) */

.btn-tb { background: #16a34a; color: #fff; font-weight: 600; font-size: 14px; padding: 8px 16px; height: 36px; border-radius: 6px; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; transition: .15s; }
.btn-tb:hover { background: #15803d; }

/* Paginação */
.paginacao { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 24px; }
.pg-btn { min-width: 36px; height: 36px; padding: 0 12px; border: 1px solid hsl(var(--border)); border-radius: 6px; background: #fff; font-size: 14px; font-weight: 500; color: hsl(var(--foreground)); cursor: pointer; transition: .15s; }
.pg-btn:hover:not(:disabled) { background: hsl(var(--accent) / .5); }
.pg-btn:disabled { opacity: .4; cursor: not-allowed; }
.pg-btn.active { background: hsl(var(--primary)); color: #fff; border-color: hsl(var(--primary)); }

/* ---------- FAQ: abas + acordeão ---------- */
.faq-tabs { display: flex; gap: 4px; background: hsl(var(--muted)); padding: 4px; border-radius: 10px; margin: 0 auto 32px; max-width: fit-content; flex-wrap: wrap; justify-content: center; }
.faq-tab { padding: 8px 18px; border-radius: 7px; font-size: 14px; font-weight: 500; color: hsl(var(--muted-foreground)); background: transparent; border: 0; cursor: pointer; transition: .15s; }
.faq-tab.active { background: #fff; color: hsl(var(--foreground)); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid hsl(var(--border)); border-radius: 12px; padding: 0 20px; transition: .15s; }
.faq-item.open { box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: none; border: 0; padding: 18px 0; text-align: left; font-weight: 600; font-size: 16px; color: hsl(var(--foreground)); cursor: pointer; }
.faq-q svg { flex: none; transition: transform .2s; color: hsl(var(--muted-foreground)); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { color: hsl(var(--muted-foreground)); line-height: 1.7; padding: 0 0 18px 32px; }
.faq-cta { background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow))); border-radius: 16px; padding: 32px; margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: #fff; }
.faq-cta h3 { color: #fff; font-size: 20px; }
.faq-cta p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 4px; }

/* ---------- Formulários (Contato / Anuncie) ---------- */
.form-card { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); }
.form-card h2, .form-card h3 { font-size: 18px; margin-bottom: 16px; }
.f-field { margin-bottom: 18px; }
.f-field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.f-field input, .f-field select, .f-field textarea {
  width: 100%; height: 40px; padding: 8px 14px; border: 1px solid hsl(var(--border));
  border-radius: 8px; font-size: 14px; font-family: inherit; background: #fff; color: hsl(var(--foreground));
}
.f-field textarea { height: auto; min-height: 110px; padding-top: 10px; resize: vertical; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px hsl(var(--primary) / .15); }
.f-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px){ .f-row2 { grid-template-columns: 1fr; } }
.f-submit { width: 100%; height: 44px; border: 0; border-radius: 8px; background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow))); color: #fff; font-weight: 700; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: .15s; }
.f-submit:hover { opacity: .92; }

/* ---------- Contato: cartão de informações ---------- */
.info-item { display: flex; align-items: center; gap: 16px; }
.info-item + .info-item { margin-top: 20px; }
.info-ico { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow))); display: flex; align-items: center; justify-content: center; color: #fff; flex: none; }
.info-label { font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: hsl(var(--muted-foreground)); }
.info-value { font-weight: 600; font-size: 15px; }
.info-value:hover { color: hsl(var(--primary)); }
.duas-colunas { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 860px){ .duas-colunas { grid-template-columns: 1fr; } }

/* ---------- Depoimentos: marquee de rolagem automática ---------- */
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after { content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: marquee-x 34s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.dep-card-m { width: 320px; flex: none; background: #fff; border: 1px solid hsl(var(--border)); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); }
.dep-card-m .estrelas { color: hsl(var(--gold)); margin-bottom: 10px; letter-spacing: 2px; }
.dep-card-m .txt { font-size: 14px; color: hsl(var(--foreground)); margin-bottom: 18px; min-height: 90px; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Clientes contemplados (galeria de fotos reais) ---------- */
.contemp-wrap { margin-top: 4px; }
.contemp-track { align-items: stretch; animation-duration: 48s; }
.contemp-item { flex: none; width: 300px; border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid hsl(var(--border)); box-shadow: var(--shadow); display: block; transition: transform .25s ease, box-shadow .25s ease; }
.contemp-item:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -18px rgba(0,0,0,.38); }
.contemp-item img { display: block; width: 100%; height: 380px; object-fit: cover; }
@media (max-width: 600px){ .contemp-item { width: 240px; } .contemp-item img { height: 320px; } }

/* ============================================================
   RODADA 5 — Melhorias visuais
   ============================================================ */

/* Botão grande (Ver todas as cartas) */
.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: 12px; }
.btn-lg svg { transition: transform .2s; }
.btn-lg:hover svg { transform: translateX(4px); }
.cartas-more { margin-top: 40px; }

/* Botão laranja (bem evidente) */
.btn-orange { background: #f97316; color: #fff; box-shadow: 0 12px 28px -8px rgba(249,115,22,.55); }
.btn-orange:hover { background: #ea580c; color: #fff; transform: translateY(-2px); }

/* Números — leve destaque de entrada */
.stats { position: relative; overflow: hidden; }
.stats .stat b { transition: none; }
.stats-grid .stat { position: relative; }
.stats-grid .stat:not(:last-child)::after { content: ""; position: absolute; right: -10px; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,.18); }
@media (max-width: 700px){ .stats-grid .stat::after { display: none !important; } }

/* Representante Autorizado */
.reps { margin-top: 44px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.2); }
.reps-label { display: block; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.reps-marcas { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
/* Chip branco: qualquer logo (de qualquer cor) fica limpo sobre o fundo verde.
   O logo aparece se o arquivo existir (/assets/img/adm-*.png); senão, cai para o
   nome em texto (classe .sem-logo adicionada pelo onerror). */
.marca {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid rgba(255,255,255,.6);
  padding: 10px 20px; border-radius: 10px; transition: .18s; min-height: 52px; box-shadow: 0 2px 8px rgba(0,0,0,.10);
}
.marca-logo { max-height: 30px; max-width: 130px; object-fit: contain; display: block; }
.marca-txt { display: none; }
.marca:hover { transform: translateY(-2px); }
/* fallback sem logo: volta ao chip translúcido com o nome em branco */
.marca.sem-logo {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(3px); box-shadow: none;
}
.marca.sem-logo .marca-txt {
  display: inline; font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: 1px; color: #fff;
}
.marca.sem-logo:hover { background: #fff; }
.marca.sem-logo:hover .marca-txt { color: hsl(var(--primary)); }

/* Produtos — grade de 4 + card de moto com ícone */
.prod-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px){ .prod-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .prod-grid-4 { grid-template-columns: 1fr; } }
.prod-img-moto { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #fff; background: linear-gradient(135deg, hsl(160 30% 14%), hsl(var(--primary))); overflow: hidden; }
.prod-moto-marca { font-family: var(--font-head); font-weight: 800; letter-spacing: 3px; font-size: 15px; opacity: .95; }
/* foto da moto (se existir /assets/img/banner-moto.jpg) cobre o bloco verde; senão, mostra o fallback */
.prod-moto-foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.prod .val { display: inline-block; }

/* Quem Somos — imagem com movimento + badge flutuante */
.quem-img-box { position: relative; }
.quem-img { animation: floatY 5.5s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.quem-badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: 16px;
  box-shadow: 0 16px 40px -12px hsl(160 30% 20% / .35); padding: 18px 24px; text-align: center;
  animation: floatY 5.5s ease-in-out infinite .4s;
}
.quem-badge b { display: block; font-family: var(--font-head); font-size: 30px; font-weight: 800; color: hsl(var(--primary)); line-height: 1; }
.quem-badge span { font-size: 13px; color: hsl(var(--muted-foreground)); }
@media (max-width: 860px){ .quem-badge { left: 50%; transform: translateX(-50%); bottom: -18px; } @keyframes floatY { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(-10px);} } }
@media (prefers-reduced-motion: reduce) { .quem-img, .quem-badge { animation: none; } }

/* Transições entre blocos mais suaves */
.reveal { transform: translateY(42px); transition: opacity .8s cubic-bezier(.16,.7,.3,1), transform .8s cubic-bezier(.16,.7,.3,1); }
.reveal-stagger > * { transform: translateY(34px); transition: opacity .7s cubic-bezier(.16,.7,.3,1), transform .7s cubic-bezier(.16,.7,.3,1); }
.carta, .prod, .card, .dep { transition: transform .25s cubic-bezier(.16,.7,.3,1), box-shadow .25s ease, border-color .2s; }

/* ---------- RESPONSIVIDADE (desktop / tablet / celular) ---------- */
@media (max-width: 1000px) {
  .section { padding: 60px 0; }
  .hero-container { padding-left: 40px; }
  .hero h1 { font-size: clamp(32px, 7vw, 48px); }
}
@media (max-width: 768px) {
  .hero { height: 460px; }
  .hero-container { padding: 0 22px; }
  .hero-inner { max-width: 100%; }
  .hero p { font-size: 16px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 18px; font-size: 14px; }
  .section { padding: 48px 0; }
  .section-title { font-size: clamp(24px, 6vw, 32px); }
  .comp-grid, .sim-result { grid-template-columns: 1fr; }
  .stats { border-radius: 16px; padding: 30px 18px; }
  .stat b, .stat .stat-num { font-size: 30px; }
  .cta h2 { font-size: 26px; }
  .quem-img { height: 280px; }
  .quem-img-box { margin-bottom: 26px; }
  .btn-lg { padding: 14px 26px; font-size: 15px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 30px; }
  .hero-badge { font-size: 12px; padding: 6px 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  .marca { font-size: 13px; padding: 10px 16px; }
  .card { padding: 22px; }
}

/* Código do produto (site público) */
.cod-chip { display:inline-block; font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:12px; font-weight:700;
  color:hsl(var(--primary)); background:hsl(var(--primary)/0.08); border:1px solid hsl(var(--primary)/0.20);
  border-radius:6px; padding:2px 8px; letter-spacing:.3px; white-space:nowrap; }
.carta-cod { margin-left:auto; }

/* ===== Cartas em destaque (TOP · melhor custo) ===== */
.carta.is-destaque { border: 2px solid hsl(var(--gold)); overflow: hidden; box-shadow: 0 14px 44px -12px hsl(var(--gold) / .55); }
.carta-selo { margin: -24px -24px 16px; padding: 8px 14px; text-align: center; font-weight: 800; font-size: 12px; letter-spacing: .6px; color: hsl(var(--gold-foreground)); background: linear-gradient(135deg, hsl(var(--gold)), hsl(42 92% 46%)); }
/* selo pequeno na tabela da página de todas as cartas */
.selo-tb { display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 20px; font-weight: 800; font-size: 10px; letter-spacing: .4px; vertical-align: middle; color: hsl(var(--gold-foreground)); background: linear-gradient(135deg, hsl(var(--gold)), hsl(42 92% 46%)); }
.tabela-cartas tr.linha-destaque td { background: hsl(42 82% 96%); }
.tabela-cartas tr.linha-destaque td:first-child { box-shadow: inset 3px 0 0 hsl(var(--gold)); }

/* ============================================================
   MOBILE / TABLET — cartas contempladas viram CARDS empilhados.
   Tudo dentro do @media: a versão desktop NÃO é alterada.
   ============================================================ */
@media (max-width: 860px) {
  /* a "caixa" da tabela deixa de rolar de lado; vira lista de cards */
  .tabela-wrap { overflow: visible; border: 0; box-shadow: none; background: transparent; border-radius: 0; }
  .tabela-cartas { min-width: 0; display: block; font-size: 15px; }
  .tabela-cartas thead { display: none; }
  .tabela-cartas tbody { display: block; }

  /* cada linha = um card */
  .tabela-cartas tbody tr,
  .tabela-cartas tbody tr:nth-child(odd),
  .tabela-cartas tbody tr:nth-child(even) {
    display: block; background: #fff;
    border: 1px solid hsl(var(--border)); border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    padding: 16px; margin-bottom: 16px;
  }
  .tabela-cartas tr.linha-destaque,
  .tabela-cartas tr.linha-destaque:nth-child(odd),
  .tabela-cartas tr.linha-destaque:nth-child(even) {
    background: hsl(42 82% 97%); border-color: hsl(var(--gold));
    box-shadow: 0 3px 16px hsl(var(--gold) / .30);
  }

  /* cada célula = uma linha "rótulo à esquerda · valor à direita" */
  .tabela-cartas tbody td {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    text-align: right; padding: 9px 0; background: transparent;
    border-bottom: 1px solid hsl(var(--border) / .55);
  }
  .tabela-cartas tbody td:last-child { border-bottom: 0; }
  .tabela-cartas tbody td[data-label]::before {
    content: attr(data-label); color: hsl(var(--muted-foreground));
    font-weight: 600; font-size: 13px; text-align: left; white-space: nowrap; flex: 0 0 auto;
  }

  /* 1ª célula (código + selo) = cabeçalho do card */
  .tabela-cartas tbody td:first-child {
    justify-content: flex-start; gap: 8px; text-align: left;
    padding: 0 0 12px; margin-bottom: 4px;
    border-bottom: 1px solid hsl(var(--border));
  }
  .tabela-cartas tr.linha-destaque td:first-child { box-shadow: none; }

  /* destaques visuais dos valores */
  .tabela-cartas .td-credito { font-size: 20px; }
  .tabela-cartas .td-entrada, .tabela-cartas .td-parcela { font-size: 15px; }

  /* status: mostra ícone + texto ("Disponível"/"Reservada") */
  .status-txt { display: inline; font-weight: 700; }
  .status-val { display: inline-flex; align-items: center; gap: 7px; }
  .tabela-cartas .status-ico svg { width: 20px; height: 20px; }

  /* botão "Quero saber mais" ocupa a largura toda e fica fácil de tocar */
  .tabela-cartas tbody td.td-acao { display: block; padding: 14px 0 2px; }
  .tabela-cartas .btn-tb { width: 100%; height: 46px; font-size: 15px; }
}
