/* =================================================================
   NA ALTA MOTO SHOP — Stylesheet
   Aesthetic: bold, urbano, motorcycle-culture
   Paleta: preto, vermelho racing, branco, detalhes em amarelo
   ================================================================= */

/* ---------- 1) TOKENS ---------- */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --line: #222222;
  --line-2: #2a2a2a;
  --fg: #f7f5f2;          /* branco com leve toque quente */
  --fg-dim: #b5b1aa;
  --fg-mute: #6e6a63;

  --red: #0096a3;         /* primary brand — teal */
  --red-2: #007079;       /* darker teal */
  --yellow: #ffb800;      /* highlight quente */

  --radius: 4px;
  --radius-lg: 8px;

  --maxw: 1280px;
  --pad: clamp(16px, 4vw, 48px);

  --f-display: "Anton", "Archivo", Impact, sans-serif;
  --f-body: "Archivo", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- 2) RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.mono { font-family: var(--f-mono); letter-spacing: .02em; text-transform: uppercase; font-size: 12px; color: var(--fg-dim); font-weight: 600; }

/* ---------- 3) NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10,10,10,.92);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
}
.nav__logo { height: 78px; width: auto; filter: brightness(1); }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--fg-dim);
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--fg); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: var(--radius);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav__cta:hover { background: var(--red-2); transform: translateY(-1px); }
.nav__cta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #20e070;
  box-shadow: 0 0 0 3px rgba(32, 224, 112, .25);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(32,224,112,.25); }
  50% { box-shadow: 0 0 0 6px rgba(32,224,112,0); }
}

.nav__burger {
  display: none;
  background: none; border: none; padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--fg); margin: 5px 0;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 4) HERO ---------- */
.hero {
  position: relative;
  padding: 140px 0 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,150,163,.20) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 80%, rgba(255,184,0,.06) 0%, transparent 50%),
    var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  z-index: -1;
}
.hero__stripes {
  position: absolute;
  top: 0; right: -10%;
  width: 60%; height: 100%;
  display: flex; gap: 24px;
  transform: skewX(-18deg);
  z-index: -1;
  opacity: .5;
}
.hero__stripes span {
  display: block; width: 60px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--red) 50%, transparent);
  opacity: .15;
  animation: stripe-shimmer 4s infinite ease-in-out;
}
.hero__stripes span:nth-child(2) { animation-delay: .4s; background: linear-gradient(180deg, transparent, var(--yellow) 50%, transparent); opacity: .08; }
.hero__stripes span:nth-child(3) { animation-delay: .8s; }
.hero__stripes span:nth-child(4) { animation-delay: 1.2s; opacity: .08; }
@keyframes stripe-shimmer {
  0%, 100% { transform: translateY(0); opacity: .15; }
  50% { transform: translateY(-12px); opacity: .25; }
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 28px;
}
.eyebrow__bar { width: 32px; height: 2px; background: var(--red); }
.eyebrow__sep { color: var(--fg-mute); }

/* Status pill (aberto/fechado agora) */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32, 224, 112, .12);
  border: 1px solid rgba(32, 224, 112, .35);
  color: #50e98a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
}
.status.is-closed {
  background: rgba(255, 80, 80, .12);
  border-color: rgba(255, 80, 80, .35);
  color: #ff8080;
}
.status__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(80, 233, 138, .25);
  animation: pulse 1.6s infinite;
}
.status.is-closed .status__dot { box-shadow: 0 0 0 3px rgba(255, 80, 80, .25); }

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 8vw, 124px);
  line-height: .9;
  letter-spacing: -.005em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 28px;
}
/* Variante de duas linhas — frases mais longas, reduz tamanho */
.hero__title--two {
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: .95;
}
.hero__title em {
  font-style: italic;
  font-family: var(--f-display);
  color: var(--fg);
  position: relative;
  display: inline-block;
  transform: skewX(-6deg);
}
.hero__title .slash {
  position: relative;
  display: inline-block;
  font-style: italic;
  transform: skewX(-6deg);
}
/* Marca de pneu removida */
.hero__title--red { color: var(--red); }

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-dim);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex; gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero__stats li { display: flex; flex-direction: column; gap: 6px; }
.hero__stats strong {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: var(--fg);
}
.hero__stats span {
  font-size: 12px;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Visual lateral */
.hero__visual { position: relative; height: clamp(420px, 70vh, 620px); }
.hero__photo {
  position: relative;
  height: 100%;
  border: 1px solid var(--line);
  background: var(--bg-2);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  overflow: hidden;
}
.hero__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  /* leve clarear pra valorizar a fachada e o céu sem queimar */
  filter: brightness(1.18) contrast(1.04) saturate(1.06);
}
/* sem máscara escura sobre a foto */

