/* =============================================
   SÓ SUPORTES DF — Landing de Alta Conversão
   Paleta: Off-White + Charcoal + Safety Amber
   Tipografia: Archivo + Inter
   ============================================= */

:root {
  /* 60% — base neutra */
  --paper: #f7f5f1;
  --paper-2: #ffffff;
  --paper-3: #ede9e1;

  /* 30% — escuro premium */
  --ink: #16181a;
  --ink-2: #22262b;
  --ink-3: #3a3f47;
  --mute: #6b7280;

  /* 10% — acento safety amber */
  --amber: #f5b400;
  --amber-2: #d99e00;
  --amber-soft: #fff2bf;

  /* utilitários */
  --wpp: #25d366;
  --wpp-dark: #128c7e;
  --line: rgba(22,24,26,.10);
  --line-strong: rgba(22,24,26,.25);

  --maxw: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 4.5vw + 1rem, 4.2rem); font-weight: 900; letter-spacing: -.035em; line-height: 1; }
h2 { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1vw + .8rem, 1.4rem); }

.hl {
  background: linear-gradient(180deg, transparent 65%, var(--amber-soft) 65%);
  padding: 0 4px;
}
.hl-2 {
  color: var(--amber-2);
  font-style: italic;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin-bottom: 18px;
}
.kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--amber);
}
.kicker--amber { color: var(--amber); }
.kicker--amber::before { background: var(--amber); }
.kicker--dark { color: var(--ink); }
.kicker--dark::before { background: var(--ink); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 26px;
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 var(--amber);
  animation: amberPulse 1.6s infinite;
}
@keyframes amberPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,180,0,.7); }
  50% { box-shadow: 0 0 0 6px rgba(245,180,0,0); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  border-radius: var(--radius);
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 11px 18px; font-size: .85rem; }
.btn--lg { padding: 17px 28px; font-size: 1.02rem; }
.btn--xl { padding: 22px 36px; font-size: 1.12rem; }
.btn--block { width: 100%; }

.btn--wpp {
  background: var(--wpp);
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,.32);
}
.btn--wpp:hover { background: var(--wpp-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,.42); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}
.btn--dark:hover { background: var(--amber); color: var(--ink); transform: translateY(-2px); }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.topbar__hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__hours .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
}
.topbar__phone {
  color: var(--amber);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.topbar__phone:hover { color: var(--paper); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,245,241,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.logo__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sm);
  padding: 4px;
}
.logo__icon svg { color: var(--paper); width: 28px; height: 28px; }
.logo__text {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: -.02em;
  display: flex;
  flex-direction: column;
}
.logo__text strong { font-weight: 900; color: var(--ink); }
.logo__text em {
  font-style: normal;
  font-weight: 700;
  color: var(--amber-2);
  font-size: .72rem;
  letter-spacing: .25em;
  margin-top: 2px;
}
.logo--light { color: var(--paper); }
.logo--light .logo__text strong { color: var(--paper); }
.logo--light .logo__text em { color: var(--amber); }
.logo--light .logo__icon { background: var(--paper); }
.logo--light .logo__icon svg { color: var(--ink); }
.logo--light .logo__icon svg rect:nth-child(2) { fill: var(--amber); }

