/* ============================================================
   ITA CONSÓRCIOS — Landing Page de alta conversão
   Identidade: laranja vibrante + preto profundo (alto padrão)
   ============================================================ */

:root {
  --orange: #ff5c00;
  --orange-hot: #ff7a26;
  --orange-deep: #cc4a00;
  --black: #0a0a0b;
  --black-2: #101012;
  --black-3: #17171a;
  --white: #ffffff;
  --grey: #c8c8d0;
  --grey-2: #8a8a92;
  --line: rgba(255, 255, 255, 0.08);
  --glow: rgba(255, 92, 0, 0.35);
  --radius: 20px;
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --header-h: 76px;
  --mark-main: #ff5c00;
  --mark-alt: #b9b9c1;
  --container-max: 1180px;
  --hero-bleed: calc(50vw - var(--container-max) / 2);
  }

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: clip; /* bloqueia scroll horizontal em qualquer overflow */
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Noise cinematográfico sobre tudo */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; text-wrap: balance; word-break: break-word; overflow-wrap: anywhere; }

h1 { font-size: clamp(1.9rem, 5.6vw, 4.4rem); font-weight: 800; max-width: 100%; }
h2 { font-size: clamp(1.6rem, 4vw, 3.1rem); font-weight: 800; max-width: 100%; }
h3 { font-size: 1.15rem; font-weight: 700; max-width: 100%; }

h1 em, h2 em {
  font-style: normal;
  color: var(--orange);
  background: linear-gradient(120deg, var(--orange-hot), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

main .container,
body .container,
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  overflow-x: clip; /* hard cap em qualquer overflow interno */
}

/* ============ FONTES (SELF-HOSTED, ANTES DE TUDO) ============ */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE, U+02D1-02D7, U+02DD, U+0304, U+0308, U+0329, U+2000-206F, U+20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: local("Sora"), url("../fonts/sora-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/sora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE, U+02D1-02D7, U+02DD, U+0304, U+0308, U+0329, U+2000-206F, U+20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
.container-narrow { width: min(820px, 92%); margin-inline: auto; }

::selection { background: var(--orange); color: var(--black); }

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

/* Ícones SVG (stroke) */
.ic {
  width: 22px; height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: -0.28em;
}

.ic-sm { width: 16px; height: 16px; }
.ic-ok { color: var(--orange-hot); }
.ic-no { color: var(--grey-2); }

/* Split text (reveal por palavra) */
.w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.wi { display: inline-block; will-change: transform; }

/* Palavras destacadas mantêm o gradiente após o split */
h1 em .wi, h2 em .wi {
  background: linear-gradient(120deg, var(--orange-hot), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ ABERTURA ============ */

#intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
}

#intro-start {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  font-family: var(--font-display);
}

.intro-start-mark {
  width: clamp(72px, 16vw, 110px);
  height: auto;
  aspect-ratio: 200 / 250;
  filter: drop-shadow(0 0 46px var(--glow));
  animation: introPulse 2.6s ease-in-out infinite;
}

@keyframes introPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 34px var(--glow)); }
  50% { transform: scale(1.045); filter: drop-shadow(0 0 70px var(--glow)); }
}

#intro-start .intro-hint {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

#intro-start .intro-sound {
  font-size: 0.72rem;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

#intro-stage {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
}

.intro-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform, filter, opacity;
}

.intro-mark {
  width: clamp(110px, 24vw, 190px);
  height: auto;
  aspect-ratio: 200 / 250;
  filter: drop-shadow(0 0 50px rgba(255, 92, 0, 0.35));
}

.intro-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 15vw, 8.5rem);
  color: var(--orange);
  line-height: 1;
  margin-top: 30px;
  letter-spacing: -0.02em;
}

.intro-sub {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  font-size: clamp(0.85rem, 2.6vw, 1.35rem);
  letter-spacing: 0.62em;
  margin-top: 18px;
  margin-left: 0.62em; /* compensa o tracking */
  opacity: 0;
}

.intro-tagline {
  font-family: var(--font-body);
  color: var(--grey);
  font-size: clamp(0.8rem, 2vw, 1rem);
  margin-top: 22px;
  opacity: 0;
}

