/* =============================================================
   LOQUIFY — Sua moto para trabalhar
   Landing page mobile-first
   ============================================================= */

:root{
  /* Cores */
  --bg:#08172a;
  --bg-2:#0a1c33;
  --card:#0d2138;
  --card-2:#102845;
  --line:#1a3552;
  --line-2:#20456a;
  --orange:#f07c1f;
  --orange-2:#ff9a3d;
  --orange-dark:#d96a10;
  --text:#ffffff;
  --muted:#93a9c0;
  --muted-2:#c3d4e5;

  /* Medidas */
  --wrap:520px;
  --pad:18px;
  --r-sm:10px;
  --r:14px;
  --r-lg:18px;
  --header-h:74px;
}

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

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-h) + 12px);
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  font-size:15px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,p,figure{ margin:0; }
button{ font:inherit; color:inherit; }

.wrap{
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:var(--pad);
  position:relative;
  z-index:2;
}

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

/* ---------- Ícones ---------- */
.ico{
  /* block: SVG é inline por padrão e ganha folga de baseline embaixo,
     o que desalinha o glifo dentro dos círculos */
  display:block;
  width:20px; height:20px;
  flex:none;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.ico-lg{ width:26px; height:26px; }
.ico-xl{ width:34px; height:34px; stroke-width:1.7; }
.ico-accent{ color:var(--orange); }
.accent{ color:var(--orange); }

/* =============================================================
   HEADER
   ============================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(8,23,42,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
  /* min-height, não height: com fonte grande do sistema o conteúdo
     cresce em vez de transbordar por cima da marca */
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:11px;
  min-width:0;          /* deixa encolher em vez de empurrar o vizinho */
}
.brand-text{ min-width:0; }
.brand-text strong,
.brand-text small{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-mark{
  width:40px; height:40px;
  flex:none;
  border-radius:11px;
  box-shadow:0 6px 18px -8px rgba(240,124,31,.9);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text strong{
  font-size:23px;
  font-weight:800;
  letter-spacing:-.02em;
}
.brand-text small{
  font-size:11px;
  font-weight:400;
  color:var(--muted);
  margin-top:3px;
}

.nav-toggle{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:transparent;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease;
}
.nav-toggle:hover{ background:rgba(255,255,255,.06); }
.nav-toggle .ico{ width:22px; height:22px; stroke-width:2; }
.nav-toggle .ico-close{ display:none; }
.nav-toggle[aria-expanded="true"] .ico-open{ display:none; }
.nav-toggle[aria-expanded="true"] .ico-close{ display:block; }

.nav-menu{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .28s ease;
  border-top:1px solid transparent;
}
.nav-menu > .wrap{ overflow:hidden; }
.nav-menu.is-open{
  grid-template-rows:1fr;
  border-top-color:rgba(255,255,255,.07);
}
.nav-menu a{
  display:block;
  padding:13px 2px;
  font-size:15px;
  font-weight:600;
  color:var(--muted-2);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-menu a:hover{ color:#fff; }
.nav-menu a:first-child{ margin-top:6px; }
.nav-menu .nav-cta .ico{ width:18px; height:18px; }
.nav-menu .nav-cta{
  display:flex; align-items:center; gap:9px;
  justify-content:center;
  margin:14px 0 18px;
  padding:13px;
  border-radius:var(--r);
  border-bottom:0;
  background:linear-gradient(180deg,var(--orange-2),var(--orange));
  color:#fff;
  font-weight:700;
}

/* =============================================================
   TIPOGRAFIA DE SEÇÃO
   ============================================================= */
.title{
  font-size:40px;
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.035em;
}
.title--sm{ font-size:34px; }
.title--row{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:clamp(18px,5.4vw,22px);
  letter-spacing:-.02em;
  line-height:1.2;
}
.title--row .ico{ margin-top:1px; }
.title--fit{ font-size:clamp(16px,4.7vw,20px); }

.lead{
  margin-top:14px;
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
}
.lead strong{ color:#fff; font-weight:700; }
.lead--center{ text-align:center; margin-top:8px; font-size:13px; }

.eyebrow{
  display:flex; align-items:center; gap:8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:14px;
}
.eyebrow .ico{ width:18px; height:18px; }

.meta-line{
  display:flex; align-items:center; gap:8px;
  margin-top:22px;
  font-size:14px;
  color:var(--muted-2);
}
.meta-line strong{ font-weight:800; color:#fff; }
.meta-line strong.accent{ color:var(--orange); }
.meta-line--center{ justify-content:center; margin-top:16px; font-size:13.5px; }

/* =============================================================
   1 · HERO
   ============================================================= */
.hero{
  position:relative;
  padding:26px 0 0;
  background:
    radial-gradient(120% 60% at 50% -10%,rgba(29,74,124,.35),transparent 60%),
    linear-gradient(180deg,var(--bg) 0%,var(--bg-2) 100%);
  overflow:hidden;
  /* grupo de mesclagem: faz o "screen" das fotos ver o fundo da seção */
  isolation:isolate;
}

/* =============================================================
   PLANOS
   ============================================================= */
.plans{
  margin-top:16px;
  display:grid;
  gap:10px;
}
.plan{
  display:flex;
  align-items:center;
  gap:14px;
  padding:9px 16px 9px 10px;
  border-radius:var(--r);
  background:var(--card);
  border:1px solid var(--line);
  transition:border-color .18s ease,transform .18s ease,background .18s ease;
}
.plan:hover{
  border-color:rgba(240,124,31,.55);
  background:var(--card-2);
  transform:translateY(-1px);
}
.plan-badge{
  width:52px; height:52px;
  flex:none;
  border-radius:12px;
  display:grid; place-content:center; justify-items:center;
  background:linear-gradient(165deg,var(--orange-2),var(--orange));
  color:#fff;
  line-height:1;
  box-shadow:0 8px 18px -10px rgba(240,124,31,.95);
}
.plan-badge b{ font-size:19px; font-weight:800; letter-spacing:-.02em; }
.plan-badge i{ font-size:10px; font-style:normal; font-weight:600; margin-top:3px; }

.plan-sep{
  width:1px; height:34px;
  background:var(--line-2);
  flex:none;
}

.plan-price{
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-left:auto;
  line-height:1;
}
.plan-price em{ font-style:normal; font-size:19px; font-weight:700; }
.plan-price b{ font-size:36px; font-weight:800; letter-spacing:-.035em; }
.plan-price i{ font-style:normal; font-size:11px; font-weight:500; color:var(--muted); }

/* ---------- Promoção ---------- */
.promo{
  display:flex;
  align-items:center;
  gap:11px;
  margin-top:14px;
  padding:11px 13px;
  border-radius:var(--r);
  border:1px solid rgba(240,124,31,.42);
  background:rgba(240,124,31,.08);
}
.promo-icon{
  width:34px; height:34px;
  flex:none;
  border-radius:50%;
  display:grid; place-items:center;
  color:var(--orange);
  background:rgba(240,124,31,.14);
  border:1px solid rgba(240,124,31,.45);
}
.promo-icon .ico{ width:17px; height:17px; }
.promo p{
  font-size:12.5px;
  line-height:1.4;
  color:var(--muted-2);
}
.promo strong{ font-weight:800; }

/* ---------- Condições da locação (acima do botão) ----------
   2x2 com o ícone ao lado do texto: em 4 colunas a coluna da
   oferta é estreita demais e o texto quebra em 3 linhas. */
.hero-terms{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
  margin-top:14px;
}
.hero-terms li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 12px;
  border-radius:var(--r-sm);
  background:var(--card);
  border:1px solid var(--line);
}
.hero-terms .ico{ width:22px; height:22px; flex:none; }
.hero-terms li > span{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.hero-terms b{
  font-size:11.5px;
  font-weight:800;
  line-height:1.2;
}
.hero-terms i{
  margin-top:3px;
  font-style:normal;
  font-size:10px;
  line-height:1.3;
  color:var(--muted);
}

/* =============================================================
   BOTÃO WHATSAPP
   ============================================================= */
.btn-wpp{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:16px;
  padding:14px 18px;
  border-radius:var(--r-lg);
  font-size:18px;
  font-weight:800;
  letter-spacing:-.01em;
  color:#fff;
  background:linear-gradient(180deg,#f68a2a,#e0700f);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 16px 30px -16px rgba(240,124,31,.95);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}
.btn-wpp:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
  box-shadow:0 20px 34px -14px rgba(240,124,31,1);
}
.btn-wpp:active{ transform:translateY(0); }
.btn-wpp-icon{
  width:34px; height:34px;
  flex:none;
  border-radius:50%;
  display:grid; place-items:center;
  background:#fff;
  color:var(--orange);
}
/* o glifo sólido ocupa a caixa toda: ~59% do círculo é a proporção certa */
.btn-wpp-icon .ico{ width:20px; height:20px; }

.hint{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:7px;
  margin-top:12px;
  text-align:center;
  font-size:12px;
  line-height:1.4;
  color:var(--muted);
}
.hint .ico{ width:15px; height:15px; margin-top:2px; }


/* =============================================================
   SEÇÕES 2 e 3
   ============================================================= */
.section{
  position:relative;
  padding:34px 0 0;
  overflow:hidden;
  isolation:isolate;
}
.motos{ background:linear-gradient(180deg,var(--bg-2),#091a30); }
.aquisicao{ background:linear-gradient(180deg,#0a1c33,#08192e); padding-bottom:38px; }
.incluso{ background:linear-gradient(180deg,#08192e,var(--bg)); }

/* Bloco Aquisição embutido na home: emenda as cores com .motos e .incluso.
   O fundo do .acq-hero precisa continuar OPACO — ele é o grupo de mesclagem
   que faz o "screen" da foto funcionar. */
.aquisicao .acq-hero{
  background:
    radial-gradient(90% 70% at 78% 22%,rgba(29,74,124,.42),transparent 62%),
    linear-gradient(180deg,#091a30 0%,#0a1c33 100%);
}
.aquisicao .acq-section{ background:none; }
.incluso .title--row{ margin-top:34px; }
.incluso .title--row:first-of-type{ margin-top:0; }

/* ---------- Cards ---------- */
.cards{
  margin-top:18px;
  display:grid;
  gap:11px;
}
.cards--2{ grid-template-columns:repeat(2,1fr); }
.cards--3{ grid-template-columns:repeat(3,1fr); }

.card{
  padding:14px;
  border-radius:var(--r);
  background:var(--card);
  border:1px solid var(--line);
  transition:border-color .18s ease,background .18s ease,transform .18s ease;
}
.card:hover{
  border-color:rgba(240,124,31,.45);
  background:var(--card-2);
  transform:translateY(-2px);
}
.card h3{
  margin-top:10px;
  font-size:16px;
  font-weight:800;
  letter-spacing:-.015em;
  line-height:1.15;
}
.card p{
  margin-top:5px;
  font-size:12px;
  line-height:1.4;
  color:var(--muted);
}
.cards--inline .card{
  display:flex;
  align-items:center;
  gap:11px;
  padding:13px 12px;
}
.cards--inline .card h3{ margin-top:0; font-size:13.5px; font-weight:700; }
.card--center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
  padding:15px 8px;
}
.card--center h3{ margin-top:0; font-size:13px; font-weight:700; }

/* ---------- Pills ---------- */
.pills{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
}
.pills li{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:10px 6px;
  border-radius:var(--r-sm);
  background:var(--card);
  border:1px solid var(--line);
  font-size:11.5px;
  font-weight:600;
  color:var(--muted-2);
  white-space:nowrap;
}
.pills .ico{ width:16px; height:16px; }

/* ---------- Nota destacada ---------- */
.note{
  display:flex;
  align-items:center;
  gap:13px;
  margin-top:16px;
  padding:14px 15px;
  border-radius:var(--r);
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}
.note strong{
  display:block;
  font-size:14.5px;
  font-weight:800;
  letter-spacing:-.01em;
  margin-bottom:3px;
  color:#fff;
}
.note p{
  font-size:12px;
  line-height:1.4;
  color:var(--muted);
}

/* ---------- Rodapé de observação ---------- */
.footnote{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:7px;
  margin-top:13px;
  text-align:center;
  font-size:11.5px;
  line-height:1.4;
  color:var(--muted);
}
.footnote .ico{ width:14px; height:14px; margin-top:2px; }

/* ---------- Checklist ---------- */
.checklist{
  margin-top:16px;
  padding:4px 15px;
  border-radius:var(--r);
  background:var(--card);
  border:1px solid var(--line);
}
.checklist li{
  display:flex;
  align-items:center;
  gap:11px;
  padding:13px 0;
  font-size:13.5px;
  color:var(--muted-2);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.checklist li:last-child{ border-bottom:0; }
.checklist .ico{ width:20px; height:20px; }

/* ---------- Tag ---------- */
.tag{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:fit-content;
  margin:16px auto 0;
  padding:9px 16px;
  border-radius:999px;
  border:1px solid rgba(240,124,31,.42);
  background:rgba(240,124,31,.07);
  font-size:12.5px;
  color:var(--muted-2);
}
.tag .ico{ width:16px; height:16px; }
.tag strong{ font-weight:800; }

/* =============================================================
   FOTOS
   ============================================================= */
.photo{
  position:relative;
  /* sem z-index de propósito: um contexto de empilhamento aqui isolaria o blend */
}
.photo img{
  width:100%;
  height:auto;
  /* o JPEG tem fundo preto: "screen" derrete o preto no azul da página */
  mix-blend-mode:screen;
  filter:contrast(1.08) saturate(1.06);
}
.photo.is-empty{ display:none; }

/* imagem já recortada (PNG/WebP com alpha): não precisa do blend */
.photo--cutout img{
  mix-blend-mode:normal;
  filter:none;
}

/* brilho de apoio embaixo da moto */
.photo::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:6%;
  translate:-50% 0;
  width:78%;
  height:40px;
  border-radius:50%;
  background:radial-gradient(ellipse at center,rgba(240,124,31,.20),transparent 70%);
  filter:blur(10px);
  z-index:-1;
}

/* a figura fica dentro de .hero-inner: o padding vem do .wrap */
.photo--hero{ margin-top:12px; }
.photo--hero img{
  max-width:400px;
  margin:0 auto -6px;
}

.photo--motos{
  margin-top:16px;
  padding:0 var(--pad);
  max-width:var(--wrap);
  margin-inline:auto;
}

.photo--rider{
  position:absolute;
  right:-46px;
  bottom:24px;
  width:250px;
  padding:0;
  pointer-events:none;
}
.photo--rider::after{ display:none; }
.photo--rider img{
  /* opacidade no próprio elemento mesclado — no wrapper ela isolaria o blend */
  opacity:.42;
  filter:contrast(1.05) saturate(.75) brightness(.8);
}

/* =============================================================
   ELEMENTOS DECORATIVOS
   ============================================================= */
/* anéis concêntricos (canto inferior direito do hero) */
.deco-rings{
  position:absolute;
  right:-120px;
  bottom:-140px;
  width:420px; height:420px;
  border-radius:50%;
  background:repeating-radial-gradient(
    circle at center,
    rgba(120,175,235,.07) 0 1px,
    transparent 1px 46px
  );
  pointer-events:none;
  z-index:0;
}

/* arcos atrás das motos */
.deco-arcs{
  position:absolute;
  left:50%;
  bottom:8%;
  translate:-50% 0;
  width:min(680px,150%);
  aspect-ratio:1;
  border-radius:50%;
  background:repeating-radial-gradient(
    circle at center,
    rgba(120,175,235,.09) 0 1.5px,
    transparent 1.5px 40px
  );
  mask-image:linear-gradient(180deg,transparent 6%,#000 42%,#000 72%,transparent 92%);
  -webkit-mask-image:linear-gradient(180deg,transparent 6%,#000 42%,#000 72%,transparent 92%);
  pointer-events:none;
  z-index:-1;
}

/* trama de pontos (canto superior direito) */
.deco-dots{
  position:absolute;
  top:24px;
  right:0;
  width:120px; height:230px;
  background-image:radial-gradient(rgba(150,195,245,.22) 1px,transparent 1px);
  background-size:11px 11px;
  mask-image:linear-gradient(200deg,#000,transparent 75%);
  -webkit-mask-image:linear-gradient(200deg,#000,transparent 75%);
  pointer-events:none;
  z-index:0;
}

/* silhueta da cidade */
.skyline{
  display:block;
  width:100%;
  height:78px;
  margin-top:22px;
  fill:rgba(255,255,255,.045);
  position:relative;
  z-index:1;
}

/* =============================================================
   RODAPÉ
   ============================================================= */
.site-footer{
  background:#061323;
  border-top:1px solid rgba(255,255,255,.07);
  padding:28px 0 34px;
}
.site-footer .brand{ margin-bottom:14px; }
.site-footer p{
  font-size:12.5px;
  line-height:1.5;
  color:var(--muted);
  max-width:34ch;
}
.site-footer small{
  display:block;
  margin-top:16px;
  font-size:11.5px;
  line-height:1.6;
  color:#5f7691;
}
.credit{ display:block; }
.credit a{
  color:var(--muted);
  border-bottom:1px solid rgba(147,169,192,.35);
  transition:color .18s ease,border-color .18s ease;
}
.credit a:hover{ color:var(--orange); border-bottom-color:var(--orange); }

/* =============================================================
   WHATSAPP FLUTUANTE
   Círculo no canto; no desktop o rótulo abre no hover.
   ============================================================= */
.wpp-float{
  position:fixed;
  right:16px;
  bottom:calc(16px + env(safe-area-inset-bottom,0px));
  z-index:60;
  /* grid + place-items garante o glifo no centro exato do círculo */
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  /* verde do WhatsApp */
  background:linear-gradient(180deg,#2ee36f,#1faa50);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:
    0 14px 30px -10px rgba(37,211,102,.75),
    0 4px 14px rgba(0,0,0,.45);
  color:#fff;
  transition:transform .2s ease,filter .2s ease;
}
.wpp-float:hover{ transform:translateY(-2px); filter:brightness(1.06); }
.wpp-float:active{ transform:translateY(0); }
.wpp-float .ico{ width:32px; height:32px; }

/* anel pulsante — desligado em prefers-reduced-motion mais abaixo */
.wpp-float::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  border:2px solid rgba(37,211,102,.7);
  animation:wpp-pulse 2.8s ease-out infinite;
  pointer-events:none;
}
@keyframes wpp-pulse{
  0%{ transform:scale(1); opacity:.75; }
  70%,100%{ transform:scale(1.45); opacity:0; }
}

/* =============================================================
   FOCO ACESSÍVEL
   ============================================================= */
a:focus-visible,button:focus-visible{
  outline:2px solid var(--orange-2);
  outline-offset:3px;
  border-radius:8px;
}

/* =============================================================
   TELAS MAIORES
   ============================================================= */
@media (min-width:560px){
  :root{ --pad:24px; }
  .title{ font-size:48px; }
  .title--sm{ font-size:40px; }
  .title--row{ font-size:26px; }
  .lead{ font-size:15px; }
  .plan-price b{ font-size:40px; }
  .pills li{ font-size:12.5px; }
  .deco-dots{ width:150px; }
}

@media (min-width:900px){
  :root{ --wrap:1080px; --pad:40px; --header-h:82px; }

  /* -----------------------------------------------------------
     Hero em faixas, não em duas torres.
     Linha 1: texto | moto   ·   Linha 2: os 4 planos lado a lado
     Linha 3: caução+promoção | condições   ·   Linha 4: CTA
     As áreas nomeadas deixam a ordem do HTML livre — no mobile
     tudo empilha na ordem original (texto, planos, ..., moto).
     ----------------------------------------------------------- */
  .hero{ padding:60px 0 40px; }
  .hero-inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    grid-template-areas:
      "copy  moto"
      "plans plans"
      "notes terms"
      "cta   cta";
    column-gap:56px;
    row-gap:30px;
  }

  .hero-copy{ grid-area:copy; align-self:center; }
  .hero-copy .title{ font-size:clamp(36px,3.5vw,45px); }
  .hero-copy .lead{ font-size:16px; max-width:44ch; }
  .hero-copy .meta-line{ margin-top:26px; font-size:15px; }

  .photo--hero{ grid-area:moto; align-self:center; margin:0; }
  .photo--hero img{ width:100%; max-width:520px; margin:0 0 0 auto; }

  /* os 4 planos numa linha só, varrendo a largura toda */
  .plans{
    grid-area:plans;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
    margin:0;
  }
  .plan{ padding:10px 14px 10px 10px; gap:11px; }
  .plan-badge{ width:48px; height:48px; }
  .plan-badge b{ font-size:18px; }
  .plan-price em{ font-size:16px; }
  .plan-price b{ font-size:30px; }
  .plan-price i{ font-size:10px; }

  .hero-notes{ grid-area:notes; }
  .hero-notes .meta-line--center{ margin-top:0; }
  .hero-notes .promo{ margin-top:12px; }

  .hero-terms{
    grid-area:terms;
    gap:10px;
    margin:0;
    align-content:start;
  }
  .hero-terms li{ padding:13px 14px; gap:11px; }
  .hero-terms .ico{ width:24px; height:24px; }
  .hero-terms b{ font-size:12.5px; }
  .hero-terms i{ font-size:10.5px; }

  .hero-cta{ grid-area:cta; }
  .hero-cta .btn-wpp{ margin-top:0; }

  .section{ padding:80px 0 0; }
  .motos .eyebrow,
  .motos .title--sm,
  .motos .lead{
    text-align:center;
    justify-content:center;
    /* sem isto a caixa de 52ch fica à esquerda e o texto centraliza dentro dela */
    margin-inline:auto;
  }
  .cards--2{ grid-template-columns:repeat(4,1fr); gap:14px; }
  .cards--inline{ grid-template-columns:repeat(3,1fr); max-width:900px; margin-inline:auto; }
  .incluso .title--row{ justify-content:center; margin-top:8px; }
  .incluso .title--row + .cards,
  .incluso .title--row + .checklist{ margin-top:20px; }
  .checklist{ max-width:640px; margin-inline:auto; }
  .cards--3{ max-width:640px; margin-inline:auto; }
  .photo--motos img{ max-width:720px; margin-inline:auto; }
  .btn-wpp{ max-width:420px; margin-inline:auto; }
  .lead{ max-width:52ch; }
  .lead--center{ margin-inline:auto; }
  .pills{ max-width:640px; margin-inline:auto; }
  .note{ max-width:640px; margin-inline:auto; }
  /* a moto de fundo só aparece no mobile */
  .photo--rider{ display:none; }
  .skyline{ height:120px; }

  .site-footer .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:16px;
  }
  .site-footer .brand{ margin-bottom:0; }
  .site-footer small{ margin-top:0; }

  .wpp-float{ right:24px; bottom:24px; width:64px; height:64px; }
  .wpp-float .ico{ width:35px; height:35px; }
}

/* =============================================================
   MENU HORIZONTAL
   Só a partir de 1150px: abaixo disso os rótulos não cabem ao
   lado da marca e o menu passaria por cima dela.
   ============================================================= */
@media (min-width:1150px){
  .nav-toggle{ display:none; }
  .nav-menu{
    position:absolute;
    inset:0;
    grid-template-rows:1fr;
    border-top:0;
    pointer-events:none;
  }
  .nav-menu > .wrap{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:clamp(15px,1.7vw,26px);
    height:var(--header-h);
    max-width:var(--wrap);
    padding-left:265px;      /* espaço reservado para a marca */
    overflow:visible;
  }
  .nav-menu > .wrap > *{ pointer-events:auto; }
  .nav-menu a,
  .nav-menu a:first-child{
    border-bottom:0;
    margin-top:0;
    padding:6px 0;
    font-size:14.5px;
    white-space:nowrap;
  }
  .nav-menu .nav-cta{ margin:0; padding:11px 18px; font-size:14.5px; }
}

/* =============================================================
   MOVIMENTO REDUZIDO
   ============================================================= */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ transition-duration:.01ms !important; animation-duration:.01ms !important; }
}
