/* =========================================================
   RW Moveleiro — Landing Page
   Estrutura: reset > tokens > base > componentes > seções
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
summary::-webkit-details-marker { display: none; }

/* ---------- Tokens ---------- */
:root {
  --bg:        #0A0D12;
  --bg-alt:    #0F131A;
  --surface:   #151A23;
  --surface-2: #1B222D;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);

  --text:      #F3F6FA;
  --muted:     #9AA5B4;

  --primary:   #FF5A2B;
  --primary-2: #FF9A2E;

  /* acentos por produto (paleta da marca RW) */
  --c1: #F26A21;   /* estrutura box   */
  --c2: #3B8BE0;   /* revestimento box */
  --c3: #F5B301;   /* estrutura baú   */
  --c4: #C0457E;   /* revestimento baú */

  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 24px 60px -24px rgba(0,0,0,.85);

  --container: 1200px;
  --pad:       clamp(20px, 5vw, 40px);

  --font:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display:   "Anton", "Inter", system-ui, sans-serif;

  --header-h:  72px;
}

/* acentos resolvidos por bloco */
[data-accent="c1"] { --accent: var(--c1); }
[data-accent="c2"] { --accent: var(--c2); }
[data-accent="c3"] { --accent: var(--c3); }
[data-accent="c4"] { --accent: var(--c4); }

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--primary); color: #fff; }

:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--primary); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.container--narrow { max-width: 820px; }

/* ---------- Utilitários ---------- */
.icon { width: 22px; height: 22px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.section__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  max-width: 62ch;
  margin-top: 18px;
}

/* ---------- Botões ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1.2;
  text-align: center;
  transition: transform .18s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(100deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(255,90,43,.75);
}
.btn--primary:hover { box-shadow: 0 20px 40px -14px rgba(255,90,43,.9); }

.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--text);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--text); background: rgba(255,255,255,.08); }

.btn--sm  { padding: 10px 20px; font-size: .86rem; }
.btn--lg  { padding: 17px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Tags ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--tag-c, var(--primary)) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--tag-c, var(--primary)) 42%, transparent);
  color: var(--tag-c, var(--primary));
}
.tag--c1 { --tag-c: var(--c1); }
.tag--c2 { --tag-c: var(--c2); }
.tag--c3 { --tag-c: var(--c3); }
.tag--c4 { --tag-c: var(--c4); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(10,13,18,.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand { flex: 0 0 auto; }
.brand__logo { width: clamp(130px, 18vw, 175px); height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav__link {
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s ease;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .25s ease;
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.header__cta { flex: 0 0 auto; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .header__cta { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px var(--pad) 24px;
    background: rgba(10,13,18,.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__link {
    padding: 15px 4px;
    font-size: 1.05rem;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .nav__link::after { display: none; }
}

/* =========================================================
   HERO CARROSSEL
   ========================================================= */
.hero {
  position: relative;
  padding-top: var(--header-h);
  background: var(--bg);
  overflow: hidden;
}

.hero__viewport { overflow: hidden; }

.hero__track {
  display: flex;
  transition: transform .7s cubic-bezier(.65,.05,.25,1);
  will-change: transform;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 78vh, 780px);
  padding: 56px 0 96px;
  isolation: isolate;
}

.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(46px) saturate(1.3);
  transform: scale(1.25);
  opacity: .32;
  z-index: -2;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 70% at 78% 45%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%),
    linear-gradient(to right, var(--bg) 8%, rgba(10,13,18,.88) 42%, rgba(10,13,18,.55) 100%),
    linear-gradient(to top, var(--bg) 2%, transparent 40%);
}

.slide__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.slide__content > * + * { margin-top: 20px; }

.slide__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.15rem, 5.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
  text-wrap: balance;
}
.slide__title em {
  font-style: normal;
  display: block;
  color: var(--accent);
}

.slide__text {
  color: #C9D2DE;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  max-width: 52ch;
}

.slide__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slide__chips li {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: #D6DEE9;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}

.slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.slide__trust {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 500;
}

.slide__media {
  position: relative;
  justify-self: center;
}
.slide__media img {
  width: min(440px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow), 0 0 90px -30px var(--accent);
  transform: rotate(1.2deg);
  transition: transform .5s ease;
}
.slide.is-active .slide__media img { animation: floatIn .8s cubic-bezier(.2,.8,.3,1) both; }
@keyframes floatIn {
  from { opacity: 0; transform: rotate(1.2deg) translateY(26px) scale(.97); }
  to   { opacity: 1; transform: rotate(1.2deg) translateY(0) scale(1); }
}

/* setas */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--text);
  background: rgba(21,26,35,.75);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.hero__arrow svg { width: 22px; height: 22px; }