/* Placeholder antigo (mantido como fallback) */
.hero__placeholder {
  position: relative;
  height: 100%;
  border: 1px solid var(--line);
  background: var(--bg-2);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  overflow: hidden;
}
.hero__svg { width: 100%; height: 100%; opacity: .6; }
.hero__placeholder-label {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero__placeholder-label span:last-child {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--fg-mute);
}
.hero__placeholder-label .mono {
  background: var(--red);
  color: #fff;
  display: inline-block;
  width: max-content;
  padding: 3px 8px;
  font-size: 11px;
}

.hero__tag {
  position: absolute;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  padding: 10px 14px;
  display: flex; flex-direction: column;
  gap: 2px;
}
.hero__tag strong {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--fg);
}
.hero__tag .mono { font-size: 10px; color: var(--red); }
.hero__tag--1 { top: 28px; left: 28px; animation: float 5s infinite ease-in-out; }
.hero__tag--2 { top: 40%; right: 24px; animation: float 5s infinite ease-in-out; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__seal {
  position: absolute;
  bottom: 32px; right: -32px;
  width: 120px; height: 120px;
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Marquee */
.marquee {
  position: relative;
  margin-top: 72px;
  background: var(--red);
  overflow: hidden;
  border-top: 1px solid #2bb8c4;
  border-bottom: 1px solid #005860;
}
.marquee__track {
  display: flex;
  gap: 36px;
  padding: 14px 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.marquee__sep {
  font-family: var(--f-mono) !important;
  font-size: 12px !important;
  background: rgba(0,0,0,.35);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.2);
  font-weight: 700;
  align-self: center;
  letter-spacing: .12em !important;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- 5) BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn__arrow { transition: transform .25s var(--ease); display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Botão com texto empilhado (CTA com subtexto) */
.btn--stack {
  align-items: stretch;
  padding: 14px 22px;
}
.btn__main {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.1;
}
.btn__sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  opacity: .8;
  text-transform: uppercase;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(0,150,163,.6);
}
.btn--primary:hover { background: var(--red-2); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: rgba(255,255,255,.05); border-color: var(--fg-dim); }

.btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--outline:hover { background: var(--fg); color: var(--bg); }

.btn--xl { padding: 20px 32px; font-size: 16px; }

/* ---------- 6) SECTION HEAD ---------- */
.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head__meta { margin-bottom: 16px; }
.section-head__title {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 400;
}
.outline {
  -webkit-text-stroke: 2px var(--fg);
  color: transparent;
}
.section-head__sub {
  margin-top: 24px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--fg-dim);
  max-width: 560px;
}
.section-head--center .section-head__sub { margin-left: auto; margin-right: auto; }

/* ---------- 7) PRODUTOS ---------- */
.produtos {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.grid-prod {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card-prod {
  position: relative;
  background: var(--bg-2);
  padding: 0;
  cursor: pointer;
  transition: background .3s var(--ease);
  display: flex; flex-direction: column;
  overflow: hidden;
  color: var(--fg);
  text-decoration: none;
}
.card-prod:hover { background: var(--bg-3); }
.card-prod__img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.card-prod .ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      #181818 0 14px,
      #1c1c1c 14px 28px
    );
  transition: transform .6s var(--ease);
}
.card-prod:hover .ph { transform: scale(1.08); }
.card-prod__icon {
  position: absolute;
  left: 50%; top: 50%;
  width: 56%; height: 56%;
  transform: translate(-50%, -50%);
  color: var(--fg);
  opacity: .9;
  z-index: 1;
  transition: transform .5s var(--ease), opacity .25s var(--ease);
}
.card-prod:hover .card-prod__icon { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }

/* Foto de produto real ocupando todo o slot da imagem */
.card-prod__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform .6s var(--ease);
}
.card-prod:hover .card-prod__photo { transform: scale(1.06); }
/* Quando o card tem foto, esconde o padrão listrado e os labels antigos */
.card-prod--photo .ph,
.card-prod--photo .ph__label { display: none; }
/* Vinheta sutil pra garantir contraste com tags claras sobre o canto */
.card-prod--photo .card-prod__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, transparent 30%, transparent 70%, rgba(0,0,0,.35) 100%);
  z-index: 2;
  pointer-events: none;
}
.card-prod--photo .card-prod__type,
.card-prod--photo .card-prod__tag { z-index: 3; }
.card-prod__type {
  position: absolute;
  left: 14px; top: 14px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 8px;
  border: 1px solid currentColor;
}
.card-prod__type--piloto { color: var(--yellow); }
.card-prod__type--moto { color: var(--red); }
.ph__label {
  position: absolute;
  left: 14px; top: 14px;
  background: rgba(0,0,0,.6);
  padding: 4px 8px;
  font-size: 10px;
}
.card-prod__body {
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  border-top: 1px solid var(--line);
}
.card-prod__num { font-size: 11px; color: var(--fg-mute); }
.card-prod__tag {
  position: absolute;
  right: 12px; top: 12px;
  background: rgba(0,0,0,.8);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  z-index: 2;
}
.card-prod__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.card-prod--accent .card-prod__cta { color: #fff; border-top-color: rgba(255,255,255,.25); }
.card-prod--accent .card-prod__tag { color: var(--bg); background: var(--yellow); border-color: var(--yellow); }
.card-prod__body h3 {
  font-family: var(--f-display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-weight: 400;
  line-height: 1;
  margin-top: 4px;
}
.card-prod__body p {
  font-size: 14px;
  color: var(--fg-dim);
  margin-top: 6px;
}
.card-prod__arrow {
  font-size: 14px;
  color: var(--red);
  transition: transform .25s var(--ease);
  display: inline-block;
}
.card-prod:hover .card-prod__arrow { transform: translate(4px, 0); }
.card-prod--accent { background: var(--red); }
.card-prod--accent:hover { background: var(--red-2); }
.card-prod--accent .card-prod__body { border-top-color: rgba(255,255,255,.15); }
.card-prod--accent .card-prod__num,
.card-prod--accent .card-prod__body p { color: rgba(255,255,255,.85); }
.card-prod--accent .card-prod__arrow { color: #fff; }
.card-prod--accent .ph {
  background:
    repeating-linear-gradient(
      45deg,
      #007a85 0 14px,
      #00626c 14px 28px
    );
}
.card-prod--accent .card-prod__icon { color: #fff; opacity: 1; }
.card-prod--accent .card-prod__type { color: #fff; }
.card-prod--accent .ph__label { background: rgba(0,0,0,.4); color: #fff; }

.produtos__foot {
  margin-top: 40px;
  text-align: center;
  color: var(--fg-dim);
  font-size: 15px;
}
.produtos__foot a {
  color: var(--red);
  font-weight: 700;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color .2s var(--ease);
}
.produtos__foot a:hover { color: var(--yellow); border-color: var(--yellow); }

/* ---------- 8) SOBRE ---------- */
.sobre {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 80px;
  align-items: start;
}
.sobre__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 400;
  margin: 16px 0 32px;
}
.sobre__title em {
  font-style: italic;
  color: var(--red);
  transform: skewX(-6deg);
  display: inline-block;
}
.sobre__text p {
  font-size: 16px;
  color: var(--fg-dim);
  margin-bottom: 18px;
  max-width: 580px;
}
.sobre__text strong { color: var(--fg); font-weight: 600; }

.pilares {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pilar {
  padding: 24px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  position: relative;
}
.pilar__num {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 3px 8px;
  font-size: 11px;
  margin-bottom: 14px;
}
.pilar h4 {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pilar p { font-size: 14px; color: var(--fg-dim); }

.aside-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 32px;
  position: sticky;
  top: 100px;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 94% 100%, 0 100%);
}
.aside-card > .mono {
  display: block;
  background: var(--yellow);
  color: var(--bg);
  padding: 4px 8px;
  width: max-content;
  margin-bottom: 24px;
  font-size: 11px;
}
.aside-card ul {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.aside-card li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.aside-card li span {
  font-family: var(--f-mono);
  color: var(--fg-mute);
  font-size: 11px;
}
.aside-card__cta {
  display: inline-block;
  margin-top: 24px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  transition: color .2s var(--ease);
}
.aside-card__cta:hover { color: var(--yellow); border-color: var(--yellow); }

/* ---------- 9) BENEFÍCIOS ---------- */
.beneficios {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.bens-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bem {
  padding: 40px 28px;
  background: var(--bg);
  position: relative;
  transition: background .3s var(--ease);
  min-height: 280px;
}
.bem:hover { background: var(--bg-2); }
.bem__num {
  font-family: var(--f-display);
  font-size: 48px;
  color: var(--red);
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 24px;
  transition: transform .3s var(--ease);
}
.bem:hover .bem__num { transform: translateX(4px); }
.bem h3 {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 12px;
  line-height: 1.05;
}
.bem p { font-size: 14px; color: var(--fg-dim); }

/* ---------- 10) LOCAL ---------- */
.local {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.local__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.local__copy > .mono { display: block; margin-bottom: 16px; }
.local__copy h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase;
  line-height: .95;
  font-weight: 400;
  margin-bottom: 24px;
}
.local__copy .hl {
  color: var(--red);
  font-style: italic;
  display: inline-block;
  transform: skewX(-6deg);
}
.local__copy p {
  font-size: 17px;
  color: var(--fg-dim);
  margin-bottom: 32px;
  max-width: 480px;
}
.local__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.local__map {
  height: 460px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-2);
}
.local__map-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.1) brightness(0.85);
  transition: filter .3s var(--ease);
}
.local__map:hover .local__map-iframe { filter: grayscale(0) contrast(1) brightness(1); }
.map-ph {
  position: relative;
  height: 100%;
  border: 1px solid var(--line);
  overflow: hidden;
  clip-path: polygon(0 0, 96% 0, 100% 6%, 100% 100%, 4% 100%, 0 94%);
}
.map-ph__svg { width: 100%; height: 100%; }
.map-ph__info {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10,10,10,.9);
  border: 1px solid var(--line-2);
  padding: 16px 20px;
  max-width: 70%;
}
.map-ph__info .mono { display: block; margin-bottom: 8px; color: var(--yellow); }
.map-ph__info p { font-size: 14px; color: var(--fg); margin-bottom: 14px; }
.map-ph__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 10px 16px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s, transform .2s;
}
.map-ph__cta:hover { background: var(--red-2); transform: translateY(-1px); }
.map-ph__cta .btn__arrow { transition: transform .25s; }
.map-ph__cta:hover .btn__arrow { transform: translateX(4px); }

/* ============ MODAL "COMO CHEGAR" ============ */
.route-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  animation: routeFade .25s ease-out;
}
.route-modal[hidden] { display: none; }

@keyframes routeFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes routePop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: none; }
}