.intro-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240vmax;
  height: 240vmax;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(255, 92, 0, 0.22) 0%, rgba(255, 92, 0, 0.05) 30%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

#intro-skip {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--grey);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: color 0.2s, border-color 0.2s;
}

#intro-skip:hover { color: var(--white); border-color: var(--orange); }

/* ============ HEADER ============ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

#header.scrolled {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; }

.logo-svg { width: 30px; height: auto; aspect-ratio: 200 / 250; }

.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--orange);
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo-word small {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.nav { display: flex; align-items: center; gap: 28px; padding-top: 6px; }
.nav a { font-size: 0.92rem; color: var(--grey); font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--white); }

/* Header actions (Simular grátis + Instagram + nav-social) alinham com a logo */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions .btn-header { display: inline-flex; }
.header-actions .nav-social {
  width: 36px; height: 36px;
  margin-left: 0;
}

/* ============ BOTÕES ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
  white-space: nowrap;
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange) 55%, var(--orange-deep));
  color: var(--white);
  padding: 15px 30px;
  font-size: 0.98rem;
  box-shadow: 0 10px 34px -8px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover { box-shadow: 0 18px 48px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,0.25); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 15px 30px;
  font-size: 0.98rem;
}

.btn-ghost:hover { border-color: var(--orange); }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-xl { padding: 22px 48px; font-size: 1.15rem; }
.btn-header { padding: 12px 24px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn .btn-arrow { width: 18px; height: 18px; transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* Instagram no nav — ícone da marca com brilho animado */
.nav-social {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  margin-left: 4px;
  color: var(--orange);
  border-radius: 50%;
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid rgba(255, 92, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}

.nav-social:hover {
  background: rgba(255, 92, 0, 0.2);
  transform: scale(1.08);
}

.nav-social .ic { width: 18px; height: 18px; stroke: currentColor; position: relative; z-index: 1; }

/* Brilho que varre o ícone continuamente */
.nav-social::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%);
  transform: translateX(-100%);
  animation: nav-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes nav-shine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* ============ HERO ============ */

#hero {
  position: relative;
  min-height: 75svh;
  display: flex;
  /* estica a .hero-inner para preencher a dobra toda — essencial para que a foto
     absoluta (bottom: 0) alcance a base da primeira dobra, não a base do texto */
  padding: calc(var(--header-h) + 24px) 0 48px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-glow-1 {
  width: 900px; height: 900px;
  top: -200px; right: -180px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.62), transparent 55%);
}

.hero-glow-2 {
  width: 480px; height: 480px;
  bottom: -220px; left: -160px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.16), transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  min-width: 0;
}

/* A reordenação (foto ANTES do texto no mobile/tablet) é controlada
   pelo @media (max-width: 1024px) mais abaixo, que também faz o
   grid virar 1fr. */

.hero-badge {
  display: block;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 92, 0, 0.12);
  border: 1px solid rgba(255, 92, 0, 0.35);
  color: var(--orange-hot);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 14px;
  margin-bottom: 26px;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
  box-sizing: border-box;
}

.hero-badge .ic { margin-right: 6px; }

/* Descrição da equipe — visível APENAS no mobile.
   Aparece entre a foto e o badge ("Parcelas com até 50% OFF") porque
   está dentro de .hero-visual, que tem order: -1 no mobile. */
.hero-team-note { display: none; }

.hero-sub { color: var(--grey); font-size: 1.15rem; max-width: 100%; margin: 24px 0 34px; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-top: 6px;
}

.hero-ctas .btn-hero-primary,
.hero-ctas .btn-hero-ghost {
  width: 100%;
  max-width: 480px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 560px) {
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-ghost { max-width: 100%; }
}

.hero-ctas .btn-hero-ghost {
  background: transparent;
  border: 1px solid var(--line);
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* Coluna do texto: ocupa ~48% do container e fica acima da foto (z-index 3) */
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  width: 100%;
}

.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 36px; color: var(--grey); font-size: 0.95rem; }
.hero-trust strong { color: var(--white); }