.hero__arrow:hover { background: var(--primary); border-color: var(--primary); }
.hero__arrow--prev { left: max(14px, calc((100vw - var(--container)) / 2 - 62px)); }
.hero__arrow--next { right: max(14px, calc((100vw - var(--container)) / 2 - 62px)); }

/* dots / tabs */
.hero__dots {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  z-index: 5;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-inline: var(--pad);
}
.hero__dots button {
  position: relative;
  padding: 9px 18px 11px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  background: rgba(21,26,35,.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: color .25s ease, border-color .25s ease;
}
.hero__dots button:hover { color: var(--text); }
.hero__dots button[aria-selected="true"] { color: var(--text); border-color: var(--line-2); }
.hero__dots button i {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}
.hero__dots button[aria-selected="true"] i { animation: dotProgress var(--slide-duration, 7s) linear forwards; }
.hero.is-paused .hero__dots button[aria-selected="true"] i { animation-play-state: paused; }
@keyframes dotProgress { from { width: 0; } to { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .hero__track { transition: none; }
  .hero__dots button[aria-selected="true"] i { animation: none; width: 100%; }
  .slide.is-active .slide__media img { animation: none; }
}

@media (max-width: 900px) {
  .slide { min-height: auto; padding: 40px 0 92px; text-align: center; }
  .slide__inner { grid-template-columns: 1fr; }
  .slide__content { order: 2; }
  .slide__media  { order: 1; }
  .slide__media img { width: min(300px, 74%); transform: none; }
  .slide.is-active .slide__media img { animation: none; }
  .slide__text { margin-inline: auto; }
  .slide__chips, .slide__actions { justify-content: center; }
  .slide::after {
    background:
      radial-gradient(80% 50% at 50% 20%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 70%),
      linear-gradient(to bottom, rgba(10,13,18,.6), var(--bg) 65%);
  }
  .hero__arrow { display: none; }
  .hero__dots { bottom: 20px; gap: 8px; }
  .hero__dots button { padding: 8px 14px 10px; font-size: .72rem; }
}
@media (max-width: 560px) {
  .hero__dots button span { display: none; }
  .hero__dots button { width: 40px; height: 8px; padding: 0; border-radius: 999px; }
  .hero__dots button i { height: 100%; }
  .slide__actions .btn { width: 100%; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  overflow: hidden;
  padding: 16px 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-block: 1px solid rgba(0,0,0,.2);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee span {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.marquee i { color: rgba(255,255,255,.6); font-size: .7rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* =========================================================
   FAIXA DE CONFIANÇA
   ========================================================= */
.trust {
  padding: clamp(32px, 5vw, 52px) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust__grid { grid-template-columns: 1fr; } }

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust__icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  transition: transform .3s ease, background-color .3s ease;
}
.trust__item:hover .trust__icon {
  transform: translateY(-3px);
  background: color-mix(in srgb, var(--accent) 24%, transparent);
}

.trust__text strong { display: block; font-size: .98rem; font-weight: 700; }
.trust__text span   { display: block; color: var(--muted); font-size: .88rem; margin-top: 4px; }

/* =========================================================
   SEÇÕES
   ========================================================= */
.section { padding: clamp(64px, 9vw, 118px) 0; }
.section--tight { padding-bottom: clamp(40px, 6vw, 70px); }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.section__head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 62px); }

.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--4 { grid-template-columns: 1fr; } }

/* cards */
.card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.card p  { color: var(--muted); font-size: .95rem; }

.card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  margin-bottom: 18px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}
.card__icon svg { width: 22px; height: 22px; }

/* =========================================================
   PASSO A PASSO
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width .6s cubic-bezier(.2,.8,.3,1);
}
.step.is-in::before { width: 100%; }
.step:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }

.step__num {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: 8px; }
.step p  { color: var(--muted); font-size: .94rem; }

@media (prefers-reduced-motion: reduce) {
  .step::before { transition: none; }
}

/* =========================================================
   PRODUTOS
   ========================================================= */
.product { padding: clamp(40px, 6vw, 76px) 0; position: relative; }
.product + .product { border-top: 1px solid var(--line); }

.product__inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
}
.product--rev .product__media { order: 2; }
.product--rev .product__body  { order: 1; }

.product__media { position: relative; }
.product__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.product__glow {
  position: absolute;
  inset: -14% -8%;
  z-index: -1;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 45%, transparent), transparent 78%);
  filter: blur(50px);
}
/* fica ao lado da tag do manual para não cobrir a arte da capa */
.product__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0A0D12;
  background: var(--accent);
}

.product__body > * + * { margin-top: 18px; }

