* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 52px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #f8fafc;
  color: #111827;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.header-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #dc2626;
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-bottom: 1px solid #b91c1c;
}
.header-strip strong { font-weight: 700; }
.header-strip .ti { margin-right: 6px; vertical-align: -0.2em; }
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 40%, #ede9fe 70%, #ecfeff 100%);
  overflow: hidden;
}
.particles {
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}
.particles-layer-1 {
  animation: float1 24s ease-in-out infinite;
  box-shadow:
    5vw 12vh 0 2px rgba(91, 33, 182, 0.4),
    18vw 8vh 0 1px rgba(139, 92, 246, 0.35),
    32vw 25vh 0 2px rgba(91, 33, 182, 0.38),
    48vw 5vh 0 1px rgba(14, 116, 144, 0.4),
    62vw 18vh 0 2px rgba(6, 182, 212, 0.35),
    78vw 30vh 0 1px rgba(91, 33, 182, 0.32),
    92vw 12vh 0 2px rgba(14, 116, 144, 0.38),
    8vw 35vh 0 1px rgba(6, 182, 212, 0.4),
    25vw 45vh 0 2px rgba(139, 92, 246, 0.33),
    42vw 55vh 0 1px rgba(91, 33, 182, 0.4),
    58vw 42vh 0 2px rgba(14, 116, 144, 0.35),
    75vw 58vh 0 1px rgba(6, 182, 212, 0.32),
    88vw 68vh 0 2px rgba(91, 33, 182, 0.38),
    12vw 72vh 0 1px rgba(139, 92, 246, 0.36),
    38vw 78vh 0 2px rgba(6, 182, 212, 0.4),
    55vw 85vh 0 1px rgba(91, 33, 182, 0.33),
    72vw 92vh 0 2px rgba(14, 116, 144, 0.38),
    95vw 82vh 0 1px rgba(6, 182, 212, 0.35);
}
.particles-layer-2 {
  animation: float2 20s ease-in-out infinite;
  box-shadow:
    15vw 22vh 0 1px rgba(6, 182, 212, 0.38),
    28vw 15vh 0 2px rgba(14, 116, 144, 0.35),
    45vw 38vh 0 1px rgba(91, 33, 182, 0.4),
    68vw 22vh 0 2px rgba(139, 92, 246, 0.33),
    82vw 48vh 0 1px rgba(6, 182, 212, 0.38),
    8vw 55vh 0 2px rgba(14, 116, 144, 0.35),
    22vw 68vh 0 1px rgba(91, 33, 182, 0.32),
    52vw 62vh 0 2px rgba(6, 182, 212, 0.4),
    38vw 28vh 0 1px rgba(139, 92, 246, 0.36),
    65vw 8vh 0 2px rgba(91, 33, 182, 0.35),
    85vw 65vh 0 1px rgba(14, 116, 144, 0.38),
    12vw 88vh 0 2px rgba(6, 182, 212, 0.33),
    48vw 92vh 0 1px rgba(91, 33, 182, 0.38),
    78vw 75vh 0 2px rgba(139, 92, 246, 0.35),
    5vw 42vh 0 1px rgba(14, 116, 144, 0.4),
    92vw 38vh 0 2px rgba(6, 182, 212, 0.35);
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(18px, -14px); }
  50% { transform: translate(-12px, 20px); }
  75% { transform: translate(14px, 10px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-20px, 16px); }
  66% { transform: translate(16px, -18px); }
}