.trust-avatars { display: flex; }
.trust-avatars span {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--black);
  margin-left: -10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--white);
  background: linear-gradient(145deg, #2a2a30, #1a1a1e);
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-avatars span:last-child { background: linear-gradient(145deg, var(--orange-hot), var(--orange-deep)); }

/* Foto do time — Mobile: aparece PRIMEIRO no hero (antes do badge/H1),
   com fade inferior pra integrar com o fundo escuro.
   Desktop (>=1024px): posicionada absoluta, ancorada no canto superior direito.
   A PNG é transparente, então o glow/grid do hero aparecem por trás.

   Mobile: width = (container + 32px) × 1.2 → 20% maior que o tamanho
   base. Sangra além do .container (que tem padding interno) e é
   clipado pelo overflow: hidden do #hero — não causa scroll
   horizontal em nenhuma tela.

   .hero-visual { min-width: 0 } evita que o grid estoure quando o
   conteúdo da coluna da direita é maior que 0.85fr (efeito típico
   de min-content > fr unit). */
.hero-visual { min-width: 0; }

.hero-photo {
  position: relative;
  width: calc((100% + 32px) * 1.2);
  max-width: none;
  margin: 0 calc(-10% - 19.2px) 28px; /* centraliza o aumento de 20% */
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

/* Fade preto inferior — funciona em mobile e desktop (movido pra fora do
   @media pra cobrir ambos). A altura é ajustada por breakpoint.

   Como o #hero agora tem background sólido var(--black) no mobile
   (sem glow laranja), o gradiente precisa cair EXATAMENTE em
   rgb(10, 10, 11) — qualquer diferença gera uma linha horizontal
   visível na transição foto→fundo. Por isso o stop vai até 100% e
   a cor final usa o mesmo RGB do --black. */
.hero-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 11, 0) 0%,
    rgb(10, 10, 11) 100%
  );
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-visual {
    order: 0; /* reset explícito — no desktop a foto é absolute e order é ignorado */
  }
  .hero-photo {
    position: absolute;
    top: 20px;
    /* Limite exato: -(largura_renderizada × 0.108).
       A PNG tem 10.8% de transparência à direita (194px de 1800px).
       Em qualquer viewport, a borda direita da foto encosta no
       viewport exatamente onde termina o conteúdo útil — nunca corta. */
    right: calc(clamp(700px, 65vw, 1012px) * -0.108);
    width: clamp(700px, 65vw, 1012px); /* 10% maior */
    height: auto;
    max-width: none;
    margin: 0;
    z-index: 2;
    overflow: hidden;
  }
  .hero-photo img {
    display: block;
    width: 100%;
    height: auto; /* preserva 1.354:1 original — sem distorção */
  }
  /* Glow radial removido — ele vazava pelas bordas anti-aliased da foto
     e criava um contorno laranja nos homens. O glow ambiente agora vem
     do .hero-glow-1 do hero, que aparece por trás das áreas transparentes. */
  .hero-photo::before { content: none; }
  /* No desktop o fade é mais alto (45%) — cobre a base maior da foto */
  .hero-photo::after {
    height: 45%;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--grey-2);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--orange);
  border-radius: 4px;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ MARQUEE INFINITO ============ */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--black);
  padding: 18px 0;
  position: relative;
}

.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-group span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  padding: 0 26px;
}

.marquee-group i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============ NÚMEROS ============ */

#numeros {
  border-bottom: 1px solid var(--line);
  background: var(--black-2);
  padding: 44px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-value .counter {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-value .stat-prefix,
.stat-value .stat-suffix {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--orange);
}

.stat-value .stat-prefix { margin-right: 4px; }
.stat-value .stat-suffix { margin-left: 2px; }

.stat-label { display: block; color: var(--grey); font-size: 0.92rem; margin-top: 10px; }

/* ============ SEÇÕES ============ */

.section { padding: 110px 0; position: relative; }
.section-dark { background: var(--black-2); border-block: 1px solid var(--line); }

.section-head { max-width: 46rem; margin-bottom: 60px; }
.section-head p { color: var(--grey); margin-top: 18px; font-size: 1.08rem; }

.section-kicker {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.section-cta { text-align: center; margin-top: 100px; padding-bottom: 20px; }

/* ============ PRODUTOS — BENTO GRID ============ */

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 18px;
}

