/* ==========================================================================
   ANEXOR — Landing Page v2 (refinamento premium)
   Identidade: azul elétrico do logo + creme do app + ink profundo
   ========================================================================== */

:root {
  --blue: #1E6BFA;
  --blue-deep: #0B47C2;
  --blue-soft: #E7EFFE;
  --blue-ghost: #F2F6FE;
  --ink: #15171C;
  --ink-2: #23262E;
  --ink-3: #3A3E48;
  --muted: #5C6270;
  --cream: #F6F2E9;
  --cream-2: #FBF9F3;
  --paper: #FFFFFF;
  --line: #E8E2D4;
  --line-soft: #EFEAE0;
  --green: #12A150;
  --red: #E5484D;
  --radius: 20px;
  --shadow-1: 0 2px 10px rgba(21, 23, 28, .05);
  --shadow-2: 0 12px 40px rgba(21, 23, 28, .09);
  --shadow-blue: 0 10px 30px rgba(30, 107, 250, .32);
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }

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

/* ---------- Type ---------- */
h1, h2, h3 { font-weight: 800; line-height: 1.14; letter-spacing: -0.022em; }

h1 { font-size: clamp(2rem, 3.9vw, 3.15rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); }

h1 em, h2 em { font-style: normal; color: var(--blue); }

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(30, 107, 250, .16);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.eyebrow--light { color: #9EC0FF; background: rgba(30,107,250,.14); border-color: rgba(158,192,255,.25); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
}
.btn:active { transform: scale(.97); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(30,107,250,.4); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(21,23,28,.16);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* Outline azul — "Assinar Agora" */
.btn--outline {
  background: rgba(255,255,255,.55);
  color: var(--blue);
  border-color: rgba(30,107,250,.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* Branco com traçado — "Entrar" / login */
.btn--line {
  background: var(--paper);
  color: var(--ink-2);
  border-color: var(--line);
}
.btn--line:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

.btn--white {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.28); }

.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--sm { padding: 9px 22px; font-size: .88rem; }
.btn--xs { padding: 6px 16px; font-size: .82rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 233, .72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled {
  border-bottom-color: rgba(232, 226, 212, .9);
  box-shadow: 0 4px 24px rgba(21,23,28,.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: height .3s;
}
.nav.is-scrolled .nav__inner { height: 60px; }
.nav__logo img { width: 106px; height: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a:not(.btn) {
  color: var(--ink-3);
  font-weight: 600;
  font-size: .93rem;
  transition: color .2s;
}
.nav__links a:not(.btn):hover { color: var(--blue); }
.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: 8px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 96px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -240px; right: -160px;
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(30,107,250,.14) 0%, rgba(30,107,250,0) 65%);
  pointer-events: none;
  z-index: 0;
}

/* Kinetic grid — fundo interativo da hero (modo claro) */
.hero__grid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.1s ease;
  -webkit-mask-image: radial-gradient(120% 100% at 60% 30%, #000 55%, transparent 100%);
  mask-image: radial-gradient(120% 100% at 60% 30%, #000 55%, transparent 100%);
}
.hero__grid-canvas.is-ready { opacity: 1; }
.hero .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 24px;
}
.hero__sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 460px;
  margin-top: 20px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero__signin {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin-top: 24px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}
.hero__trust li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  margin-right: 8px;
}

/* A raposa é a protagonista */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}
.hero__halo {
  position: absolute;
  inset: auto;
  width: min(78%, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(30,107,250,.16) 0%, rgba(30,107,250,.05) 46%, transparent 70%);
  pointer-events: none;
}
.hero__halo::after {
  content: "";
  position: absolute;
  inset: -11%;
  border-radius: 50%;
  border: 1.5px dashed rgba(30,107,250,.18);
}
.hero__fox {
  position: relative;
  width: min(100%, 660px);
  filter: drop-shadow(0 34px 64px rgba(21,23,28,.2));
  z-index: 1;
}

.chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  padding: 11px 16px;
  font-size: .82rem;
  line-height: 1.3;
}
.chip strong { display: block; font-size: .89rem; }
.chip small { color: var(--muted); }
.chip__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.chip__dot--green { background: var(--green); box-shadow: 0 0 0 4px rgba(18,161,80,.14); }
.chip__dot--blue { background: var(--blue); box-shadow: 0 0 0 4px rgba(30,107,250,.14); }
.chip__icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: .8rem;
  border-radius: 10px;
  flex-shrink: 0;
}
.chip--1 { top: 10%; left: 2%; }
.chip--2 { top: 38%; right: -1%; }
.chip--3 { bottom: 6%; left: 8%; }

