:root {
  --bg: #050705;
  --panel: #0d120f;
  --gold: #e0b34d;
  --gold2: #f6d98a;
  --ink: #f7f2e8;
  --mute: #a3aea6;
  --blue: #3b82f6;
  --red: #ef4444;
  --ok: #34d399;
  --line: rgba(224, 179, 77, 0.28);
  --display: "Outfit", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background: var(--bg);
  padding-bottom: 88px;
}

.stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(90% 55% at 50% -5%, rgba(224, 179, 77, 0.12), transparent 52%),
    radial-gradient(70% 50% at 100% 20%, rgba(59, 130, 246, 0.06), transparent 45%),
    linear-gradient(180deg, #0a0c0b 0%, #050705 45%, #070908 100%);
}

.stage-glow {
  display: none;
}

.stage-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-brand img {
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(224, 179, 77, 0.5);
}

.nav-brand em {
  font-style: normal;
  color: var(--gold2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  color: var(--mute);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--gold2); }

.nav-cta {
  color: #1a1408 !important;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(224, 179, 77, 0.35);
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 90px);
  overflow: visible;
}

.pill {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(224, 179, 77, 0.08);
  color: var(--gold2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

h1 {
  margin: 0;
  display: grid;
  gap: 10px;
}

.h-brand {
  font-family: var(--display);
  font-size: clamp(2.35rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  background: linear-gradient(115deg, #fff8e4 10%, var(--gold2) 45%, #c8922f 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(224, 179, 77, 0.15);
  min-height: 1.15em;
  display: inline-block;
}

.h-brand.is-typing {
  border-right: 3px solid var(--gold2);
  padding-right: 2px;
  animation: caretBlink 0.85s step-end infinite;
}

.h-brand.is-done {
  border-right-color: transparent;
  animation: none;
}

@keyframes caretBlink {
  50% { border-right-color: transparent; }
}

.h-sub {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 22ch;
}

.hero-text {
  margin: 16px 0 0;
  color: var(--mute);
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 14px;
  padding: 14px 18px;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover { transform: translateY(-2px); }

.cta--gold {
  color: #1a1408;
  background: linear-gradient(180deg, #ffe4a1, var(--gold) 55%, #b98528);
  box-shadow: 0 14px 34px rgba(224, 179, 77, 0.38);
  animation: glow 2.8s ease-in-out infinite;
}

.cta--ghost,
.cta--outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.cta--full { width: 100%; }

@keyframes glow {
  0%, 100% { box-shadow: 0 14px 34px rgba(224, 179, 77, 0.32); }
  50% { box-shadow: 0 16px 42px rgba(246, 217, 138, 0.55); }
}

.hero-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics div {
  padding: 12px;
  border-left: 2px solid rgba(224, 179, 77, 0.55);
  background: linear-gradient(90deg, rgba(224, 179, 77, 0.1), transparent);
}

.hero-metrics strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
}

.hero-metrics span {
  color: var(--mute);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.logo-burst {
  position: relative;
  z-index: 2;
  width: min(360px, 82%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: float 5.5s ease-in-out infinite;
  isolation: isolate;
  overflow: visible;
}

.ring {
  position: absolute;
  inset: -12%;
  z-index: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 179, 77, 0.4);
  pointer-events: none;
  animation: spin 14s linear infinite;
}

.ring-2 {
  inset: -24%;
  z-index: 0;
  border-color: rgba(59, 130, 246, 0.55);
  border-width: 2px;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.25);
  animation-direction: reverse;
  animation-duration: 18s;
}

.logo-plate {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 8;
  background: #050705;
  pointer-events: none;
}

.hero-logo {
    width: 100%;
    height: auto;
    max-width: 98%;
    position: relative;
    z-index: 10;
}

.spark {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  z-index: 12;
  animation: bob 2.4s ease-in-out infinite;
  pointer-events: none;
}

.spark-l {
  left: 4%;
  top: 42%;
  background: linear-gradient(135deg, #60a5fa, #1d4ed8);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.85);
}

.spark-r {
  right: 6%;
  top: 34%;
  background: linear-gradient(135deg, #f87171, #b91c1c);
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.85);
  animation-delay: -1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-10px) rotate(-8deg); }
}

.strip {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  border-block: 1px solid rgba(224, 179, 77, 0.16);
  color: var(--mute);
  font-weight: 600;
  font-size: 0.92rem;
}

.strip p {
  margin: 0;
}

.strip p::before {
  content: "◆ ";
  color: var(--gold);
  font-size: 0.7em;
}

.features {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feat {
  padding: 22px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 180px;
  transition: transform 0.2s ease;
}

.feat:hover { transform: translateY(-4px); }

.feat--blue { box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.25), 0 0 40px rgba(59, 130, 246, 0.08); }
.feat--gold { box-shadow: inset 0 0 0 1px rgba(224, 179, 77, 0.28), 0 0 40px rgba(224, 179, 77, 0.08); }
.feat--red { box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.25), 0 0 40px rgba(239, 68, 68, 0.08); }

.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.feat--blue .feat-icon { color: #93c5fd; background: rgba(59, 130, 246, 0.15); }
.feat--gold .feat-icon { color: var(--gold2); background: rgba(224, 179, 77, 0.15); }
.feat--red .feat-icon { color: #fca5a5; background: rgba(239, 68, 68, 0.15); }

.feat h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.2rem;
}

.feat p {
  margin: 0;
  color: var(--mute);
  line-height: 1.5;
}

.pricing {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 36px;
}

.pricing-head {
  text-align: center;
  margin-bottom: 22px;
}

.pricing-head h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.pricing-head p {
  margin: 0;
  color: var(--mute);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  position: relative;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #121916, #0a0e0c);
  border: 1px solid rgba(224, 179, 77, 0.2);
}

.price-card--hot {
  border-color: rgba(224, 179, 77, 0.65);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(224, 179, 77, 0.2), transparent 50%),
    linear-gradient(180deg, #1a1710, #0c100d);
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(224, 179, 77, 0.12);
}

.hot-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1408;
  background: linear-gradient(180deg, #ffe4a1, var(--gold));
  padding: 5px 9px;
  border-radius: 999px;
}

.price-tag {
  margin: 0;
  color: var(--gold2);
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-value {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.price-note {
  margin: 4px 0 16px;
  color: var(--mute);
}

.price-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--mute);
  line-height: 1.75;
}

.price-card .cta { width: 100%; }

.checkout {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.checkout-panel {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(224, 179, 77, 0.45);
  background:
    radial-gradient(100% 80% at 0% 0%, rgba(224, 179, 77, 0.14), transparent 50%),
    #0e1411;
  display: grid;
  gap: 16px;
}

.checkout-panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
}

.checkout-plan {
  margin: 6px 0 0;
  color: var(--gold2);
  font-weight: 700;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--mute);
  font-size: 0.9rem;
}

.checkout-form input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #070a08;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

.checkout-form input:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.form-error {
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

.tiny {
  margin: 0;
  color: var(--mute);
  font-size: 0.85rem;
}

.how {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 50px;
  text-align: center;
}

.how h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
  text-align: left;
}

.how-step {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(224, 179, 77, 0.14);
}

.how-step span {
  font-family: var(--display);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.2rem;
}

.how-step h3 {
  margin: 8px 0;
  font-family: var(--display);
}

.how-step p {
  margin: 0;
  color: var(--mute);
  line-height: 1.45;
}

.footer {
  text-align: center;
  padding: 10px 20px 30px;
  color: var(--mute);
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer img {
  border-radius: 50%;
  opacity: 0.95;
}

.secure-pay {
  max-width: 920px;
  margin: 10px auto 28px;
  padding: 0 20px;
}

.secure-pay-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(99, 91, 255, 0.28);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(99, 91, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #12141c, #0b0d12);
}

.secure-pay-lock {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #a5b4fc;
  background: rgba(99, 91, 255, 0.15);
}

.secure-pay-copy h2 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.15rem;
}

.secure-pay-copy p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.45;
}

.secure-pay-brand {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.secure-pay-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}

.stripe-logo {
  width: 72px;
  height: auto;
  display: block;
}

.secure-pay-points {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
  color: var(--mute);
  font-size: 0.86rem;
  font-weight: 600;
}

.secure-pay-points li::before {
  content: "✓ ";
  color: #818cf8;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.45);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: waPulse 2.6s ease-in-out infinite;
  line-height: 0;
}

.wa-float-icon {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.55);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(18, 140, 126, 0.4); }
  50% { box-shadow: 0 14px 36px rgba(37, 211, 102, 0.65); }
}