.bento-wide { grid-column: span 2; }

.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  will-change: transform;
  background-color: var(--black-2);
  isolation: isolate;
}

/* Imagem de fundo — <img> real é bulletproof contra bugs de CSS variable + 3D context */
.product-card .product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.6s ease, filter 0.6s ease;
  display: block;
}

.product-card:hover .product-img { transform: scale(1.08); }

/* Overlay — gradiente mais leve no topo/meio, pesado só embaixo pra legibilidade do texto */
.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(10, 10, 11, 0.10) 0%,
    rgba(10, 10, 11, 0.25) 45%,
    rgba(10, 10, 11, 0.65) 80%,
    rgba(10, 10, 11, 0.85) 100%);
  transition: opacity 0.35s;
  pointer-events: none;
}

.product-card:hover .product-overlay { background: linear-gradient(180deg,
    rgba(10, 10, 11, 0.05) 0%,
    rgba(10, 10, 11, 0.15) 45%,
    rgba(10, 10, 11, 0.55) 80%,
    rgba(10, 10, 11, 0.75) 100%); }

/* Esconde o div .product-bg agora que o ::before cuida disso */
.product-bg { display: none !important; }

/* Conteúdo (ícone, título, descrição) — fica acima do overlay */
.product-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px;
}

/* Hover — zoom sutil na imagem + borda laranja */
.product-card:hover { border-color: rgba(255, 92, 0, 0.5); box-shadow: 0 24px 48px -24px var(--glow); }

/* Ícone em vidro fosco — backdrop-filter pega a cor da imagem do card,
   dando tom único pra cada ícone sem perder a unidade da marca */
.product-icon {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  margin-bottom: 18px;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    0 8px 28px -10px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

/* Brilho diagonal sutil — simula reflexo de luz na superfície do vidro */
.product-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%,
    transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}

.product-icon .ic { width: 26px; height: 26px; position: relative; z-index: 1; }

.product-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.product-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============ COMO FUNCIONA — STICKY + TIMELINE ============ */

.how-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.how-sticky {
  position: sticky;
  top: calc(var(--header-h) + 48px);
}

.how-sticky p { color: var(--grey); margin-top: 18px; font-size: 1.08rem; }
.how-cta { margin-top: 30px; }

.timeline {
  list-style: none;
  position: relative;
  display: grid;
  gap: 26px;
  padding-left: 44px;
}

.timeline-line {
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.timeline-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--orange-hot), var(--orange-deep));
  transform-origin: top;
  transform: scaleY(0);
}

.step {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.step::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 36px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--black-3);
  border: 2px solid var(--grey-2);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.step.is-active::before {
  background: var(--orange);
  border-color: var(--orange-hot);
  box-shadow: 0 0 16px var(--glow);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(160deg, var(--orange-hot), var(--orange-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.step h3 { margin-bottom: 10px; }
.step p { color: var(--grey); font-size: 0.93rem; }

/* ============ COMPARATIVO ============ */

.compare {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-2);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child { border-bottom: 0; }

.compare-row > div {
  padding: 20px 26px;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-row > div:first-child { color: var(--grey); font-weight: 500; }

.compare-head { background: var(--black-3); }
.compare-head > div {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--grey);
}

.compare-ita {
  background: rgba(255, 92, 0, 0.07);
  border-inline: 1px solid rgba(255, 92, 0, 0.18);
  color: var(--white);
  font-weight: 600;
}

.compare-head .compare-ita { color: var(--orange); }

/* ============ SIMULAÇÃO ============ */

.section-cta-block {
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(255, 92, 0, 0.14), transparent 60%),
    var(--black);
}

.simulate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.simulate-copy p { color: var(--grey); margin-top: 18px; font-size: 1.08rem; }

.simulate-bullets {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 12px;
  color: var(--grey);
}

.simulate-bullets li { display: flex; align-items: center; gap: 10px; }

.simulate-form {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 38px 34px;
  display: grid;
  gap: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9), 0 0 90px -50px var(--glow);
}

.simulate-form label { display: grid; gap: 8px; }
.simulate-form label > span { font-size: 0.88rem; font-weight: 600; color: var(--grey); }

.simulate-form input,
.simulate-form select {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.simulate-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23a5a5ad' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.simulate-form input:focus,
.simulate-form select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.18);
}