.route-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.route-modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 32px 32px 28px;
  animation: routePop .3s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.route-modal__close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  border: 0;
  color: var(--fg-mute);
  font-size: 28px;
  line-height: 1;
  width: 36px; height: 36px;
  cursor: pointer;
  border-radius: 50%;
  transition: color .2s, background .2s;
}
.route-modal__close:hover { color: var(--fg); background: var(--bg-3); }
.route-modal__meta { color: var(--red); display: block; margin-bottom: 8px; }
.route-modal__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.route-modal__sub {
  color: var(--fg-mute);
  font-size: 14px;
  margin: 0 0 24px;
}
.route-modal__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.route-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color .2s, background .2s, transform .2s;
}
.route-btn:hover {
  border-color: var(--red);
  background: var(--bg);
  transform: translateY(-2px);
}
.route-btn svg { flex-shrink: 0; }
.route-btn span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.route-btn strong {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.route-btn em {
  font-style: normal;
  font-size: 13px;
  color: var(--fg-mute);
}

/* ============ FOOTER CREDIT (Local Pages) ============ */
.footer__credit-wrap {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
}
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
  border-radius: 6px;
  background: #fff;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.footer__credit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(72, 92, 255, 0.3);
}
.footer__credit-label {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f2937;
  white-space: nowrap;
}
.footer__credit-logo {
  height: 44px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .route-modal__panel { padding: 28px 22px 22px; }
  .route-btn { padding: 14px 16px; gap: 12px; }
  .route-btn strong { font-size: 19px; }
  .footer__credit { padding: 10px 14px; gap: 12px; flex-direction: column; text-align: center; }
  .footer__credit-logo { height: 36px; }
  .footer__credit-label { font-size: 11px; }
}