@media (max-width: 920px) {
  .wa-float {
    right: 14px;
    bottom: 88px;
  }

  .secure-pay-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .secure-pay-brand {
    justify-items: start;
  }
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(5, 7, 5, 0.92);
  border-top: 1px solid rgba(224, 179, 77, 0.25);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.28s ease;
}

.dock.is-on { transform: none; }

.dock-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dock-inner strong {
  display: block;
  font-family: var(--display);
}

.dock-inner span {
  color: var(--mute);
  font-size: 0.85rem;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .h-sub { max-width: none; }

  .hero-visual {
    display: none !important;
  }

  .features,
  .price-grid,
  .how-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .price-card--hot { transform: none; }

  .nav-links a:not(.nav-cta) { display: none; }

  .dock-inner span { display: none; }
}

/* ——— Espera de lançamento ——— */
body.launch-modal-open {
  overflow: hidden;
}

.launch-modal[hidden] {
  display: none !important;
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.launch-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 6, 0.72);
  backdrop-filter: blur(6px);
}

.launch-modal-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 28px 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 90, 0.35);
  background:
    linear-gradient(165deg, rgba(28, 36, 28, 0.98), rgba(12, 16, 12, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.launch-modal-eyebrow {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft, #e8c77b);
}

.launch-modal-panel h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--text);
}

.launch-modal-text {
  margin: 0 0 20px;
  white-space: pre-line;
  line-height: 1.55;
  color: var(--mute, #a8b5a8);
  font-size: 0.95rem;
}