.simulate-form input::placeholder { color: var(--grey-2); }

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

/* ============ DEPOIMENTOS ============ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
}

.stars { color: var(--orange); letter-spacing: 4px; font-size: 1.05rem; }

.testimonial blockquote { color: var(--grey); font-size: 0.98rem; line-height: 1.7; flex: 1; }

.testimonial figcaption { display: flex; align-items: center; gap: 14px; }

.testimonial .avatar {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--orange-hot), var(--orange-deep));
  position: relative;
}

.testimonial .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.testimonial .avatar .avatar-initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.testimonial .avatar.has-photo .avatar-initials {
  display: none;
}

.testimonial .who { display: grid; gap: 2px; }
.testimonial .who strong { font-family: var(--font-display); }
.testimonial .who span { color: var(--grey-2); font-size: 0.85rem; }

/* ============ FAQ ============ */

.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item[open] { border-color: rgba(255, 92, 0, 0.4); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 92, 0, 0.12);
  color: var(--orange);
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-item p { padding: 0 26px 24px; color: var(--grey); font-size: 0.97rem; }

/* ============ CTA FINAL ============ */

#cta-final {
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(255, 92, 0, 0.22), transparent 65%),
    var(--black-2);
  border-top: 1px solid var(--line);
}

.cta-final-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.cta-mark {
  width: 64px;
  height: auto;
  aspect-ratio: 200 / 250;
  filter: drop-shadow(0 0 34px var(--glow));
}

.cta-final-inner p { color: var(--grey); font-size: 1.12rem; max-width: 34rem; }
.cta-final-inner p strong { color: var(--orange-hot); }

.cta-final-note {
  color: var(--grey-2);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ============ FOOTER ============ */

#footer { border-top: 1px solid var(--line); padding: 56px 0 90px; background: var(--black); }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
}

.footer-brand { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-brand p { width: 100%; color: var(--grey-2); font-size: 0.85rem; margin-top: 10px; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--grey); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 14px;
}

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--grey);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item .ic { width: 18px; height: 18px; color: var(--orange); }
.footer-contact-item:first-child .ic { color: var(--orange); }

.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--grey-2);
  font-size: 0.82rem;
  display: grid;
  gap: 4px;
}

/* ============ FLUTUANTES ============ */

#whats-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#whats-float:hover { transform: scale(1.1) translateY(-3px); }

#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 89;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  display: none;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#sticky-cta.visible { transform: translateY(0); }

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

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 100%; order: -1; } /* foto ANTES do texto no tablet/mobile */
  .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-sticky { position: static; }
}

/* Hero: fundo preto sólido em TODAS as telas (igual mobile).
   Glows laranja e grid removidos do desktop pra harmonizar com mobile. */
.hero-glow-1, .hero-glow-2 { display: none; }
.hero-grid { display: none; }
#hero { background: var(--black); }

