/* ====================================================
   VARIÁVEIS — cores idênticas ao projeto React
   ==================================================== */
:root {
  /* Site */
  --bg:          hsl(222 47% 6%);
  --fg:          hsl(160 100% 95%);
  --muted-fg:    hsl(215 20% 60%);
  --card-bg:     hsl(222 47% 9%);
  --muted-bg:    hsl(222 30% 14%);
  --border:      hsl(222 30% 18%);

  /* Brand */
  --primary:     hsl(152 100% 50%);    /* verde neon */
  --primary-fg:  hsl(222 47% 6%);
  --accent:      hsl(217 91% 60%);     /* azul neon  */
  --danger:      hsl(0 84% 60%);

  /* Glows */
  --glow-green:  0 0 20px hsl(152 100% 50% / .45), 0 0 50px hsl(152 100% 50% / .18);
  --glow-blue:   0 0 20px hsl(217 91%  60% / .45), 0 0 50px hsl(217 91%  60% / .18);

  --radius: 0.75rem;
  --container: 1100px;
}

/* ====================================================
   RESET / BASE
   ==================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a    { color: inherit; text-decoration: none; }
p    { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.1; font-weight: 900; }
ul   { list-style: none; margin: 0; padding: 0; }
img  { display: block; max-width: 100%; }
button, input { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

/* ====================================================
   SEÇÕES
   ==================================================== */
.section-shell {
  position: relative;
  padding-block: 80px;
}

.section-tint::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, hsl(152 100% 50% / .03) 50%, transparent);
  pointer-events: none;
}

.section-tint-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, hsl(217 91% 60% / .03) 50%, transparent);
  pointer-events: none;
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.section-intro h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.section-intro p {
  margin-top: 14px;
  color: var(--muted-fg);
  font-size: 1.05rem;
}

/* ====================================================
   CORES DE DESTAQUE
   ==================================================== */
.text-primary {
  color: var(--primary);
  text-shadow: 0 0 10px hsl(152 100% 50% / .6), 0 0 30px hsl(152 100% 50% / .3);
}

.text-accent {
  color: var(--accent);
  text-shadow: 0 0 10px hsl(217 91% 60% / .6), 0 0 30px hsl(217 91% 60% / .3);
}

.text-danger { color: var(--danger); }

/* ====================================================
   HERO — layout CENTRALIZADO, igual ao original
   ==================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Efeitos de fundo aurora */
.hero-aurora {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-aurora-left {
  top: 25%;
  left: -128px;
  background: hsl(152 100% 50% / .05);
}

.hero-aurora-right {
  bottom: 25%;
  right: -128px;
  background: hsl(217 91% 60% / .05);
}

/* Container do hero — centralizado */
.hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding-block: 80px;
}

/* Badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid hsl(152 100% 50% / .3);
  border-radius: 9999px;
  background: hsl(152 100% 50% / .1);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .05em;
  animation: pulse-neon 2s ease-in-out infinite;
}

.badge-pill-soft {
  animation: none;
  box-shadow: none;
}

.badge-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Headline */
.hero-center h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: -.02em;
  max-width: 900px;
}

/* Subtítulo */
.lead-text {
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted-fg);
  line-height: 1.7;
}

.lead-text strong { color: var(--fg); }

/* Botões + nota */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted-fg);
}

/* ====================================================
   PLACEHOLDER DO CELULAR — igual ao original
   ==================================================== */
.phone-placeholder {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-top: 16px;
}

.phone-inner {
  aspect-ratio: 9 / 16;
  max-height: 500px;
  border: 2px solid var(--border);
  border-radius: calc(var(--radius) * 4);
  background: hsl(222 47% 9% / .5);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}

.phone-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: calc(var(--radius) * 2);
  background: hsl(152 100% 50% / .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.phone-inner p {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.phone-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, hsl(152 100% 50% / .1), hsl(217 91% 60% / .05), transparent);
  filter: blur(24px);
  transform: scale(1.1);
}

/* ====================================================
   BOTÃO
   ==================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms, transform 160ms, box-shadow 160ms;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--primary);
  color: var(--primary-fg);
  animation: pulse-neon 2s ease-in-out infinite;
}

.button-primary:hover { background: hsl(152 100% 55%); }

.button-block { width: 100%; }

.button-arrow { font-size: 1.1rem; }

/* ====================================================
   CARDS GENÉRICOS
   ==================================================== */
