/* ============================================================
   TÁ DE MOTO — estilos
   Mobile-first. Suba com min-width. Cores só via tokens.
   ============================================================ */

/* ---------- FONTES ---------- */
@font-face {
  font-family: "ClashGrotesk";
  src: url("../assets/fonts/ClashGrotesk-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ClashGrotesk";
  src: url("../assets/fonts/ClashGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  --azul-horizonte: #0F2340;
  --azul-rota:      #1A325C;
  --laranja-impulso:   #F47B20;
  --laranja-conquista: #FF9F43;
  --branco-caminho: #F7F7F5;
  --tinta:          #0F2340;

  --linha-suave: rgba(15, 35, 64, .12);
  --linha-clara: rgba(247, 247, 245, .16);
  --azul-particula: rgba(120, 165, 240, .55);
  --azul-brilho:    rgba(70, 120, 200, .28);
  --sombra-card: 0 8px 24px rgba(15, 35, 64, .10);
  --sombra-card-hover: 0 14px 34px rgba(15, 35, 64, .16);

  --font-body: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "ClashGrotesk", system-ui, sans-serif;

  --fs-hero:  clamp(2.5rem, 8.5vw, 4.75rem);
  --fs-h2:    clamp(1.75rem, 5vw, 2.75rem);
  --fs-h3:    1.25rem;
  --fs-body:  1.0625rem;
  --fs-small: 0.875rem;

  --space-section: clamp(3.5rem, 9vw, 6.5rem);
  --container: 70rem;
}

/* ---------- RESET ENXUTO ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--tinta);
  background: var(--branco-caminho);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 44rem; }
.section { padding-block: var(--space-section); }
.section--dark { background: linear-gradient(160deg, var(--azul-horizonte), var(--azul-rota)); color: var(--branco-caminho); }
.section--light { background: var(--branco-caminho); color: var(--tinta); }

/* ---------- TIPOGRAFIA UTIL ---------- */
.eyebrow {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--laranja-conquista);
  margin-bottom: .9rem;
  position: relative;
}
.eyebrow--dark { color: var(--laranja-impulso); }
.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -.02em;
  max-width: 18ch;
  margin-bottom: 2.25rem;
}
.section-title--light { color: var(--branco-caminho); }
.benefits .section-title { font-size: calc(var(--fs-h2) * 0.95); max-width: 19ch; }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: 0.6rem 1.6rem;
  border: none;
  border-radius: 999px;
  background: var(--laranja-impulso);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { background: var(--laranja-conquista); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { min-height: 44px; padding: .6rem 1.1rem; font-size: var(--fs-small); }
.btn--lg { min-height: 48px; padding: 0.7rem 2rem; font-size: 1.125rem; }

:focus-visible { outline: 3px solid var(--laranja-conquista); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; }

.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 100;
  background: var(--azul-horizonte); color: var(--branco-caminho);
  padding: .75rem 1.1rem; border-radius: 0 0 10px 10px; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ---------- PLACEHOLDERS DE IMAGEM ---------- */
.img-placeholder {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .35rem;
  border: 2px dashed var(--laranja-impulso); border-radius: 16px;
  background: repeating-linear-gradient(-45deg, rgba(244,123,32,.06) 0 10px, transparent 10px 20px);
  color: var(--laranja-conquista); text-align: center;
}
.img-placeholder__tag { font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; font-size: 1rem; }
.img-placeholder__size { font-size: .75rem; opacity: .85; letter-spacing: .04em; }
.img-placeholder--hero { aspect-ratio: 4 / 3; width: 100%; }
/* (placeholders de avatar removidos junto com a seção de histórias) */

/* ---------- HEADER FLUTUANTE ---------- */
.site-header { position: fixed; top: .75rem; left: 0; right: 0; z-index: 50; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  min-height: 56px; padding: .5rem .5rem .5rem 1.1rem;
  background: rgba(15, 35, 64, .82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--linha-clara);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 35, 64, .25);
}
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--branco-caminho); }
.brand-logo { display: block; height: 26px; width: auto; transition: transform .25s ease; }
.brand:hover .brand-logo { transform: translateX(2px); }
.brand-logo--footer { height: 40px; }
.brand-logo .st1 { fill: var(--branco-caminho); }
.brand-logo .st0 { fill: var(--laranja-impulso); }

