/*
 * ============================================================
 *  AÇÃO E IMPACTO — Estilo "Pulso de Performance"
 *  carvão-violeta profundo + âmbar de vitória + violeta
 * ============================================================
 */
:root {
  --bg: #0e0b16;
  --bg-2: #151122;
  --card: #1b1630;
  --card-2: #221c3a;
  --border: rgba(255, 255, 255, .10);
  --border-soft: rgba(255, 255, 255, .06);
  --fg: #f2ede4;
  --muted: #9c95ad;
  --amber: #F5A623;
  --amber-2: #FFC155;
  --amber-deep: #d88f13;
  --violet: #7C5CFF;
  --violet-deep: #5b3fd6;
  --danger: #ff6b5e;
  --radius: 1rem;
  --ease: cubic-bezier(.23, 1, .32, 1);
  --display: "Archivo", "Inter Tight", ui-sans-serif, sans-serif;
  --body: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse 120% 90% at 15% 0%, rgba(91, 63, 214, .35) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 85% 100%, rgba(245, 166, 35, .25) 0%, transparent 55%),
    var(--bg);
  background-size: 140% 140%, 140% 140%, 100% 100%;
  animation: bg-drift 24s ease-in-out infinite alternate;
  color: var(--fg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@keyframes bg-drift {
  0% { background-position: 0% 0%, 100% 100%, 0 0; }
  50% { background-position: 30% 20%, 60% 70%, 0 0; }
  100% { background-position: 60% 40%, 20% 90%, 0 0; }
}

/* Orbes de luz flutuando pelo fundo */
.orb-canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 999px; filter: blur(90px); opacity: .35; will-change: transform; }
.orb--violet { width: 480px; height: 480px; background: #7C5CFF; }
.orb--amber { width: 380px; height: 380px; background: #F5A623; }
.orb--blue { width: 420px; height: 420px; background: #4a3fc8; }
.orb--a { top: -8%; left: -6%; animation: orb-float-a 19s ease-in-out infinite alternate; }
.orb--b { top: 42%; right: -8%; animation: orb-float-b 26s ease-in-out infinite alternate; }
.orb--c { bottom: -10%; left: 28%; animation: orb-float-c 22s ease-in-out infinite alternate; }
@keyframes orb-float-a { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(6vw, 8vh) scale(1.15); } 100% { transform: translate(-3vw, 14vh) scale(.95); } }
@keyframes orb-float-b { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-8vw, -10vh) scale(.9); } 100% { transform: translate(-4vw, 6vh) scale(1.12); } }
@keyframes orb-float-c { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(10vw, -8vh) scale(1.1); } 100% { transform: translate(4vw, -14vh) scale(.92); } }

/* Partículas pontilhadas âmbar subindo do rodapé */
.particle {
  position: absolute; bottom: -10px; width: 3px; height: 3px; border-radius: 999px;
  background: rgba(245, 166, 35, .85);
  box-shadow: 0 0 8px rgba(245, 166, 35, .9);
  animation: particle-rise linear infinite;
}
@keyframes particle-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: .6; }
  100% { transform: translateY(-110vh) translateX(30px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .orb, .particle { animation: none; }
}

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

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* Tipografia */
.font-display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.text-gradient-amber {
  background: linear-gradient(100deg, #ffce77, var(--amber) 55%, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Fundo com grão */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%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)'/%3E%3C/svg%3E");
}

/* Botão CTA principal */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--amber);
  color: #1a1205;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px -8px rgba(245, 166, 35, .55);
  transition: transform .16s var(--ease), filter .2s var(--ease), box-shadow .3s var(--ease);
}
.btn-cta:hover { filter: brightness(1.08); }
.btn-cta:active { transform: scale(.97); }

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, .45), 0 8px 30px -8px rgba(245, 166, 35, .5); }
  50% { box-shadow: 0 0 0 12px rgba(245, 166, 35, 0), 0 8px 40px -6px rgba(245, 166, 35, .75); }
}
.cta-pulse { animation: cta-pulse 4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .cta-pulse { animation: none; } }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--amber);
  color: #1a1205;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .05em;
  padding: .55rem 1rem;
  border-radius: .6rem;
  transition: transform .16s var(--ease), filter .2s var(--ease);
}
.btn-ghost:hover { filter: brightness(1.1); }
.btn-ghost:active { transform: scale(.97); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(14, 11, 22, .85);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { height: 2.25rem; width: 2.25rem; }
.brand .name { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: .95rem; letter-spacing: .02em; }
.brand .name b { color: var(--amber); font-weight: 800; }

.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--fg); }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* Hero */
.hero { padding: 8.5rem 0 4rem; position: relative; overflow: hidden; }
.hero .glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 45%, rgba(245, 166, 35, .16), transparent 70%),
    radial-gradient(55% 50% at 20% 30%, rgba(124, 92, 255, .18), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(245, 166, 35, .4);
  background: rgba(245, 166, 35, .08);
  color: var(--amber-2);
  border-radius: 999px;
  padding: .4rem 1rem;
}
.pill .dot {
  position: relative; height: .6rem; width: .6rem; border-radius: 50%;
  background: var(--amber);
}
.pill .dot::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: var(--amber);
  opacity: .6;
  animation: ping 1.6s ease-in-out infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: .6; }
  80%, 100% { transform: scale(2.2); opacity: 0; }
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  margin-top: 1.25rem;
}
.hero .lead {
  max-width: 34rem;
  margin-top: 1.4rem;
  font-size: 1.12rem;
  color: var(--muted);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2rem; }