.product__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.product__lead { color: #C4CDDA; font-size: 1.02rem; }
.product__lead strong { color: var(--text); }

.checklist { display: grid; gap: 12px; margin-top: 24px; }
.checklist li {
  position: relative;
  padding-left: 34px;
  color: #B9C3D1;
  font-size: .97rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 7px; top: 9px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.product__for {
  padding: 16px 20px;
  border-radius: 12px;
  color: #C4CDDA;
  font-size: .95rem;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border-left: 3px solid var(--accent);
}
.product__for strong { color: var(--text); }

.delivers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.delivers li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  color: #D6DEE9;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.delivers .icon { width: 17px; height: 17px; color: var(--accent); }

.product__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 32px;
}
.product__note { color: var(--muted); font-size: .85rem; }

@media (max-width: 900px) {
  .product__inner { grid-template-columns: 1fr; }
  .product--rev .product__media { order: 0; }
  .product--rev .product__body  { order: 0; }
  .product__media img { max-width: 420px; margin-inline: auto; }
  .product__actions .btn { width: 100%; }
  .product__note { width: 100%; text-align: center; }
}

/* =========================================================
   COMPARATIVO
   ========================================================= */
.compare {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow-x: auto;
}

.compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}
.compare__caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

.compare__table th,
.compare__table td {
  padding: 20px 22px;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td { border-bottom: 0; }

.compare__table thead th {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.02);
}

.compare__table tbody th {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.compare__table tbody td { color: var(--muted); font-size: .94rem; }
.compare__table tbody tr { transition: background-color .25s ease; }
.compare__table tbody tr:hover { background: color-mix(in srgb, var(--accent) 7%, transparent); }

.compare__num {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--accent);
  margin-right: 8px;
}

.compare__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  transition: background-color .25s ease, transform .2s ease;
}
.compare__link:hover { background: color-mix(in srgb, var(--accent) 22%, transparent); transform: translateX(2px); }

/* no celular a tabela vira um cartão por manual */
@media (max-width: 760px) {
  .compare {
    border: 0;
    background: none;
    overflow-x: visible;
  }
  .compare__table { min-width: 0; }
  .compare__table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .compare__table,
  .compare__table tbody,
  .compare__table tr,
  .compare__table th,
  .compare__table td { display: block; }

  .compare__table tr {
    margin-bottom: 14px;
    padding: 6px 4px 18px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
  }
  .compare__table tr:last-child { margin-bottom: 0; }

  .compare__table th,
  .compare__table td { border-bottom: 0; padding: 10px 20px; }
  .compare__table tbody th { padding-top: 18px; white-space: normal; font-size: 1.05rem; }

  .compare__table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--accent) 80%, #fff);
    margin-bottom: 4px;
  }
  .compare__table tbody td:last-child::before { content: none; }
  .compare__link { width: 100%; justify-content: center; margin-top: 6px; }
}

/* =========================================================
   VÍDEOS
   ========================================================= */
.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .videos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .videos { grid-template-columns: 1fr; } }

.video {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video__btn {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .3s ease, transform .3s ease;
}
.video__btn:hover { border-color: var(--line-2); transform: translateY(-4px); }

/* o vídeo é vertical; a miniatura preenche o quadro sem tarja lateral */
.video__btn img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .3s ease;
  filter: brightness(.82);
}
.video__btn:hover img { transform: scale(1.05); filter: brightness(.98); }

.video__caption {
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  padding-inline: 4px;
}

.video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px; height: 68px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,90,43,.92);
  box-shadow: 0 12px 34px -10px rgba(0,0,0,.8);
  transition: transform .25s ease;
}
.video__play svg { width: 30px; height: 30px; margin-left: 3px; }
.video__btn:hover .video__play { transform: scale(1.08); }

.video iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 620px;
  border: 0;
  border-radius: var(--radius);
}

.video--cta {
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: 34px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
}
.video--cta h3 { font-size: 1.35rem; font-weight: 800; line-height: 1.2; }
.video--cta p  { color: var(--muted); font-size: .95rem; }

/* =========================================================
   PROVA SOCIAL
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1;
  background: linear-gradient(100deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { display: block; color: var(--muted); font-size: .86rem; margin-top: 8px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); padding: 24px 18px; } }

.socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .socials { grid-template-columns: 1fr; } }

.social {
  --sc: var(--primary);
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.social::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--sc);
  opacity: .16;
  filter: blur(46px);
  transition: opacity .3s ease;
}
.social:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--sc) 55%, transparent); }
.social:hover::before { opacity: .32; }
.social svg { width: 30px; height: 30px; color: var(--sc); margin-bottom: 18px; }
.social__name   { display: block; font-size: 1.15rem; font-weight: 800; }
.social__handle { display: block; color: var(--sc); font-size: .92rem; font-weight: 600; margin-top: 4px; }
.social__meta   { display: block; color: var(--muted); font-size: .86rem; margin-top: 8px; }

.social--ig { --sc: #E1306C; }
.social--yt { --sc: #FF3D3D; }
.social--tt { --sc: #25F4EE; }

/* =========================================================
   AUTOR
   ========================================================= */