/* navegação (desktop) */
.header-nav { display: none; gap: .15rem; }
.header-nav a {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: .45rem .9rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; color: var(--branco-caminho); text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.header-nav a:hover { background: rgba(247,247,245,.08); color: var(--laranja-conquista); transform: translateY(-1px); }

.header-actions { display: flex; align-items: center; gap: .35rem; flex: 0 0 auto; }
.header-cta { flex: 0 0 auto; }

/* menu (mobile) — dropdown discreto ao lado do botão */
.header-menu { position: relative; }
.header-menu-btn {
  list-style: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.header-menu-btn::-webkit-details-marker { display: none; }
.header-menu-btn:hover { background: rgba(247,247,245,.1); }
.header-menu-icon, .header-menu-icon::before, .header-menu-icon::after {
  content: ""; display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--branco-caminho); transition: transform .25s ease, opacity .2s ease;
}
.header-menu-icon { position: relative; }
.header-menu-icon::before { position: absolute; top: -6px; left: 0; }
.header-menu-icon::after { position: absolute; top: 6px; left: 0; }
.header-menu[open] .header-menu-icon { background: transparent; }
.header-menu[open] .header-menu-icon::before { transform: translateY(6px) rotate(45deg); }
.header-menu[open] .header-menu-icon::after { transform: translateY(-6px) rotate(-45deg); }
.header-menu-panel {
  position: absolute; right: 0; top: calc(100% + .6rem);
  display: flex; flex-direction: column; min-width: 210px; padding: .4rem;
  background: rgba(15, 35, 64, .97);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--linha-clara); border-radius: 16px;
  box-shadow: var(--sombra-card-hover);
}
.header-menu-panel a:not(.btn) {
  display: flex; align-items: center; min-height: 46px;
  padding: .6rem .9rem; border-radius: 10px;
  color: var(--branco-caminho); text-decoration: none; font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.header-menu-panel a:not(.btn):hover { background: rgba(247,247,245,.08); color: var(--laranja-conquista); }

@media (min-width: 900px) {
  .header-nav { display: flex; }
  .header-menu { display: none; }
  .brand-logo { height: 30px; }
}

/* ---------- 1. HERO ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(5.5rem, 14vw, 8rem) 0; --hero-origin-y: 22%; }
/* Brilho radial atrás da headline — “fonte” das partículas */
.hero-glow {
  position: absolute; left: 50%; top: var(--hero-origin-y);
  width: 78vmin; height: 78vmin; transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--azul-brilho) 0%, transparent 62%);
  pointer-events: none; z-index: 0;
}
/* Partículas azuis emanando do brilho da headline — assinatura sutil */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-particles span {
  position: absolute; left: 50%; top: var(--hero-origin-y);
  width: var(--s); height: var(--s); border-radius: 50%;
  background: var(--azul-particula);
  box-shadow: 0 0 8px 1px var(--azul-particula);
  opacity: 0;
  animation: particle-emit var(--d, 16s) ease-out calc(var(--delay, 0s) * -1) infinite;
}
@keyframes particle-emit {
  0%   { transform: translate(-50%, -50%) scale(.3); opacity: 0; }
  15%  { opacity: .7; }
  80%  { opacity: .35; }
  100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1.1); opacity: 0; }
}
.hero-inner { position: relative; z-index: 1; }
/* Layout centralizado em coluna única (wireframe) */
.hero-inner--center { text-align: center; }
.hero-inner--center .hero-copy {
  display: flex; flex-direction: column; align-items: center;
  max-width: 46rem; margin-inline: auto;
}
/* Badge em pílula */
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .85rem; border: 1px solid var(--linha-clara);
  border-radius: 999px; background: rgba(247,247,245,.04); margin-bottom: 1.4rem;
  font-size: .62rem; letter-spacing: .06em; white-space: nowrap;
}
.hero-badge__dot {
  width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: var(--laranja-impulso); box-shadow: 0 0 0 3px rgba(244,123,32,.18);
}
.hero-title { font-size: var(--fs-hero); font-weight: 700; letter-spacing: -.025em; margin-bottom: 1.1rem; text-wrap: balance; }
.hero-title__accent { color: var(--laranja-impulso); }
.hero-sub { font-size: 1.15rem; max-width: 42ch; color: rgba(247,247,245,.9); margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-direction: row; align-items: stretch; justify-content: center; gap: .6rem; margin-bottom: 2rem; }
.hero-actions .btn { flex: 1 1 0; min-width: 0; padding-inline: .9rem; font-size: 1rem; white-space: nowrap; }
/* botão laranja com hover no verde do WhatsApp */
.btn--wa-hover svg { width: 22px; height: 22px; flex: 0 0 auto; }
.btn--wa-hover:hover {
  background: #25D366;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 26px rgba(37, 211, 102, .4);
}
.btn--wa-hover:focus-visible { outline: 3px solid #25D366; }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; font-size: var(--fs-small); font-weight: 600; color: rgba(247,247,245,.8); }
.hero-trust li { position: relative; padding-left: 1.5rem; }
.hero-trust li::before {
  content: "✓"; position: absolute; left: 0; top: 50%;
  color: var(--laranja-impulso); font-weight: 700; transform: translateY(-50%);
}
.hero-media { margin-top: 3rem; width: 100%; }
.hero-img { display: block; width: 100%; max-width: 640px; height: auto; margin-inline: auto; }

/* ---------- 2. COMO FUNCIONA — linha da rota ---------- */
.route { position: relative; display: flex; flex-direction: column; gap: 2rem; padding-left: .25rem; }
.route::before {
  content: ""; position: absolute; left: 19px; top: 18px; bottom: 18px; width: 3px;
  background: linear-gradient(var(--laranja-impulso), var(--laranja-conquista)); border-radius: 3px;
}
.route-step { position: relative; display: flex; gap: 1.1rem; align-items: flex-start; }
.route-num {
  flex: 0 0 auto; display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--laranja-impulso); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  position: relative; z-index: 1; box-shadow: 0 0 0 5px var(--branco-caminho);
}
.route-body h3 { font-size: var(--fs-h3); font-weight: 700; margin-bottom: .3rem; padding-top: .35rem; }
.route-body p { color: rgba(15,35,64,.8); max-width: 42ch; }