.guarantee { font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.guarantee svg { color: var(--amber); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stats .num { font-family: var(--display); font-weight: 800; font-size: 1.8rem; }
.hero-stats .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: .15rem; }

.hero-media { position: relative; max-width: 26rem; margin: 0 auto; }
.hero-media .frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
}
.hero-media .frame::before {
  content: "";
  position: absolute; inset: -40px;
  background: linear-gradient(135deg, rgba(245, 166, 35, .25), rgba(124, 92, 255, .2), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}
.hero-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.hero-media .floating {
  position: absolute;
  bottom: -1.2rem; left: 1.2rem;
  display: flex; align-items: center; gap: .75rem;
  background: rgba(27, 22, 48, .92);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: .75rem 1rem;
}
.hero-media .floating svg { color: var(--amber); }
.hero-media .floating .t { font-family: var(--display); font-weight: 700; font-size: .8rem; text-transform: uppercase; }
.hero-media .floating .s { font-size: .75rem; color: var(--muted); }

/* Seções */
section.block { padding: 5rem 0; position: relative; }
section.block.alt { background: var(--bg-2); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section-number {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: .8;
  color: rgba(124, 92, 255, .14);
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: -2rem; left: 0;
  display: none;
}
@media (min-width: 1024px) { .section-number { display: block; } }

.eyebrow-line { color: var(--amber-2); margin-bottom: .9rem; }
.block h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.12;
  max-width: 34rem;
}

/* Dor */
.pains { margin-top: 2rem; display: grid; gap: 1rem; }
.pain {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(27, 22, 48, .55);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color .25s var(--ease);
}
.pain:hover { border-color: rgba(245, 166, 35, .3); }
.pain .x {
  flex: 0 0 auto;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 107, 94, .15);
  color: var(--danger);
  display: flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.block .final-note { margin-top: 1.75rem; font-size: 1.1rem; font-weight: 600; }
.block .final-note b { color: var(--amber-2); font-weight: 700; }

/* Pilares */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, .4);
  box-shadow: 0 20px 50px -15px rgba(245, 166, 35, .25);
}
.pillar .ghost-num {
  position: absolute; right: -1rem; top: -2rem;
  font-family: var(--display); font-weight: 900;
  font-size: 7rem; line-height: 1;
  color: rgba(245, 166, 35, .08);
  user-select: none;
}
.pillar .icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: .9rem;
  background: rgba(245, 166, 35, .14);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  transition: background .3s, color .3s;
}
.pillar:hover .icon { background: var(--amber); color: #1a1205; }
.pillar .icon svg { width: 1.6rem; height: 1.6rem; }
.pillar h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.pillar p { color: var(--muted); font-size: .95rem; }

/* Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  display: flex;
  gap: 1rem;
  background: rgba(14, 11, 22, .55);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color .25s var(--ease);
}
.benefit:hover { border-color: rgba(245, 166, 35, .3); }
.benefit svg { flex: 0 0 auto; width: 1.5rem; height: 1.5rem; color: var(--amber); margin-top: .1rem; }
.benefit h3 { font-size: .95rem; margin-bottom: .25rem; }
.benefit p { font-size: .85rem; color: var(--muted); }
.benefits-media { border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--border); margin-top: 2rem; }
.benefits-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.benefits-wrap { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .benefits-wrap { grid-template-columns: .9fr 1.1fr; } }

/* Passos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; position: relative; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; }
.step .ghost-num {
  font-family: var(--display); font-weight: 900;
  font-size: 5rem; line-height: .9;
  color: rgba(245, 166, 35, .22);
  position: absolute; left: .5rem; top: -2.4rem;
  user-select: none;
}
.step .card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.4rem 2rem 2rem;
}
.step .arrow {
  display: none;
  position: absolute;
  right: -1.1rem;
  top: 45%;
  color: rgba(245, 166, 35, .5);
  z-index: 2;
}
@media (min-width: 861px) { .step .arrow { display: block; } }
.step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .95rem; }
.steps-cta { text-align: center; margin-top: 3.5rem; }
.steps-cta p { margin-top: 1rem; color: var(--muted); font-size: .9rem; }

/* Prova social */
.proof-grid { display: grid; gap: 2.5rem; align-items: center; margin-top: 3.5rem; grid-template-columns: 1.2fr .8fr; }
@media (max-width: 960px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-img { position: relative; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--border); }
.proof-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.proof-img .cap {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.proof-img .cap svg { color: var(--amber); }
.proof-img .cap .t { font-family: var(--display); font-weight: 700; font-size: 1rem; text-transform: uppercase; }
.stat {
  display: flex; align-items: center; gap: 1.25rem;
  background: rgba(14, 11, 22, .55);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.stat .n { font-family: var(--display); font-weight: 800; font-size: 2.2rem; color: var(--amber-2); }
.stat .t { font-weight: 600; font-size: .95rem; }
.stat .s { font-size: .8rem; color: var(--muted); }

/* Filtro */
.filter-box {
  max-width: 46rem;
  margin: 0 auto;
  background: linear-gradient(140deg, rgba(245, 166, 35, .10), rgba(124, 92, 255, .10));
  border: 1px solid rgba(245, 166, 35, .25);
  border-radius: 1.25rem;
  padding: 2.5rem;
}
@media (min-width: 1024px) { .filter-box { padding: 3rem; } }
.filter-box h2 { font-size: 1.5rem; }
.filter-box p { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }
.filter-box p b { color: var(--fg); }
.filter-box ul { margin: 1.5rem 0; display: grid; gap: .75rem; }
.filter-box li { display: flex; gap: .75rem; align-items: flex-start; }
.filter-box li::before {
  content: "";
  flex: 0 0 auto;
  width: .5rem; height: .5rem;
  margin-top: .6rem;
  border-radius: 50%;
  background: var(--amber);
}
.filter-box .push { margin-top: 2rem; font-weight: 600; }
.filter-box .push b { color: var(--amber-2); }

/* FAQ */
.faq-wrap { display: grid; gap: 3rem; margin-top: 1rem; grid-template-columns: .8fr 1.2fr; }
@media (max-width: 900px) { .faq-wrap { grid-template-columns: 1fr; } }
details {
  background: rgba(14, 11, 22, .55);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
details[open] { border-color: rgba(245, 166, 35, .3); }
details summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  font-family: var(--display);
  font-weight: 800;
  color: var(--amber);
  font-size: 1.4rem;
  transition: transform .25s var(--ease);
}
details[open] summary::after { transform: rotate(45deg); }
details .ans { padding: 0 1.25rem 1.25rem; color: var(--muted); font-size: .95rem; }

/* CTA final */
.final-cta { text-align: center; position: relative; }
.final-cta .glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 55% at 50% 55%, rgba(245, 166, 35, .14), transparent 70%);
}
.final-cta .inner { position: relative; max-width: 44rem; margin: 0 auto; }
.final-cta h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.05; margin-top: 1.25rem; }
.final-cta p { margin: 1.5rem auto 0; max-width: 32rem; color: var(--muted); font-size: 1.1rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--border-soft); padding: 2.5rem 0; }
.site-footer .inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.site-footer .brand img { height: 2rem; width: 2rem; }
.site-footer .brand .name { font-size: .85rem; }
.site-footer .copy { color: var(--muted); font-size: .85rem; }
.site-footer nav { display: flex; gap: 1.5rem; }
.site-footer nav a { color: var(--muted); font-size: .85rem; transition: color .2s; }
.site-footer nav a:hover { color: var(--fg); }