/* ---------- 11) DEPOIMENTOS ---------- */
.depoimentos {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dep {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.dep:hover { transform: translateY(-4px); border-color: var(--line-2); }
.dep__stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 20px; }
.dep p {
  font-size: 17px;
  color: var(--fg);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 28px;
}
.dep footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.dep__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 18px;
  color: #fff;
}
.dep footer strong { display: block; font-size: 14px; font-weight: 700; }
.dep footer span { font-size: 12px; color: var(--fg-mute); }
.dep--feat { background: var(--bg-3); border-color: var(--red); }
.dep--feat .dep__avatar { background: var(--yellow); color: var(--bg); }

/* ---------- 12) CTA FINAL ---------- */
.cta-final {
  position: relative;
  padding: 140px 0;
  background: var(--red);
  overflow: hidden;
  isolation: isolate;
}
.cta-final__bg {
  position: absolute; inset: 0;
  display: flex; gap: 40px;
  transform: skewX(-18deg);
  z-index: -1;
  opacity: .2;
  left: -10%;
  width: 120%;
}
.cta-final__bg span {
  flex: 1;
  background: rgba(0,0,0,.4);
  animation: stripe-flash 3s infinite ease-in-out;
}
.cta-final__bg span:nth-child(2) { animation-delay: .6s; }
.cta-final__bg span:nth-child(3) { animation-delay: 1.2s; }
@keyframes stripe-flash {
  0%, 100% { opacity: .15; }
  50% { opacity: .35; }
}
.cta-final__inner { text-align: center; position: relative; }
.cta-final > .container > .mono,
.cta-final__inner > .mono {
  color: rgba(255,255,255,.7);
  display: inline-block;
  margin-bottom: 24px;
  background: rgba(0,0,0,.3);
  padding: 4px 10px;
}
.cta-final h2 {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 112px);
  line-height: .9;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  margin-bottom: 28px;
}
.cta-final .huge {
  display: inline-block;
  -webkit-text-stroke: 3px #fff;
  color: transparent;
  font-style: italic;
  transform: skewX(-6deg);
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 auto 48px;
}
.cta-final__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final .btn--primary {
  background: var(--bg);
  color: #fff;
}
.cta-final .btn--primary:hover { background: #000; }
.cta-final .btn--ghost {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.cta-final .btn--ghost:hover { background: rgba(0,0,0,.2); }
.cta-final .btn--outline {
  border-color: #fff;
  color: #fff;
}
.cta-final .btn--outline:hover { background: #fff; color: var(--red); }

/* ---------- 13) FOOTER ---------- */
.footer {
  background: var(--bg);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__logo { height: 72px; margin-bottom: 20px; }
.footer__brand p { font-size: 14px; color: var(--fg-dim); max-width: 320px; }
.footer h5 {
  font-family: var(--f-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  color: var(--fg);
}
.footer__col p, .footer__col li {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
}
.footer__col a:hover { color: var(--red); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--fg-mute);
}
.footer__bottom .mono { font-size: 11px; }

/* ---------- 14) FLOAT WPP ---------- */
.float-wpp-wrap {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 50;
  display: flex; align-items: flex-end;
  gap: 12px;
}
.float-wpp__bubble {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--fg);
  padding: 14px 38px 14px 16px;
  border-radius: 8px;
  max-width: 230px;
  font: inherit;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,.6);
  transform-origin: bottom right;
  animation: bubble-in .4s var(--ease);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.float-wpp__bubble::after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: -8px;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--bg);
  filter: drop-shadow(1px 0 0 var(--line-2));
}
.float-wpp__bubble-text {
  display: block;
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.4;
}
.float-wpp__bubble-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 2px;
}
.float-wpp__bubble-close {
  position: absolute;
  right: 8px; top: 8px;
  font-size: 12px;
  color: var(--fg-mute);
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.float-wpp__bubble:hover .float-wpp__bubble-close { color: var(--fg); background: var(--line-2); }
.float-wpp-wrap.is-bubble-hidden .float-wpp__bubble { opacity: 0; transform: scale(.9) translateY(8px); pointer-events: none; }
@keyframes bubble-in {
  from { opacity: 0; transform: scale(.85) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.float-wpp {
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -5px rgba(37,211,102,.5);
  transition: transform .2s var(--ease);
  animation: float-pulse 2.4s infinite;
  flex-shrink: 0;
}
.float-wpp:hover { transform: scale(1.08); }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 10px 30px -5px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.6); }
  50% { box-shadow: 0 10px 30px -5px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,0); }
}