.info-card,
.testimonial-card,
.comparison-table,
.calculator-card,
.pricing-card,
.faq-item {
  border: 1px solid var(--border);
  background: hsl(222 47% 9% / .5);
  backdrop-filter: blur(8px);
  border-radius: calc(var(--radius) * 2);
}

.info-card, .testimonial-card { padding: 24px; }

.info-card {
  transition: transform 200ms, border-color 200ms;
}

.info-card:hover { transform: translateY(-4px); }

.info-card-danger {
  border-color: hsl(0 84% 60% / .2);
  background: hsl(0 84% 60% / .05);
}

.info-card-danger:hover { border-color: hsl(0 84% 60% / .4); }

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: hsl(0 84% 60% / .1);
  color: var(--danger);
  margin-bottom: 16px;
  transition: background 200ms;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.info-card-danger:hover .info-icon { background: hsl(0 84% 60% / .2); }

.info-icon-primary {
  background: hsl(152 100% 50% / .1);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 800;
}

.info-card:not(.info-card-danger):hover .info-icon-primary {
  background: hsl(152 100% 50% / .2);
  box-shadow: var(--glow-green);
}

.info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p { font-size: 0.9rem; color: var(--muted-fg); line-height: 1.65; }

/* ====================================================
   GRIDS
   ==================================================== */
.problem-grid,
.features-grid,
.testimonials-grid {
  display: grid;
  gap: 20px;
}

.problem-grid   { grid-template-columns: repeat(3, 1fr); }
.features-grid  { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid { grid-template-columns: repeat(2, 1fr); }

/* ====================================================
   COMPARAÇÃO
   ==================================================== */
.comparison-wrapper {
  max-width: 800px;
  margin-inline: auto;
}

.comparison-table {
  overflow: hidden;
  border-radius: calc(var(--radius) * 2);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 64px;
  padding-inline: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-head {
  background: hsl(222 30% 14% / .3);
  border-top: none;
  font-weight: 700;
  color: var(--muted-fg);
}

.comparison-row:nth-child(even):not(.comparison-head) {
  background: hsl(222 47% 9% / .3);
}

.col-check { color: var(--primary); text-align: center; font-size: 1.2rem; }
.col-cross { color: hsl(215 20% 60% / .4); text-align: center; font-size: 1.2rem; }
.col-pro   { color: var(--primary); font-weight: 700; text-align: center; }

.comparison-head .col-pro { color: var(--primary); }

/* ====================================================
   CALCULADORA
   ==================================================== */
.calculator-shell {
  max-width: 720px;
  margin-inline: auto;
}

.calculator-card { padding: 32px; }

.range-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-fg);
  margin-bottom: 16px;
}

.range-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.currency-mark {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

#daily-income {
  flex: 1;
  height: 8px;
  appearance: none;
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(90deg,
    hsl(152 100% 50% / .8) 0%,
    hsl(152 100% 50% / .2) 0%
  );
}

#daily-income::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px hsl(152 100% 50% / .2);
  cursor: pointer;
}

#daily-income::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

#daily-income-output {
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}

.calculator-result {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid hsl(152 100% 50% / .2);
  border-radius: calc(var(--radius) * 1.5);
  background: hsl(152 100% 50% / .1);
  text-align: center;
}

.calculator-result p    { font-size: 0.85rem; color: var(--muted-fg); }
.calculator-result strong {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 10px hsl(152 100% 50% / .6), 0 0 30px hsl(152 100% 50% / .3);
  margin-block: 8px;
}
.calculator-result small { font-size: 0.8rem; color: var(--muted-fg); }

/* ====================================================
   PROVA SOCIAL
   ==================================================== */
.social-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

.counter-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid hsl(152 100% 50% / .2);
  border-radius: 9999px;
  background: hsl(152 100% 50% / .05);
}

.counter-pill span {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 10px hsl(152 100% 50% / .6), 0 0 30px hsl(152 100% 50% / .3);
}

.social-counter p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted-fg);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  transition: border-color 200ms;
}

.testimonial-card:hover { border-color: hsl(217 91% 60% / .3); }

.stars   { color: var(--primary); letter-spacing: .1em; }