@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.float-a { animation: floatA 5.2s ease-in-out infinite; }
.float-b { animation: floatB 6.4s ease-in-out infinite; }
.float-c { animation: floatA 7.1s ease-in-out .8s infinite; }

/* Público */
.hero__publico {
  margin-top: 96px;
  text-align: center;
}
.hero__publico p {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero__publico ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
}
.hero__publico li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-2);
}

/* ---------- Sections base ---------- */
.section { padding: 128px 0; }

.section__head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section__head--light h2 { color: #fff; }

/* ---------- Problema ---------- */
.section--problema { background: var(--cream-2); border-block: 1px solid var(--line-soft); }

.problema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.problema__card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-1);
  transition: transform .3s, box-shadow .3s;
}
.problema__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.problema__card .x {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(229,72,77,.09);
  color: var(--red);
  font-weight: 800;
  margin-bottom: 18px;
}
.problema__card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.problema__card p { color: var(--muted); font-size: .94rem; }

.problema__closer {
  margin-top: 64px;
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.problema__closer strong { color: var(--blue); }

/* ---------- Tour (Configuração inicial) ---------- */
.section--tour { padding-bottom: 0; }

.feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}
.feature__media {
  display: flex;
  justify-content: center;
}
.feature__media > img {
  width: min(100%, 380px);
  filter: drop-shadow(0 24px 48px rgba(21,23,28,.13));
  transition: transform .4s cubic-bezier(.2,.8,.3,1);
}
.feature:hover .feature__media > img { transform: translateY(-6px); }

.feature__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.feature__copy h3 { margin-bottom: 14px; font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.feature__copy > p { color: var(--muted); margin-bottom: 22px; max-width: 480px; }

.feature__list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.feature__list li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  font-size: .97rem;
  color: var(--ink-2);
}
.feature__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 21px; height: 21px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 7px;
  font-size: .72rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ---------- Módulos (bento) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bento__card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-1);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s, border-color .3s;
}
.bento__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-color: rgba(30,107,250,.22);
}
.bento__card--wide { grid-column: span 2; }

.bento__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 22px;
}
.bento__icon svg { width: 25px; height: 25px; }

.bento__card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bento__card p {
  color: var(--muted);
  font-size: .95rem;
  max-width: 560px;
}

.beta {
  font-style: normal;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 3px 11px;
}