/* ---------- 3. BENEFÍCIOS ---------- */
.benefit-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.card { border-radius: 16px; background: var(--branco-caminho); box-shadow: var(--sombra-card); padding: 1.5rem; }
.benefit { border: 1px solid var(--linha-suave); transition: transform .2s ease, box-shadow .2s ease; }
.benefit:hover { transform: translateY(-4px); box-shadow: var(--sombra-card-hover); }
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; background: rgba(244,123,32,.12);
  font-size: 1.5rem; margin-bottom: 1rem;
}
.benefit h3 { font-size: var(--fs-h3); font-weight: 700; margin-bottom: .4rem; }
.benefit p { color: rgba(15,35,64,.8); }

/* ---------- 4. FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--linha-clara); border-radius: 14px; background: rgba(247,247,245,.04); overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 56px; padding: 1rem 1.25rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: 0 0 auto; font-family: var(--font-body); font-size: 1.5rem; line-height: 1;
  color: var(--laranja-conquista); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; }
.faq-answer p { color: rgba(247,247,245,.85); max-width: 60ch; }

/* ---------- COMO FUNCIONA — moto de perfil invadindo pela direita ---------- */
.steps { position: relative; overflow: hidden; }
.steps .container { position: relative; z-index: 2; }
.route { max-width: 34rem; }

/* mobile-first: a moto entra abaixo dos passos, vazando pela direita.
   A imagem já vem enquadrada (moto na metade direita, esquerda transparente),
   então escalamos e puxamos para a esquerda para jogar o vazio para fora da tela. */
.steps-moto {
  display: block; height: auto;
  width: 190%; max-width: none;
  margin: .5rem 0 -2rem -82%;
  filter: drop-shadow(0 18px 26px rgba(15,35,64,.22));
  pointer-events: none;
}

/* ---------- HOVERS ---------- */
.route-num { transition: transform .25s ease, background .25s ease; }
.route-step:hover .route-num { transform: scale(1.12); background: var(--laranja-conquista); }
.benefit-icon { transition: transform .25s ease, background .25s ease; }
.benefit:hover .benefit-icon { transform: translateY(-3px) rotate(-6deg); background: rgba(244,123,32,.2); }
.faq-item summary { transition: background .2s ease, color .2s ease; }
.faq-item summary:hover { background: rgba(247,247,245,.07); color: var(--laranja-conquista); }
.img-placeholder { transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.img-placeholder:hover { border-color: var(--laranja-conquista); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(15,35,64,.12); }

/* ---------- 6. CTA FINAL ---------- */
.final-cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.final-cta .section-title { margin-bottom: 0; }
.final-cta p { max-width: 40ch; color: rgba(255,255,255,.95); }

/* ---------- FOOTER ---------- */
.site-footer { padding-block: 2.5rem; }
.footer-inner { display: flex; flex-direction: column; gap: .4rem; }
.footer-tag { font-size: var(--fs-small); color: rgba(247,247,245,.7); }
.footer-tag em { opacity: .7; }

/* ---------- WHATSAPP FLUTUANTE ---------- */
.wa-float {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  box-shadow: 0 10px 24px rgba(15,35,64,.3); transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.06); box-shadow: var(--sombra-card-hover); }