/* Frufru: animações de entrada e scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 2px 8px rgba(91, 33, 182, 0.3), 0 0 0 0 rgba(91, 33, 182, 0.4); }
  50% { box-shadow: 0 4px 16px rgba(91, 33, 182, 0.4), 0 0 0 12px rgba(91, 33, 182, 0); }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  60% {
    transform: scale(1.02) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes successTitle {
  0% { opacity: 0; transform: scale(0.8); }
  50% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.confetti-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}
.confetti-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  pointer-events: none;
  transition: opacity 0.2s ease;
  will-change: left, top, opacity;
}
.confetti-particle.is-round { border-radius: 50%; }

.animate-in {
  animation: fadeInUp 0.7s ease-out forwards;
}
.animate-in .hero-title {
  animation: fadeInUp 0.6s ease-out 0.15s forwards;
  opacity: 0;
}
.logo-float {
  animation: logoFloat 4s ease-in-out infinite;
}
.hero-cta-pulse {
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.hero-cta-pulse:hover {
  animation: none;
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.45);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefits-stagger li {
  opacity: 0;
  transform: translateX(-12px);
  animation: fadeInUp 0.5s ease-out forwards;
}
.benefits-stagger li:nth-child(1) { animation-delay: 0.05s; }
.benefits-stagger li:nth-child(2) { animation-delay: 0.12s; }
.benefits-stagger li:nth-child(3) { animation-delay: 0.19s; }
.benefits-stagger li:nth-child(4) { animation-delay: 0.26s; }
.benefits-stagger li:nth-child(5) { animation-delay: 0.33s; }
.benefits-stagger li:nth-child(6) { animation-delay: 0.4s; }

.card-glow {
  transition: box-shadow 0.3s ease;
}
.card-glow:hover {
  box-shadow: 0 8px 32px rgba(91, 33, 182, 0.15), 0 0 0 1px rgba(139, 92, 246, 0.2);
}

.success-block.success-pop {
  animation: successPop 0.6s ease-out forwards;
}
.success-block .success-title {
  animation: successTitle 0.5s ease-out 0.2s forwards;
  opacity: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 672px;
  margin: 0 auto;
  padding: 16px;
}
header {
  text-align: center;
  padding: 48px 24px 32px;
  border-bottom: 1px solid #e5e7eb;
}
.logo {
  display: block;
  margin: 0 auto 24px;
  max-width: 220px;
  width: 220px;
  height: auto;
}
.hero-badges-track {
  overflow: hidden;
  margin: 0 auto 24px;
  max-width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.hero-badges-inner {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: hero-badges-scroll 35s linear infinite;
}
.hero-badges-inner:hover {
  animation-play-state: paused;
}
@keyframes hero-badges-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-badges-inner .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.hero-badges-inner .badge-item .ti {
  font-size: 14px;
  color: #6b21a8;
}
.hero-cta-wrap {
  margin-top: 28px;
  text-align: center;
}
.hero-cta-btn {
  display: inline-block;
  background: linear-gradient(to right, #5b21b6, #0e7490);
  color: #fff;
  padding: 18px 32px;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(91, 33, 182, 0.3);
}
.hero-cta-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.hero-cta-btn:hover { opacity: 0.95; transform: translateY(-2px); }
.hero-cta-btn:active { transform: translateY(0); }
.hero-cta-btn .ti { margin-right: 8px; vertical-align: -0.2em; }
.badge-free {
  display: block;
  background: #059669;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 24px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
}
h1 { font-size: 1.75rem; font-weight: 700; margin: 0 0 16px; color: #111827; }
h2 { font-size: 1.25rem; font-weight: 700; margin: 0 0 12px; color: #111827; }
.sub { font-size: 1.125rem; color: #1f2937; margin: 0 0 20px; }
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #374151;
}
.hero-highlights li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #5b21b6;
  padding: 6px 14px;
  border-radius: 9999px;
  font-weight: 500;
}
main { padding: 16px; }
.intro {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 8px;
}
.intro p {
  font-size: 1rem;
  color: #374151;
  margin: 0 0 8px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 32px 0 16px;
  text-align: center;
}
.section-title:first-of-type { margin-top: 0; }
.section-title.cta-lead { margin-top: 40px; font-size: 1.25rem; }
.intro.cta-sub { margin-bottom: 16px; }
.block {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(221, 214, 254, 0.6);
}
.block p { margin: 0 0 12px; font-size: 0.9375rem; color: #374151; }
.block p:last-child { margin-bottom: 0; }
.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.who-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.9375rem;
  color: #374151;
}
.who-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #5b21b6;
  border-radius: 50%;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding-left: 44px;
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: #374151;
}
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #5b21b6, #0e7490);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 28px;
  text-align: center;
}
.steps strong { color: #111827; }
.quote {
  font-style: italic;
  color: #4b5563;
  font-size: 1rem;
  margin: 0 0 12px;
  padding: 0 8px;
}
.quote-author { font-size: 14px; color: #6b7280; margin: 0; }
.testimonial-item {
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}
.testimonial-item:last-child { border-bottom: none; }
.faq-collapsible { padding: 0; margin: 0; list-style: none; }
.faq-collapsible details {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}
.faq-collapsible details:last-child { margin-bottom: 0; }
.faq-collapsible details[open] { border-color: #c4b5fd; box-shadow: 0 0 0 1px #c4b5fd; }
.faq-collapsible summary span { flex: 1; text-align: left; }
.faq-collapsible summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #111827;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}
.faq-collapsible summary::-webkit-details-marker { display: none; }
.faq-collapsible summary::-moz-list-bullet { list-style-type: none; }
.faq-collapsible summary:hover { background: #faf5ff; }
.faq-collapsible summary .ti {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 1.125rem;
  color: #5b21b6;
  transition: transform 0.2s ease;
}
.faq-collapsible details[open] summary .ti { transform: rotate(180deg); }
.faq-collapsible .faq-answer {
  padding: 12px 18px 18px;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}
.form-hint { font-size: 12px; color: #6b7280; margin-top: 4px; }
.form-free-hint {
  text-align: center;
  font-size: 0.9375rem;
  color: #059669;
  margin: 0 0 12px;
  font-weight: 600;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9375rem;
  color: #374151;
}
.benefits li:last-child { border-bottom: none; }
.benefits .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b21b6;
  font-size: 1.25rem;
}
.benefits strong { color: #111827; }
.card {
  background: linear-gradient(to bottom right, #faf5ff, #ecfeff);
  border: 1px solid #ddd6fe;
  border-radius: 24px;
  padding: 32px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}
.form-group label .ti { font-size: 1rem; color: #5b21b6; }
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  font-size: 16px;
  color: #111827;
  background: #fff;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group input:focus-visible {
  outline: none;
  border-color: #5b21b6;
  box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.2);
}
.form-group input::placeholder { color: #9ca3af; }
button[type="submit"] {
  width: 100%;
  background: linear-gradient(to right, #5b21b6, #0e7490);
  color: #fff;
  padding: 20px;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
}
button[type="submit"] {
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
button[type="submit"]:hover { opacity: 0.95; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(91, 33, 182, 0.35); }
button[type="submit"]:active { transform: translateY(0); }
button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.social-cta {
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.social-cta-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.social-cta-title .ti { font-size: 1.5rem; color: #5b21b6; }
.social-cta-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 16px;
}
.social-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-cta-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #5b21b6;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.social-cta-links a:hover {
  background: #ede9fe;
  border-color: #c4b5fd;
}
.social-cta-links a .ti { font-size: 1.125rem; }
.waitlist-cta-line {
  text-align: center;
  margin: 0 0 24px;
  padding: 14px 20px;
  background: linear-gradient(to right, rgba(91, 33, 182, 0.12), rgba(14, 116, 144, 0.12));
  border-radius: 16px;
  border: 1px solid rgba(91, 33, 182, 0.25);
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}
.waitlist-cta-line .waitlist-cta-num { color: #5b21b6; font-weight: 800; }
.form-notice {
  text-align: center;
  margin: 0 0 20px;
  padding: 14px 20px;
  font-size: 0.9375rem;
  color: #374151;
  background: #f3f4f6;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}
.form-notice strong { color: #1f2937; }
.form-block.is-hidden { display: none; }
.success-block {
  display: none;
  background: linear-gradient(to bottom right, #f0fdf4, #ecfeff);
  border: 1px solid #86efac;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
}
.success-block.is-visible { display: block; }
.success-block h2 { font-size: 1.5rem; margin: 0 0 12px; color: #111827; display: flex; align-items: center; justify-content: center; gap: 8px; }
.success-block h2 .ti { color: #059669; font-size: 1.75rem; }
.success-block p { margin: 0 0 8px; color: #374151; }
.success-block .success-email { font-weight: 700; color: #5b21b6; }
.form-error-msg {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #b91c1c;
  font-size: 14px;
}
.form-error-msg.is-visible { display: block; }
.disclaimer { text-align: center; font-size: 14px; color: #1f2937; margin-top: 24px; }
.proof {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-top: 20px;
  font-style: italic;
}
footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
}
.footer-desc {
  max-width: 480px;
  margin: 0 auto 12px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}
.footer-social {
  margin-bottom: 12px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #5b21b6;
  text-decoration: none;
  font-weight: 600;
}
.footer-social a .ti { font-size: 1rem; }
.footer-social a:hover { text-decoration: underline; }
.footer-sep {
  margin: 0 8px;
  color: #9ca3af;
}
.footer-copy {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}
.ti {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25em;
  line-height: 1;
}
.section-title .ti { margin-right: 6px; }
.icon-text { display: inline-flex; align-items: center; gap: 6px; }