.testimonial-card p    { font-size: 0.9rem; color: var(--fg); line-height: 1.65; }
.testimonial-card strong { font-size: 0.9rem; font-weight: 700; }
.testimonial-card span   { font-size: 0.8rem; color: var(--muted-fg); }

/* ====================================================
   PREÇOS
   ==================================================== */
.pricing-shell {
  max-width: 480px;
  margin-inline: auto;
  text-align: center;
}

.pricing-card {
  position: relative;
  padding: 40px 32px;
  border: 2px solid hsl(152 100% 50% / .4);
  text-align: center;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, hsl(152 100% 50% / .2), hsl(217 91% 60% / .1), hsl(152 100% 50% / .2));
  filter: blur(28px);
  z-index: -1;
}

.pricing-card .badge-pill {
  margin-bottom: 0;
}

.pricing-card h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-top: 20px;
}

.pricing-copy {
  color: var(--muted-fg);
  margin-top: 12px;
  font-size: 0.95rem;
}

.pricing-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-block: 28px;
}

.pricing-highlight strong {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  text-shadow: 0 0 10px hsl(152 100% 50% / .6), 0 0 30px hsl(152 100% 50% / .3);
}

.pricing-highlight span {
  font-size: 1.3rem;
  font-weight: 700;
}

.pricing-highlight small {
  font-size: 0.85rem;
  color: var(--muted-fg);
}

.pricing-card .hero-note {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ====================================================
   FAQ
   ==================================================== */
.faq-shell {
  max-width: 720px;
  margin-inline: auto;
}

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

.faq-item {
  overflow: hidden;
  transition: border-color 200ms, background 200ms;
  padding-inline: 4px;
}

.faq-item.is-open {
  border-color: hsl(152 100% 50% / .3);
  background: hsl(152 100% 50% / .05);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px;
  background: transparent;
  border: none;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-trigger span:first-child { font-weight: 600; font-size: 0.95rem; }

.faq-symbol {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 220ms;
}

.faq-item.is-open .faq-symbol { transform: rotate(45deg); }

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-content p {
  overflow: hidden;
  padding-inline: 20px;
  padding-bottom: 0;
  color: var(--muted-fg);
  font-size: 0.9rem;
  line-height: 1.7;
  transition: padding-bottom 220ms;
}

.faq-item.is-open .faq-content { grid-template-rows: 1fr; }
.faq-item.is-open .faq-content p { padding-bottom: 20px; }

/* ====================================================
   RODAPÉ
   ==================================================== */
.site-footer {
  padding-block: 40px;
  border-top: 1px solid var(--border);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted-fg);
}

.footer-shell a:hover { color: var(--primary); text-decoration: underline; }

/* ====================================================
   CTA FLUTUANTE
   ==================================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px hsl(152 100% 50% / .35);
  animation: pulse-neon 2s ease-in-out infinite;
  transition: transform 160ms;
}

.floating-cta:hover { transform: translateY(-3px); }

/* ====================================================
   ANIMAÇÕES
   ==================================================== */
@keyframes pulse-neon {
  0%, 100% {
    box-shadow:
      0 0 10px hsl(152 100% 50% / .4),
      0 0 30px hsl(152 100% 50% / .2),
      0 0 60px hsl(152 100% 50% / .1);
  }
  50% {
    box-shadow:
      0 0 20px hsl(152 100% 50% / .6),
      0 0 50px hsl(152 100% 50% / .3),
      0 0 80px hsl(152 100% 50% / .15);
  }
}

/* ====================================================
   REVEAL (scroll)
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1           { transition-delay: 90ms; }
.reveal-delay-2           { transition-delay: 180ms; }

/* ====================================================
   RESPONSIVO
   ==================================================== */
@media (max-width: 900px) {
  .problem-grid,
  .features-grid { grid-template-columns: 1fr; }

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

@media (max-width: 600px) {
  .section-shell { padding-block: 64px; }

  .hero-center { gap: 20px; }

  .comparison-table { overflow-x: auto; }
  .comparison-row { min-width: 560px; gap: 8px; }

  .range-row { flex-wrap: wrap; }
  #daily-income { width: 100%; }
  #daily-income-output { text-align: left; }

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

  .floating-cta {
    inset: auto 12px 12px;
    justify-content: center;
    border-radius: var(--radius);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .button, .floating-cta, .info-card, .faq-item { transition: none; }
  .badge-pill, .button-primary, .floating-cta { animation: none; }
}