/* ---------- CABE NO ORÇAMENTO ---------- */
.budget-inner { display: flex; flex-direction: column; gap: 2.5rem; }
.budget-copy .section-title { margin-bottom: 1.1rem; }
.budget-lead { color: rgba(247,247,245,.9); max-width: 46ch; }
.budget-visuals { position: relative; max-width: 460px; margin-inline: auto; padding-bottom: 3.5rem; }

.budget-card {
  background: rgba(247,247,245,.05);
  border: 1px solid var(--linha-clara);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.budget-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,123,32,.5);
  box-shadow: 0 16px 40px rgba(15,35,64,.3);
}

/* donut */
.donut-figure { margin: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.donut-head, .cal-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cal-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.cal-count { font-size: var(--fs-small); color: rgba(247,247,245,.7); flex: 0 0 auto; }
.donut-tag {
  flex: 0 0 auto;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(247,247,245,.7); border: 1px solid var(--linha-clara);
  padding: .2rem .55rem; border-radius: 999px;
}
.donut-wrap { display: flex; justify-content: center; order: 3; }
.donut { width: 240px; height: 240px; transition: transform .3s ease; }
.donut-figure:hover .donut { transform: scale(1.05); }
.donut-track { stroke: rgba(247,247,245,.8); }
.donut-slice { stroke: var(--laranja-impulso); stroke-linecap: round; }
.donut-center { font-family: var(--font-display); }
.donut-value { fill: var(--branco-caminho); font-weight: 700; font-size: 24px; }
.donut-unit { fill: rgba(247,247,245,.7); font-size: 13px; }

.donut-legend { display: flex; flex-direction: row; flex-wrap: wrap; gap: .3rem 1rem; font-size: var(--fs-small); order: 2; }
.donut-legend li { display: flex; align-items: center; gap: .6rem; }
.donut-legend li:hover .donut-dot { transform: scale(1.25); }
.donut-dot { width: 12px; height: 12px; border-radius: 3px; flex: 0 0 auto; transition: transform .2s ease; }
.donut-dot--moto { background: var(--laranja-impulso); }
.donut-dot--voce { background: rgba(247,247,245,.8); }

/* calendário de progresso */
.cal-figure { margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .4rem; }
.cal-cell {
  aspect-ratio: 1; border-radius: 4px;
  display: grid; place-items: center;
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(.6rem, 1.5vw, .72rem); line-height: 1;
  transition: transform .2s ease, filter .2s ease;
}
.cal-cell--done {
  background: linear-gradient(145deg, var(--laranja-conquista), var(--laranja-impulso));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  color: var(--azul-horizonte);
}
.cal-cell--done:hover { transform: scale(1.18); filter: brightness(1.12); }
.cal-cell--todo {
  border: 1px solid rgba(247,247,245,.4);
  background: linear-gradient(145deg, rgba(247,247,245,.07), rgba(247,247,245,.02));
  color: rgba(247,247,245,.7);
}
.cal-cell--todo:hover { transform: scale(1.18); border-color: var(--laranja-conquista); }
.cal-note { font-size: var(--fs-small); color: rgba(247,247,245,.9); }
.cal-note strong { color: var(--laranja-conquista); }

/* gráficos sobrepostos: calendário flutua sobre o donut */
.cal-float {
  position: absolute;
  left: 0; bottom: -3.25rem;
  width: 60%; min-width: 214px; max-width: 270px;
  margin: 0; z-index: 2;
  padding: .9rem 1rem; gap: .55rem;
  background: var(--azul-rota);
  border: 1px solid rgba(244,123,32,.45);
  box-shadow: 0 22px 48px rgba(0,0,0,.5);
}
.cal-float .cal-title { font-size: .92rem; }
.cal-float .cal-grid { gap: .28rem; }
.cal-float .cal-cell { font-size: .56rem; border-radius: 3px; }
.cal-float .cal-note { font-size: .72rem; }

/* animação sutil do donut (só fora de reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .donut-slice {
    stroke-dashoffset: 176;
    animation: donut-draw .9s ease .15s forwards, donut-pulse 3.6s ease-in-out 1.3s infinite;
  }
  /* quadrados se completando em onda, em loop */
  .cal-cell--done {
    animation: cal-fill 6s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 120ms);
  }
  /* o próximo mês pisca discretamente */
  .cal-cell--next { animation: cal-next 2.2s ease-in-out infinite; }
}
@keyframes donut-draw { to { stroke-dashoffset: 0; } }
@keyframes donut-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(244,123,32,0)); }
  50% { filter: drop-shadow(0 0 7px rgba(244,123,32,.6)); }
}
@keyframes cal-fill {
  0% { opacity: .15; }
  12% { opacity: 1; }
  92% { opacity: 1; }
  100% { opacity: .15; }
}
@keyframes cal-next {
  0%, 100% { border-color: rgba(247,247,245,.4); box-shadow: 0 0 0 rgba(244,123,32,0); }
  50% { border-color: var(--laranja-impulso); box-shadow: 0 0 8px rgba(244,123,32,.5); }
}