/* ---------- COMO FUNCIONA ---------- */
.como {
  padding: 100px 0 120px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.como__head { margin-bottom: 56px; }
.como__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  counter-reset: step;
}
.step {
  background: var(--bg-2);
  padding: 40px 32px;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: background .25s var(--ease);
}
.step:hover { background: var(--bg-3); }
.step--accent { background: var(--bg-3); }
.step--accent::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--red);
}
.step__num {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 1;
  color: var(--red);
  margin-bottom: 24px;
  display: block;
}
.step h3 {
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.05;
}
.step p {
  font-size: 15px;
  color: var(--fg-dim);
  margin-bottom: 24px;
  flex-grow: 1;
}
.step__link {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  width: max-content;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.step__link:hover { color: var(--yellow); border-color: var(--yellow); }
.step__link--mute {
  color: var(--fg-mute);
  border-bottom-color: var(--line-2);
  cursor: default;
}
.step__link--mute:hover { color: var(--fg-mute); border-color: var(--line-2); }

/* ---------- LOCAL PERKS ---------- */
.local__perks {
  display: flex; flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.local__perks li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px;
  color: var(--fg);
}
.local__perks-ico {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--red);
  color: #fff;
  font-family: var(--f-display);
  font-size: 16px;
  flex-shrink: 0;
}