.nav__menu {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: .92rem;
}
.nav__menu a {
  color: var(--ink-3);
  padding: 4px 0;
  transition: color .2s;
  position: relative;
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 70px 0 100px;
  background:
    radial-gradient(ellipse at top right, rgba(245,180,0,.10), transparent 50%),
    var(--paper);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__copy h1 { margin-bottom: 24px; }
.hero__copy .lead {
  font-size: 1.15rem;
  color: var(--ink-3);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero__signals {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 2px solid var(--ink);
  border-image: linear-gradient(90deg, var(--ink) 0%, var(--ink) 40%, transparent 40%) 1;
}
.signal { display: flex; flex-direction: column; }
.signal strong {
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.signal span {
  font-size: .82rem;
  color: var(--mute);
  margin-top: 2px;
}

/* HERO VISUAL — parede com TV */
.hero__visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}
.wall {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  background: var(--paper-3);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 0 0 1px rgba(22,24,26,.08),
    0 30px 60px rgba(22,24,26,.12);
  overflow: hidden;
}
.wall__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,24,26,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,24,26,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.tv-frame {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 16/9;
  background: var(--ink);
  border-radius: 6px;
  padding: 6px;
  box-shadow:
    0 14px 30px rgba(22,24,26,.25),
    0 0 0 2px var(--ink-2);
  animation: tvFade 1s var(--ease);
}
@keyframes tvFade {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.tv-screen {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(245,180,0,.25), transparent 50%),
    linear-gradient(135deg, #0a0c0f 0%, #1f242b 100%);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tv-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(255,255,255,.04) 50%, transparent 51%);
  background-size: 100% 4px;
}
.tv-screen__logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  color: var(--amber);
  font-size: clamp(.9rem, 2vw, 1.4rem);
  letter-spacing: .15em;
}
.tv-screen__sub {
  font-size: .7rem;
  color: var(--paper);
  opacity: .6;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 4px;
}
.tv-mount {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background: var(--ink-2);
}
.tv-mount--top { top: -8px; }
.tv-mount--bot { bottom: -8px; }

/* régua de medição */
.ruler {
  position: absolute;
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.ruler span {
  background: var(--paper);
  padding: 2px 8px;
  border: 1px solid var(--ink);
  border-radius: 3px;
}
.ruler--h {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.ruler--h::before, .ruler--h::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: var(--ink);
}
.ruler--h::before { right: 100%; margin-right: 4px; }
.ruler--h::after { left: 100%; margin-left: 4px; }

.ruler--v {
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  writing-mode: vertical-rl;
}
.ruler--v span { padding: 6px 4px; }

/* selo de garantia */
.badge-warranty {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--amber);
  color: var(--ink);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  transform: rotate(-12deg);
  box-shadow: 0 14px 30px rgba(245,180,0,.4);
  animation: warrantyBob 4s ease-in-out infinite;
}
@keyframes warrantyBob {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-6px); }
}
.badge-warranty__year {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.badge-warranty__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
  line-height: 1.1;
}