/* Captura (modal) */
dialog.captura {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--card);
  color: var(--fg);
  padding: 0;
  max-width: 26rem;
  width: calc(100% - 2rem);
}
dialog.captura::backdrop { background: rgba(5, 3, 10, .75); backdrop-filter: blur(6px); }
dialog.captura .head { padding: 1.75rem 1.75rem .5rem; }
dialog.captura .head h3 { font-size: 1.25rem; line-height: 1.2; }
dialog.captura .head p { color: var(--muted); font-size: .9rem; margin-top: .5rem; }
dialog.captura form { padding: 1rem 1.75rem 1.75rem; }
dialog.captura label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .35rem; }
dialog.captura input {
  width: 100%;
  background: rgba(14, 11, 22, .6);
  border: 1px solid var(--border);
  border-radius: .7rem;
  color: var(--fg);
  font-family: var(--body);
  font-size: .95rem;
  padding: .75rem .9rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color .2s;
}
dialog.captura input:focus { border-color: var(--amber); }
dialog.captura .btn-cta { width: 100%; }
dialog.captura .safe { text-align: center; color: var(--muted); font-size: .72rem; margin-top: .85rem; }
.captura[open] { animation: dlg-in .25s var(--ease); }
@keyframes dlg-in { from { opacity: 0; transform: scale(.95) translateY(10px); } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