/* ---------- MARCAS ---------- */
.marcas {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.marcas__head {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
  gap: 12px;
}
.marcas__meta {
  display: inline-block;
}
.marcas__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  max-width: 700px;
}
.marcas__title .hl {
  color: var(--red);
  font-style: italic;
  display: inline-block;
  transform: skewX(-6deg);
}
.marcas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
  border: 1px solid var(--red-2);
}
.marca {
  background: var(--red);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
  position: relative;
  min-height: 140px;
  isolation: isolate;
}
.marca:hover {
  background: var(--red-2);
  z-index: 2;
}
.marca img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .3s var(--ease);
}
.marca:hover img { transform: scale(1.06); }
.marca:hover img { transform: scale(1.06); }
.marcas__foot {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
}
.marcas__foot a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  margin-left: 6px;
}
.marcas__foot a:hover { color: var(--yellow); border-color: var(--yellow); }

/* ---------- FAQ ---------- */
.faq {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.faq__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.faq__grid .section-head { margin-bottom: 0; position: sticky; top: 100px; }
.faq__grid .btn { margin-top: 24px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item details { padding: 4px 0; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  user-select: none;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--red); }
.faq__q {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .01em;
}
.faq__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.faq__icon::before {
  left: 0; right: 0; top: 11px;
  height: 2px;
}
.faq__icon::after {
  top: 0; bottom: 0; left: 11px;
  width: 2px;
}
.faq__item details[open] .faq__icon::after { transform: scaleY(0); }
.faq__item details[open] summary { color: var(--red); }
.faq__a {
  padding: 0 4px 28px;
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 60ch;
}

/* ---------- FACHADA / SHOWCASE ---------- */
.fachada {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
}
.fachada__media {
  position: absolute; inset: 0;
  z-index: -1;
}
.fachada__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.fachada__overlay {
  /* sem máscara escura: a própria foto já tem céu dramático
     e zonas escuras no rodapé, onde o texto se apóia */
  display: none;
}
.fachada__inner {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  /* Caixa sólida á esquerda pra apoiar o texto sem cobrir a imagem */
  background: linear-gradient(90deg, rgba(10,10,10,.78) 0%, rgba(10,10,10,.55) 70%, transparent 100%);
  padding: 32px var(--pad);
  margin: 0 auto;
  border-left: 3px solid var(--red);
}
.fachada__meta {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.fachada__title {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  max-width: 880px;
}
.fachada__title .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
  font-style: italic;
  display: inline-block;
  transform: skewX(-6deg);
}
.fachada__sub {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 28px;
}

/* ---------- 15) REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 16) RESPONSIVE ---------- */
@media (max-width: 1100px) {
  /* Nav vira burger antes pra evitar overflow com a logo grande */
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 20px var(--pad);
    gap: 16px;
    margin-left: 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__burger { display: block; margin-left: auto; }
  .nav__logo { height: 64px; }

  .hero { padding: 88px 0 40px; }
  .hero__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 28px;
    padding-top: 0;
    padding-bottom: 24px;
  }
  /* Foto vai pra CIMA (1ª dobra) em mobile/tablet */
  .hero__visual {
    width: 100%;
    height: clamp(260px, 42vh, 360px);
  }
  .hero__seal { right: 8px; bottom: 8px; width: 80px; height: 80px; }
  .hero__seal svg { width: 80px; height: 80px; }
  .hero__title--two { font-size: clamp(36px, 6vw, 64px); }
  .sobre__grid { grid-template-columns: 1fr; gap: 48px; }
  .aside-card { position: static; }
  .local__inner { grid-template-columns: 1fr; gap: 48px; }
  .grid-prod { grid-template-columns: repeat(2, 1fr); }
  .bens-grid { grid-template-columns: repeat(2, 1fr); }
  .pilares { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .como__steps { grid-template-columns: 1fr; }
  .marcas__grid { grid-template-columns: repeat(3, 1fr); }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__grid .section-head { position: static; }
}

@media (max-width: 720px) {
  /* Mobile: burger à esquerda, logo centralizada, MESMA LINHA */
  .nav__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .nav__burger {
    display: block;
    order: 1;
    margin: 0;
    flex: 0 0 auto;
  }
  .nav__brand {
    order: 2;
    flex: 1 1 auto;
    justify-content: center;
    display: flex;
    margin: 0;
  }
  /* Espaçador invisível pra balancear a centralização */
  .nav__inner::after {
    content: "";
    order: 3;
    width: 44px;
    flex: 0 0 auto;
  }
  .nav__cta { display: none; }

  .hero { padding-top: 100px; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__tag--1 { left: 12px; }
  .hero__tag--2 { right: 12px; }

  .produtos, .sobre, .beneficios, .local, .depoimentos, .como, .faq { padding: 80px 0; }
  .fachada { min-height: 420px; padding: 60px 0; }
  .cta-final { padding: 100px 0; }
  .grid-prod { grid-template-columns: 1fr; }
  .bens-grid { grid-template-columns: 1fr; }
  .marcas__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-final__buttons .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .float-wpp__bubble { display: none; }
}

/* ---------- Mobile pequeno (≤480px) ---------- */
@media (max-width: 480px) {
  :root { --pad: 16px; }
  .nav__inner { padding: 8px var(--pad); gap: 12px; }
  .nav__logo { height: 42px; }
  .nav__cta { padding: 8px 12px; font-size: 12px; }
  .nav__cta-text { display: none; }

  /* HERO — foto no topo da 1ª dobra */
  .hero { padding: 76px 0 28px; }
  .hero__inner { gap: 22px; padding-bottom: 12px; }
  .hero__visual {
    height: 240px;
    margin-bottom: 4px;
  }
  .hero__photo { border-radius: 8px; }
  .hero__title--two { font-size: clamp(30px, 8.5vw, 40px); line-height: 0.95; }
  .hero__sub { font-size: 14px; line-height: 1.55; }
  .hero__tag--1, .hero__tag--2 { padding: 6px 10px; }
  .hero__tag strong { font-size: 13px; }
  .hero__tag .mono { font-size: 9px; }
  .hero__seal { width: 64px; height: 64px; }
  .hero__seal svg { width: 64px; height: 64px; }
  .hero__stats {
    flex-direction: row;
    gap: 12px;
    padding-top: 18px;
    flex-wrap: nowrap;
    justify-content: space-between;
    text-align: center;
  }
  .hero__stats li {
    flex: 1 1 0;
    min-width: 0;
    align-items: center;
    gap: 2px;
  }
  .hero__stats strong { font-size: 24px; line-height: 1; letter-spacing: 0.02em; }
  .hero__stats span { font-size: 10px; letter-spacing: 0.04em; }
  .eyebrow { font-size: 11px; gap: 8px; }
  .marquee__track { font-size: 16px; gap: 16px; padding: 10px 0; }
  .section-head__title { font-size: clamp(32px, 9vw, 48px); }
  .sobre__title, .local__copy h2, .fachada__title { font-size: clamp(30px, 8.5vw, 44px); }
  .cta-final h2 { font-size: clamp(36px, 11vw, 56px); }
  .step { padding: 28px 22px; }
  .step__num { font-size: 44px; }
  .step h3 { font-size: 24px; }
  .bem { padding: 28px 22px; }
  .bem__num { font-size: 22px; }
  .card-prod__body { padding: 16px 18px 20px; }
  .card-prod__body h3 { font-size: 22px; }
  .aside-card { padding: 22px; }
  .marca { padding: 18px 12px; min-height: 100px; }
  .marca img { max-height: 67px; }
  .dep { padding: 22px; }
  .faq__q { font-size: 17px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .btn--xl { padding: 14px 22px; font-size: 15px; }
  .local__ctas .btn { width: 100%; justify-content: center; }
  .local__map { height: 360px; }
  .map-ph__info { left: 12px; right: 12px; bottom: 12px; padding: 12px; }
  .map-ph__info p { font-size: 13px; }
  .float-wpp-wrap { bottom: 14px; right: 14px; }
}

/* ---------- Mobile muito pequeno (≤360px) ---------- */
@media (max-width: 360px) {
  .hero__title--two { font-size: 30px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .nav__links a { font-size: 15px; }
}