.author {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
}
.author__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.author__body > * + * { margin-top: 18px; }
.author__body p { color: var(--muted); }
.author__body .btn { margin-top: 12px; }
@media (max-width: 860px) {
  .author { grid-template-columns: 1fr; }
  .author__media img { max-width: 380px; margin-inline: auto; }
}

/* =========================================================
   DEPOIMENTOS (bloco reservado)
   ========================================================= */
.says {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 900px) { .says { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .says { grid-template-columns: 1fr; } }

.say {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.say blockquote { color: #C4CDDA; font-size: .98rem; }
.say figcaption { margin-top: 18px; }
.say figcaption strong { display: block; font-size: .95rem; }
.say figcaption span { color: var(--muted); font-size: .85rem; }

/* =========================================================
   GARANTIA
   ========================================================= */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(70% 120% at 0% 50%, rgba(255,90,43,.14), transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
}

.guarantee__seal {
  flex: 0 0 auto;
  width: 118px; height: 118px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px -16px rgba(255,90,43,.8);
}
.guarantee__seal strong {
  display: block;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}
.guarantee__seal span {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.guarantee__body h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.guarantee__body p { color: var(--muted); max-width: 66ch; }

@media (max-width: 700px) {
  .guarantee { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .guarantee__seal { width: 96px; height: 96px; }
  .guarantee__seal strong { font-size: 2.1rem; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 12px; }

.faq__item {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .25s ease, background-color .25s ease;
}
.faq__item[open] { border-color: color-mix(in srgb, var(--primary) 45%, transparent); background: var(--surface-2); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px; height: 11px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }

.faq__answer { padding: 0 24px 22px; }
.faq__answer p { color: var(--muted); font-size: .97rem; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.final {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(255,90,43,.18), transparent 70%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
  text-align: center;
}
.final h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.06;
  text-transform: uppercase;
}
.final h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final > .container > p {
  color: var(--muted);
  max-width: 56ch;
  margin: 18px auto 0;
}

.final__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
  text-align: left;
}
@media (max-width: 980px) { .final__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .final__grid { grid-template-columns: 1fr; } }

.final__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
}
.final__card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: var(--surface-2);
}
.final__num {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--accent);
}
.final__card strong { font-size: 1.02rem; font-weight: 700; }
.final__go {
  margin-top: 6px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .25s ease;
}
.final__card:hover .final__go { color: var(--accent); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 34px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px 30px;
}
@media (max-width: 860px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand img { width: 180px; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 42ch; }

.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h3 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.footer__col a {
  color: var(--muted);
  font-size: .92rem;
  transition: color .2s ease;
  width: fit-content;
}
.footer__col a:hover { color: var(--primary-2); }
.footer__legal { color: var(--muted); font-size: .86rem; line-height: 1.7; }

.footer__bottom {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.footer__bottom p { color: var(--muted); font-size: .84rem; }
.footer__disclaimer { color: #6C7686; font-size: .78rem; line-height: 1.7; max-width: 92ch; }

/* =========================================================
   CTA MOBILE FIXO
   ========================================================= */
.mobilebar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,13,18,.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .35s ease;
}
.mobilebar.is-visible { transform: translateY(0); }
@media (max-width: 700px) { .mobilebar { display: block; } body { padding-bottom: 0; } }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
/* só esconde quando há JavaScript para trazer os blocos de volta */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1);
}
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .social:hover, .final__card:hover,
  .step:hover, .video__btn:hover, .trust__item:hover .trust__icon { transform: none; }
}

/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  z-index: 9999;
  transition: .3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5d; }

/* =========================================================
   BANNER DE COOKIES / CONSENTIMENTO
   ========================================================= */
.consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px var(--pad);
  background: rgba(10,13,18,.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .4s ease;
}
.consent.is-visible { transform: translateY(0); }
.consent__text { flex: 1 1 320px; margin: 0; font-size: .92rem; color: var(--muted); }
.consent__text a { color: var(--text); text-decoration: underline; }
.consent__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent__prefs {
  flex-basis: 100%;
  display: none;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
  font-size: .86rem;
  color: var(--muted);
}
.consent__prefs.is-open { display: flex; }
.consent__prefs label { display: flex; align-items: center; gap: 6px; }
@media (max-width: 700px) { .consent { padding: 16px 20px; } }