/* ============ BENEFITS ============ */
.benefits {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0;
  border-top: 4px solid var(--amber);
  border-bottom: 4px solid var(--amber);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.benefit {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.benefit__icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.benefit strong {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--amber);
}
.benefit p {
  font-size: .9rem;
  color: rgba(247,245,241,.75);
  line-height: 1.5;
}

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section--light { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--amber { background: var(--amber); color: var(--ink); }
.section--amber h2 { color: var(--ink); }

.section__head {
  margin-bottom: 60px;
  max-width: 720px;
}
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--light h2 { color: var(--paper); }
.section__sub {
  color: var(--mute);
  font-size: 1.02rem;
  margin-top: 14px;
  line-height: 1.6;
}

/* ============ SERVICES ============ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.service {
  position: relative;
  padding: 36px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.service:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px rgba(22,24,26,.10);
}
.service--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--amber);
}
.service.service--featured h3 { color: var(--paper); }
.service.service--featured p { color: rgba(247,245,241,.85); }
.service.service--featured ul { border-top-color: rgba(245,180,0,.25); }
.service.service--featured ul li { color: var(--paper); border-bottom-color: rgba(245,180,0,.18); }
.service.service--featured ul li::before { color: var(--amber); }
.service.service--featured .service__num { color: var(--amber); }
.service__tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--amber);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service__num {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--amber-2);
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.service h3 { margin-bottom: 12px; }
.service p { color: var(--ink-3); font-size: .95rem; margin-bottom: 18px; line-height: 1.55; }
.service ul {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.service ul li {
  font-size: .85rem;
  color: var(--ink-3);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}
.service ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 800;
}

.services__cta {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.services__cta p {
  color: var(--mute);
  font-size: 1rem;
  margin-bottom: 10px;
}
.link-amber {
  display: inline-block;
  color: var(--amber-2);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 4px;
  transition: gap .25s var(--ease);
}
.link-amber:hover { color: var(--ink); }

/* ============ STEPS (PROCESSO) ============ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.steps li {
  padding: 36px 30px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(247,245,241,.08);
  border-radius: var(--radius);
  position: relative;
  transition: border-color .3s, background .3s;
}
.steps li:hover {
  border-color: var(--amber);
  background: rgba(245,180,0,.04);
}
.steps__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.steps__n {
  font-family: 'Archivo', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -.04em;
}
.steps__time {
  font-size: .82rem;
  color: rgba(247,245,241,.6);
  background: rgba(245,180,0,.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.steps h3 { color: var(--paper); margin-bottom: 12px; }
.steps p { color: rgba(247,245,241,.75); font-size: .95rem; line-height: 1.55; }

/* ============ SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.split__copy p { color: var(--ink-3); margin-bottom: 20px; }
.split__copy p em { color: var(--ink); font-style: italic; font-weight: 600; }
.split__copy h2 { margin-bottom: 24px; }
.tool-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: 0 30px 60px rgba(22,24,26,.20);
}
.tool-card::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 60px; height: 60px;
  background: var(--amber);
  border-radius: 50%;
  z-index: -1;
}
.tool-card::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 40px; height: 40px;
  background: var(--amber);
  border-radius: var(--radius-sm);
  z-index: -1;
}
.tool-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247,245,241,.15);
  margin-bottom: 22px;
}
.tool-card__chip {
  font-family: 'Archivo', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--amber);
}
.tool-card__date {
  font-size: .78rem;
  color: rgba(247,245,241,.5);
  letter-spacing: .08em;
}
.checklist {
  list-style: none;
}
.checklist li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: .95rem;
  color: rgba(247,245,241,.92);
  border-bottom: 1px dashed rgba(247,245,241,.1);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--amber);
  background-image: linear-gradient(45deg, transparent 40%, var(--ink) 40%, var(--ink) 50%, transparent 50%, transparent 60%, var(--ink) 60%, var(--ink) 70%, transparent 70%);
}
.checklist li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: .85rem;
  line-height: 1;
}

/* ============ GALLERY ============ */
.gallery-section {
  background: var(--paper);
}
.gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gal__item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
.gal__item:hover { transform: scale(1.02); }
.gal__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22,24,26,.7) 100%);
}
.gal__loc {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  color: var(--paper);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 6px 12px;
  background: rgba(22,24,26,.6);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  border-left: 3px solid var(--amber);
}
.gal__item--1 { background: linear-gradient(135deg, #16181a, #3a3f47); grid-column: span 2; }
.gal__item--2 { background: linear-gradient(135deg, #22262b, #f5b400 200%); }
.gal__item--3 { background: linear-gradient(135deg, #3a3f47, #6b7280); }
.gal__item--4 { background: linear-gradient(135deg, #1a1d20, #f5b400 250%); }
.gal__item--5 { background: linear-gradient(135deg, #2a2d33, #16181a); grid-column: span 2; }
.gal__item--6 { background: linear-gradient(135deg, #f5b400, #16181a); }

/* ============ REVIEWS ============ */
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 1rem;
  color: var(--mute);
}
.rating-summary__stars { color: #fbbf24; letter-spacing: 2px; font-size: 1.1rem; }
.rating-summary strong {
  font-family: 'Archivo', sans-serif;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--paper);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.review::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: 'Archivo', serif;
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
  opacity: .25;
}
.review__stars {
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review p {
  color: var(--ink-2);
  font-size: .98rem;
  margin-bottom: 24px;
  line-height: 1.55;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--amber);
  border-radius: 50%;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: .9rem;
}
.review__author strong { display: block; font-size: .95rem; }
.review__author span { color: var(--mute); font-size: .82rem; }

/* ============ AREAS ============ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.areas-grid p {
  color: var(--ink-2);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 460px;
}
.areas {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.areas li {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid rgba(22,24,26,.15);
  color: var(--ink);
}
.areas li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--ink);
  font-size: .85rem;
}

/* ============ PRICES ============ */
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}
.price {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.price:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 50px rgba(22,24,26,.10);
}
.price--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--amber);
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(22,24,26,.20);
}
.price--featured:hover { transform: scale(1.04) translateY(-6px); }
.price.price--featured h3 { color: var(--paper); }
.price.price--featured .price__desc { color: rgba(247,245,241,.82); }
.price.price--featured .price__value { border-top-color: rgba(245,180,0,.3); border-bottom-color: rgba(245,180,0,.3); }
.price.price--featured .price__value small { color: rgba(247,245,241,.72); }
.price.price--featured .price__value strong { color: var(--amber); }
.price.price--featured ul li { color: var(--paper); border-bottom-color: rgba(247,245,241,.12); }

.price__tag {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--paper-3);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.price__tag--pop { background: var(--amber); color: var(--ink); }

.price h3 { margin-top: 12px; margin-bottom: 8px; }
.price__desc {
  color: var(--ink-3);
  font-size: .92rem;
  min-height: 50px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.price__value {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.price__value small {
  display: block;
  font-size: .75rem;
  color: var(--mute);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.price__value strong {
  font-family: 'Archivo', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}
.price ul {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 26px;
}
.price ul li {
  padding: 9px 0;
  font-size: .92rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.price ul li:last-child { border-bottom: 0; }

.prices__note {
  text-align: center;
  color: var(--mute);
  font-size: .9rem;
  padding-top: 20px;
}

/* ============ FAQ ============ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 26px;
  transition: border-color .25s, box-shadow .25s;
}
.faq details[open] {
  border-color: var(--amber);
  box-shadow: 0 8px 24px rgba(245,180,0,.15);
}
.faq summary {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 20px 0;
  padding-right: 44px;
  list-style: none;
  cursor: pointer;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background-color: var(--amber);
  border-radius: 50%;
  background-image:
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink));
  background-size: 12px 2px, 2px 12px;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  padding-bottom: 22px;
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ============ CTA FINAL ============ */
.cta-final {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--amber);
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,180,0,.15), transparent 60%);
  pointer-events: none;
}
.cta-final__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.cta-final h2 {
  color: var(--paper);
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw + 1rem, 3.2rem);
}
.cta-final p {
  font-size: 1.1rem;
  color: rgba(247,245,241,.8);
  margin-bottom: 32px;
  max-width: 540px;
}
.cta-final__note {
  margin-top: 16px;
  font-size: .85rem;
  color: rgba(247,245,241,.55);
  margin-bottom: 0;
}
.cta-final__visual {
  display: grid;
  place-items: center;
}
.badge-big {
  width: 260px;
  height: 260px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  transform: rotate(-8deg);
  box-shadow: 0 30px 60px rgba(245,180,0,.4);
  animation: warrantyBob 5s ease-in-out infinite;
  position: relative;
}
.badge-big::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px dashed var(--ink);
  border-radius: 50%;
  opacity: .4;
}
.badge-big__top {
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.badge-big__main {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.03em;
}
.badge-big__bottom {
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============ FOOTER ============ */
.footer {
  background: #0c0d0f;
  color: rgba(247,245,241,.7);
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__grid p {
  font-size: .92rem;
  margin-top: 14px;
  max-width: 320px;
}
.footer__grid h5 {
  color: var(--amber);
  font-family: 'Archivo', sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__grid a {
  display: block;
  padding: 5px 0;
  font-size: .9rem;
  color: rgba(247,245,241,.7);
  transition: color .2s;
}
.footer__grid a:hover { color: var(--amber); }
.footer__bottom {
  border-top: 1px solid rgba(247,245,241,.08);
  padding: 22px 0;
  font-size: .8rem;
  color: rgba(247,245,241,.45);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ WPP FLUTUANTE ============ */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: var(--wpp);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 36px rgba(37,211,102,.45);
  z-index: 90;
  transition: transform .25s var(--ease);
}
.wpp-float:hover { transform: scale(1.1); }
.wpp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wpp);
  z-index: -1;
  animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: .5; }
  80%, 100% { transform: scale(1.7); opacity: 0; }
}

/* ============ BARRA MOBILE FIXA ============ */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  border-top: 2px solid var(--amber);
  z-index: 99;
  padding: 10px;
  gap: 10px;
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: .95rem;
}
.mobile-bar__btn--call {
  background: var(--paper);
  color: var(--ink);
}
.mobile-bar__btn--wpp {
  background: var(--wpp);
  color: white;
}

/* ============ MOUNTS (SUPORTES À VENDA) ============ */
.mounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}
.mount {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.mount:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 50px rgba(22,24,26,.10);
}
.mount--featured {
  border: 2px solid var(--amber);
  box-shadow: 0 20px 40px rgba(245,180,0,.15);
}
.mount--featured:hover {
  border-color: var(--amber-2);
  box-shadow: 0 30px 60px rgba(245,180,0,.25);
}

.mount__star {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: var(--amber);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 6px 16px rgba(245,180,0,.4);
}

.mount__visual {
  background: var(--paper-3);
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
}
.mount__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,24,26,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,24,26,.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.mount__visual svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  position: relative;
}

.mount__body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.mount__chip {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--amber-soft);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.mount.mount--featured .mount__chip {
  background: var(--ink);
  color: var(--amber);
}
.mount h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.mount__body > p {
  color: var(--ink-3);
  font-size: .92rem;
  margin-bottom: 16px;
  line-height: 1.55;
  min-height: 50px;
}
.mount ul {
  list-style: none;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  margin-bottom: 22px;
  flex-grow: 1;
}
.mount ul li {
  font-size: .85rem;
  color: var(--ink-2);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  font-weight: 500;
}
.mount ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 800;
}

.mount__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.mount__price {
  display: flex;
  flex-direction: column;
}
.mount__price small {
  font-size: .68rem;
  color: var(--mute);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}
.mount__price strong {
  font-family: 'Archivo', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}

.mount__foot .btn {
  flex-shrink: 0;
}

.mounts__cta {
  text-align: center;
  padding: 32px 28px;
  background: var(--paper-3);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line-strong);
}
.mounts__cta p {
  color: var(--ink-2);
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__grid, .split, .areas-grid, .cta-final__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual { min-height: 380px; }
  .services, .reviews, .prices, .steps { grid-template-columns: 1fr; }
  .mounts { grid-template-columns: repeat(2, 1fr); }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-6px); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gal { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal__item { height: 180px; grid-column: span 1 !important; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar__hours { display: none; }
  .topbar__inner { justify-content: center; padding: 10px 16px; }
  .nav__menu { display: none; }
  .nav .btn { display: none; }
  .nav__inner { padding: 14px 16px; }
  .container { padding: 0 16px; }

  .section { padding: 64px 0; }
  .hero { padding: 40px 0 70px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .hero__signals { gap: 22px; flex-wrap: wrap; }

  .benefits__grid { grid-template-columns: 1fr; gap: 22px; }
  .mounts { grid-template-columns: 1fr; }
  .mount__foot { flex-direction: column; align-items: flex-start; }
  .mount__foot .btn { width: 100%; }
  .gal { grid-template-columns: 1fr; }
  .gal__item { height: 200px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .badge-big { width: 200px; height: 200px; }
  .badge-big__main { font-size: 1.5rem; }
  .badge-warranty { width: 80px; height: 80px; bottom: 14px; right: 14px; }
  .badge-warranty__year { font-size: 1.7rem; }
  .badge-warranty__label { font-size: .55rem; }

  .wpp-float { bottom: 88px; right: 16px; width: 56px; height: 56px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