/* ---------- VEM JUNTO (destaque da moto) ---------- */
.vem-inner { display: flex; flex-direction: column; gap: 2rem; }
.vem-head .section-title { margin-bottom: 1rem; }
.vem-lead { color: rgba(15,35,64,.8); max-width: 46ch; }

/* carrossel da moto (galeria estilo Webmotors) */
.vem-photo { display: flex; }
.moto-carousel { display: flex; flex-direction: column; gap: .75rem; width: 100%; }
.moto-main {
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(15,35,64,.1);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
/* padrão desta seção: imagens preenchem todo o bloco (cover) */
.moto-main-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.moto-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.moto-thumb {
  flex: 0 0 auto;
  width: 64px; height: 64px; padding: 0; overflow: hidden;
  border: 2px solid transparent; border-radius: 10px;
  background: rgba(15,35,64,.05); cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}
.moto-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.moto-thumb:hover { transform: translateY(-2px); }
.moto-thumb.is-active { border-color: var(--laranja-impulso); }
.moto-thumb:focus-visible { outline: 3px solid var(--laranja-conquista); outline-offset: 2px; }
/* slots vazios (aguardando fotos) */
.moto-thumb--empty {
  display: grid; place-items: center; cursor: default;
  border: 2px dashed rgba(15,35,64,.22);
  background: rgba(15,35,64,.03);
}
.moto-thumb--empty::after { content: "+"; color: rgba(15,35,64,.3); font-size: 1.3rem; line-height: 1; }
.moto-thumb--empty:hover { transform: none; }

/* card do seguro (único destaque) */
.seguro-card {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, rgba(15,35,64,.06), rgba(244,123,32,.07));
  border: 1.5px solid var(--laranja-impulso);
  border-radius: 18px;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}
.seguro-watermark {
  position: absolute; right: -16px; top: -16px;
  width: 140px; height: 140px;
  fill: var(--laranja-impulso); opacity: .08; pointer-events: none;
}
.seguro-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; position: relative; }
.seguro-ico {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--laranja-impulso); color: #fff;
}
.seguro-ico svg { width: 30px; height: 30px; }
.seguro-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--laranja-impulso);
  margin-bottom: .15rem;
}
.seguro-card h3 { font-size: 1.5rem; font-weight: 700; }
.seguro-card p { color: rgba(15,35,64,.85); max-width: 52ch; position: relative; }

@media (min-width: 900px) {
  .vem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "photo head" "photo list";
    grid-template-rows: auto 1fr;
    column-gap: 3.5rem; row-gap: 1.25rem;
    align-items: start;
  }
  .vem-photo { grid-area: photo; align-self: start; }
  .vem-head { grid-area: head; }
  .vem-list { grid-area: list; }
  .moto-main { min-height: 420px; }
}

/* ---------- BREAKPOINTS ---------- */
@media (min-width: 600px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { align-items: center; gap: 1rem; }
  .hero-actions .btn { flex: 0 1 auto; padding-inline: 2rem; font-size: 1.125rem; }
}
@media (min-width: 900px) {
  .img-placeholder--hero { aspect-ratio: 16 / 9; }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .wa-float { width: 60px; height: 60px; right: 1.5rem; bottom: 1.5rem; }
  .steps .container { min-height: 30rem; }
  .steps-copy { max-width: 30rem; }
  .route { max-width: 30rem; }
  .steps-moto {
    position: absolute; top: 50%; right: -3%;
    width: 88%; max-width: 1400px; margin: 0;
    transform: translateY(-50%);
    filter: drop-shadow(0 28px 34px rgba(15,35,64,.28));
  }
  .budget-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3.5rem; }
  .donut { width: 260px; height: 260px; }
}

/* ---------- MOVIMENTO REDUZIDO ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero-particles { display: none; }
}
