/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #07070e;
  --bg-alt:   #0d0d1c;
  --primary:  #d4186b;
  --text:     #eeeef4;
  --muted:    #6e7a94;
  --border:   rgba(255,255,255,0.07);
  --card-bg:  rgba(255,255,255,0.03);
  --radius:   16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
strong { font-weight: 600; }

/* ─── Layout ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.narrow     { max-width: 720px; }
.text-center{ text-align: center; }

.section { padding-block: 6rem; }

.bg-dark    { background: var(--bg); }
.bg-alt     { background: var(--bg-alt); }
.bg-closing {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #150820 100%);
}

.section-header { margin-bottom: 3rem; }

/* ─── Typography ────────────────────────────────────── */
h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h3 { font-size: 1.4rem; font-weight: 700; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.8;
}

.section-desc strong { color: var(--text); }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #e82077, #a855f7);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.12) saturate(1.1);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(212,24,107,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

.btn-sm  { font-size: 0.82rem; padding: 0.5em 1.25em; }
.btn-lg  { font-size: 0.88rem; padding: 1em 2.25em; }
.btn-xl  { font-size: 1rem;    padding: 1.15em 2.5em; }

/* ─── Nav ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,7,14,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.brand strong { color: var(--primary); }

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  padding-block: 7rem 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,24,107,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(37,99,235,0.07) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
}

.hero-sub strong { color: var(--text); }

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  align-items: center;
}

.microcopy .sep { color: rgba(255,255,255,0.15); }

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 340px;
  height: 340px;
  border-radius: 32px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px var(--border),
    0 0 80px rgba(212,24,107,0.12);
}

/* ─── Identificação ─────────────────────────────────── */
.identification {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.id-divider {
  width: 48px;
  height: 2px;
  background: var(--primary);
  margin: 0.5rem auto;
}

.id-but {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.doubts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 420px;
  margin-inline: auto;
}

.doubts li {
  padding: 0.7rem 1.25rem;
  background: rgba(212,24,107,0.08);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
}

.id-close {
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 0.5rem;
}

/* ─── Proof / Prova Visual ──────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.proof-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-risk { border-top: 3px solid #ef4444; }
.card-good { border-top: 3px solid #22c55e; }

.proof-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Gauge (SVG donut) */
.proof-gauge {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.gauge {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.gauge-track {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 10;
}

.gauge-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.gauge-fill-risk { stroke: #ef4444; }
.gauge-fill-good { stroke: #22c55e; }

.gauge-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.proof-meta { flex: 1; }

.proof-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3em 0.85em;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}

.badge-risk {
  background: rgba(239,68,68,0.15);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.25);
}

.badge-good {
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.25);
}

.proof-meta p { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }

.proof-signals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.proof-signals li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}

.proof-signals li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
}

.proof-conclusion {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.proof-conclusion-good { color: #4ade80; }

.proof-doc img {
  border-radius: var(--radius-sm);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.5),
    0 0 0 1px var(--border);
  width: 100%;
}

/* ─── Metodologia / REAL ────────────────────────────── */
.real-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.real-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.real-letter {
  font-size: 1.75rem;
  font-weight: 900;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rl-r { background: rgba(239,68,68,0.15);   color: #f87171; }
.rl-e { background: rgba(37,99,235,0.15);    color: #60a5fa; }
.rl-a { background: rgba(234,179,8,0.15);    color: #fde047; }
.rl-l { background: rgba(16,185,129,0.15);   color: #34d399; }

.real-desc strong { display: block; font-size: 1rem; margin-bottom: 0.3rem; }
.real-desc p      { font-size: 0.9rem; color: var(--muted); }

.metodologia-note {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9;
}

.metodologia-note strong { color: var(--text); }

/* ─── Scale / Faixas ────────────────────────────────── */
.scale {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 2.5rem 0;
}

.scale-item {
  display: grid;
  grid-template-columns: 10px 60px 1fr 200px;
  align-items: center;
  gap: 0.75rem;
}

.scale-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.scale-range {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.scale-bar-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}

.scale-bar {
  height: 100%;
  border-radius: 999px;
  opacity: 0.75;
}

.scale-label {
  font-size: 0.85rem;
  color: var(--text);
  text-align: right;
}

.scale-note {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

.scale-note strong { color: var(--text); }

/* ─── Deliverables ──────────────────────────────────── */
.deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 460px;
  margin-inline: auto;
}

.deliverables li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.chk {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,24,107,0.15);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.delivery-note {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.delivery-note strong { color: var(--text); }

/* ─── Price Card ────────────────────────────────────── */
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 480px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.price-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-value {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-value sup {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
  -webkit-text-fill-color: var(--muted);
}

.price-terms { font-size: 0.82rem; color: var(--muted); }

.price-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 360px;
  text-align: center;
}

/* ─── Guarantee ─────────────────────────────────────── */
.guarantee {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.guarantee-icon { font-size: 2.5rem; }

.guarantee p { font-size: 1rem; color: var(--muted); line-height: 1.75; }

.guarantee-tag {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}

/* ─── Steps ─────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.55;
  min-width: 3rem;
  line-height: 1;
}

.step-body strong { display: block; font-size: 1.05rem; margin-bottom: 0.4rem; }
.step-body p      { font-size: 0.95rem; color: var(--muted); }

/* ─── Closing ────────────────────────────────────────── */
.closing-h {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.closing-sub {
  font-size: 1.35rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.closing-line {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  gap: 1rem;
  user-select: none;
}

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

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

details[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-a p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.footer-brand strong { color: var(--primary); }

.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-copy       { font-size: 0.82rem; color: var(--muted); }
.footer-disclaimer { font-size: 0.75rem; color: var(--muted); opacity: 0.55; max-width: 420px; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text  { align-items: center; }
  .hero-sub   { max-width: 100%; }
  .microcopy  { justify-content: center; }

  .hero-logo-wrap { order: -1; }
  .hero-logo      { width: 220px; height: 220px; }

  .proof-grid { grid-template-columns: 1fr; }
  .real-grid  { grid-template-columns: 1fr; }

  .scale-item {
    grid-template-columns: 10px 55px 1fr;
  }

  .scale-label {
    grid-column: 2 / -1;
    text-align: left;
    font-size: 0.8rem;
    color: var(--muted);
  }
}

@media (max-width: 600px) {
  .section  { padding-block: 4rem; }
  .hero     { padding-block: 5rem 3rem; }

  .btn-lg   { font-size: 0.82rem; padding: 0.9em 1.75em; }
  .btn-xl   { font-size: 0.9rem;  padding: 1em 1.75em; }

  .price-value { font-size: 3.5rem; }

  .proof-card { padding: 1.5rem; }
}