@media (max-width: 768px) {
  .nav { display: none; }
  .section { padding: 80px 0; }
  .testimonials { grid-template-columns: 1fr; }
  .simulate-inner { grid-template-columns: 1fr; gap: 36px; }
  .simulate-form { padding: 28px 24px; gap: 16px; }
  .simulate-form input,
  .simulate-form select { font-size: 16px; padding: 14px 16px; }
  .simulate-form label > span { font-size: 0.85rem; }
  .simulate-form .btn-block { padding: 16px 22px; font-size: 0.98rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  /* Compare: cada linha vira um card (mesmo padrão de .testimonial/.product-card).
     Coloca o título no topo e os 2 valores empilhados abaixo — sem cortar nada. */
  .compare { background: transparent; border: 0; }
  /* .compare-head: especificidade alta pra não ser sobrescrita pelo .compare-row abaixo */
  .compare-row.compare-head { display: none; }
  /* Reduz o respiro entre o subtítulo "dezenas de milhares de reais" e o 1º card */
  #comparativo .section-head { margin-bottom: 32px; }
  .compare-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 20px;
    margin-bottom: 14px;
  }
  .compare-row:last-child { margin-bottom: 0; }
  .compare-row > div {
    padding: 0;
    border: 0;
    background: transparent;
    border-inline: 0;
    font-size: 0.95rem;
    align-items: center;
    gap: 10px;
    text-align: left;
  }
  .compare-row > div:first-child {
    color: var(--orange);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--line);
  }
  .compare-row > div .ic { width: 18px; height: 18px; flex-shrink: 0; }
  .compare-row > div:not(:first-child) { display: flex; }
  #sticky-cta { display: block; }
  #whats-float { bottom: 84px; }
  .btn-header { display: none; }
  .scroll-cue { display: none; }
  .marquee-group span { font-size: 0.9rem; padding: 0 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  /* Hero glows e grid escondidos em TODAS as telas (ver regra global acima) */
  /* CTA final no mobile: botão não tão gigante */
  .btn-xl { padding: 18px 28px; font-size: 1rem; }
  .cta-final-inner { padding: 0 16px; }

  /* Descrição da equipe (visível só no mobile, dentro de .hero-visual,
     entre a foto e o badge). Estilo "nota flutuante" — discreto,
     respiro generoso, ancora visual com risco laranja no label. */
  .hero-team-note {
    display: block;
    margin: 4px 4px 32px;
    padding: 0;
  }
  .hero-team-note__label {
    display: inline-block;
    position: relative;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange-hot);
    margin-bottom: 16px;
  }
  .hero-team-note__label::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--orange-hot);
    vertical-align: middle;
    margin-right: 10px;
    transform: translateY(-2px);
  }
  .hero-team-note p {
    color: var(--grey);
    font-family: var(--font-body);
    font-size: 0.97rem;
    line-height: 1.65;
    margin: 0 0 12px;
  }
  .hero-team-note p:last-child { margin-bottom: 0; }
}

/* ============ SOBRE NÓS (entre marquee e stats) ============ */
.about-us {
  text-align: center;
  padding: 96px 0 88px;
}
.about-us__label {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 28px;
}
.about-us__label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange-hot);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}
.about-us p {
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.78;
  margin: 0 auto 18px;
  max-width: 720px;
  text-wrap: balance;
}
.about-us p:last-child { margin-bottom: 0; }

/* Em telas menores a tipografia respira sem competir com o badge acima */
@media (max-width: 768px) {
  /* No mobile, a descrição "Quem somos" já fica DENTRO do hero,
     entre a foto e o badge (.hero-team-note). Esconder a seção
     dedicada pra não duplicar o conteúdo. */
  .about-us { display: none; }
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: auto; }
  .hero-ctas .btn { width: 100%; }
  .simulate-inner { gap: 28px; }
  .simulate-form { padding: 22px 18px; gap: 14px; }
  .simulate-form label { gap: 6px; }
  .simulate-form input,
  .simulate-form select { padding: 12px 14px; }
  .simulate-copy p { font-size: 1rem; }
  .simulate-bullets { gap: 10px; margin-top: 20px; font-size: 0.95rem; }
  .timeline { padding-left: 36px; }
  .step::before { left: -31px; }
  /* Hero card — escala proporcional no mobile */
  .hc-price-value { font-size: 2.6rem; }
  .hc-price-currency { font-size: 0.95rem; }
  .hc-price-decimal { font-size: 1.25rem; }
  .hc-metric-label { font-size: 0.75rem; }
  .hc-metric-value { font-size: 0.85rem; }
  /* Produto — imagem escala com a tela */
  .product-media { width: 80px; height: 80px; }
  .product-img { width: 72px; height: 72px; }
}

@media (max-width: 420px) {
  /* Telas muito pequenas: form ainda mais compacto */
  .simulate-form { padding: 18px 14px; gap: 12px; }
  .simulate-form input,
  .simulate-form select { padding: 11px 12px; font-size: 15px; }
  .simulate-form .btn-block { padding: 14px 18px; font-size: 0.95rem; }
  .form-note { font-size: 0.78rem; }
}

/* ============ ACESSIBILIDADE / MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