/* Card destacado (Aprovações) */
.bento__card--featured {
  background: linear-gradient(155deg, #FDFCF8 0%, var(--blue-ghost) 100%);
  border-color: rgba(30,107,250,.25);
}
.bento__card--featured .bento__icon {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

/* Vinhetas discretas dentro dos cards largos */
.bento__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.bento__stats span {
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 10px 18px;
  line-height: 1.35;
}
.bento__stats small { display: block; color: var(--muted); font-size: .74rem; font-weight: 600; }
.bento__stats strong { font-size: 1rem; }
.tx-green { color: var(--green); }
.tx-blue { color: var(--blue); }

.bento__pill {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: var(--shadow-blue);
}
.bento__pill small { opacity: .85; font-size: .78rem; font-weight: 600; }
.bento__pill strong { font-size: 1.05rem; }

/* ---------- Comparativo (dark) ---------- */
.section--dark {
  background: var(--ink);
  color: #C9CDD6;
}
.section--dark h2 em { color: #6FA1FF; }

.comp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
}
.comp__card {
  border-radius: var(--radius);
  padding: 38px;
}
.comp__card h3 { font-size: 1.22rem; margin-bottom: 24px; }
.comp__card ul { list-style: none; display: grid; gap: 15px; }
.comp__card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.comp__card li span {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.comp__card--sem {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.06);
}
.comp__card--sem h3 { color: #8A8F9B; }
.comp__card--sem li { color: #8A8F9B; text-decoration: line-through; text-decoration-color: rgba(138,143,155,.4); }
.comp__card--sem li span { background: rgba(229,72,77,.14); color: var(--red); text-decoration: none; }

.comp__card--com {
  background: linear-gradient(160deg, var(--blue) 0%, #0A3FB0 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(30,107,250,.32);
  border: 1px solid rgba(255,255,255,.14);
}
.comp__card--com h3 { color: #fff; }
.comp__card--com li span { background: rgba(255,255,255,.18); color: #fff; }

/* ---------- Preço ---------- */
.section--preco { background: var(--cream-2); border-block: 1px solid var(--line-soft); }
.section--preco .section__head { margin-inline: auto; text-align: center; }

.preco__card {
  max-width: 520px;
  margin-inline: auto;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-2);
  padding: 46px;
  position: relative;
  overflow: hidden;
}
.preco__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), #5B93FF);
}
.preco__top { text-align: center; margin-bottom: 32px; }
.preco__plan {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
}
.preco__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.preco__value small { font-size: 1.4rem; font-weight: 700; color: var(--ink-3); }
.preco__value strong { font-size: 4.6rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.preco__value span { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.preco__note { margin-top: 12px; color: var(--muted); font-weight: 600; font-size: .95rem; }

.preco__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
  margin-bottom: 34px;
}
.preco__list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: .95rem;
}
.preco__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 19px; height: 19px;
  display: grid; place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 800;
  margin-top: 3px;
}
.preco__fine {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
}

/* ---------- Checkout CTA ---------- */
.section--checkout {
  background: linear-gradient(150deg, var(--blue) 0%, #0A3FB0 100%);
  color: #fff;
  padding: 96px 0;
}
.checkout__inner { text-align: center; }
.checkout__inner h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 12px; }
.checkout__inner p { font-size: 1.08rem; opacity: .88; margin-bottom: 32px; }

/* ---------- FAQ ---------- */
.section--faq .section__head { text-align: center; margin-inline: auto; }

.faq { display: grid; gap: 12px; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq__item[open] { box-shadow: var(--shadow-2); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 21px 26px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 9px;
  background: var(--blue-soft);
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform .3s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__body { padding: 0 26px 24px; color: var(--muted); }

/* ---------- Encerramento ---------- */
.section--final {
  background: var(--ink);
  color: #fff;
  padding: 140px 0;
}
.final__inner { text-align: center; max-width: 700px; margin-inline: auto; }
.final__inner h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 18px; }
.final__inner p { color: #A6ABB7; font-size: 1.1rem; margin-bottom: 36px; }
.final__inner small {
  display: block;
  margin-top: 20px;
  color: #6F7480;
  font-size: .88rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 42px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo img { width: 96px; }
.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__nav a {
  color: #A6ABB7;
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
}
.footer__nav a:hover { color: #fff; }
.footer__legal { color: #6F7480; font-size: .85rem; }

/* ---------- Reveal animations ---------- */
.reveal, .reveal-scale {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.8,.3,1), transform .8s cubic-bezier(.2,.8,.3,1);
  will-change: opacity, transform;
}
.reveal-scale { transform: translateY(18px) scale(.97); }
.reveal.is-visible, .reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.d-1 { transition-delay: .12s; }
.d-2 { transition-delay: .24s; }
.d-3 { transition-delay: .36s; }
.d-4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .float-a, .float-b, .float-c { animation: none; }
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1023px) {
  .section { padding: 96px 0; }

  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--wide { grid-column: span 2; }

  .problema__grid { grid-template-columns: repeat(2, 1fr); }

  .hero__visual { min-height: 440px; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(21,23,28,.12);
    padding: 12px 24px 24px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s, opacity .3s, visibility .3s;
    z-index: 99;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__links a:not(.btn) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1.05rem;
  }
  .nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 16px 0 0;
  }
  .nav__burger { display: flex; }

  .hero { padding-top: 32px; padding-bottom: 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 12px; }
  .hero__visual { order: -1; min-height: 0; margin-bottom: 12px; }
  .hero__fox { width: min(92%, 460px); }
  .hero__halo { width: min(80%, 400px); }
  .hero__copy { text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__signin { justify-content: center; flex-wrap: wrap; }
  .hero__trust { justify-content: center; }
  .chip { font-size: .74rem; padding: 8px 12px; }
  .chip--1 { top: 6%; left: 0; }
  .chip--2 { top: 34%; right: 0; }
  .chip--3 { bottom: 2%; left: 4%; }
  .hero__publico { margin-top: 72px; }

  .feature {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature__media > img { width: min(72%, 320px); }

  .comp__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 76px 0; }
  .container { padding-inline: 18px; }

  .hero__actions .btn { width: 100%; }

  .problema__grid { grid-template-columns: 1fr; }

  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
  .bento__card { padding: 28px 24px; }

  .preco__card { padding: 34px 24px; }
  .preco__list { grid-template-columns: 1fr; }
  .preco__value strong { font-size: 3.8rem; }

  .comp__card { padding: 28px 22px; }

  .footer__inner { flex-direction: column; text-align: center; }
}
