:root {
  --bg: #07070b;
  --bg-2: #0c0d14;
  --ink: #f4efe4;
  --muted: #b9b3a6;
  --dim: #7d776c;
  --gold: #e8c36a;
  --gold-2: #b8862a;
  --gold-soft: rgba(232, 195, 106, 0.16);
  --red: #e8403e;
  --tg: #2aabee;
  --tg-2: #1e96d1;
  --line: rgba(232, 195, 106, 0.22);
  --glass: rgba(10, 10, 16, 0.62);
  --radius: 18px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: .07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* Header */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.is-solid {
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav__brand img {
  height: 72px;
  width: auto;
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,.95))
    drop-shadow(0 0 12px rgba(255,255,255,.55))
    drop-shadow(0 0 22px rgba(232,195,106,.35));
}
.nav__links {
  display: flex;
  gap: 22px;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__links a {
  text-decoration: none;
  transition: color .2s;
}
.nav__links a:hover { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm { height: 40px; padding: 0 16px; font-size: .82rem; }
.btn--lg { height: 56px; padding: 0 26px; font-size: 1rem; }
.btn--telegram {
  color: #fff;
  background: linear-gradient(180deg, #4ec4f5, var(--tg) 42%, var(--tg-2));
  box-shadow:
    0 10px 28px rgba(42, 171, 238, .32),
    inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--telegram:hover { filter: brightness(1.06); box-shadow: 0 14px 34px rgba(42,171,238,.42); }
.btn--ghost {
  color: var(--ink);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--gold {
  color: #1a1408;
  background: linear-gradient(180deg, #fff0c2, var(--gold) 45%, var(--gold-2));
  box-shadow: 0 12px 30px rgba(232,195,106,.28), inset 0 1px 0 rgba(255,255,255,.55);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  padding: 120px 48px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,11,.82) 0%, rgba(7,7,11,.55) 52%, rgba(7,7,11,.28) 100%),
    linear-gradient(180deg, rgba(7,7,11,.35) 0%, rgba(7,7,11,.2) 40%, #07070b 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 640px; }
.hero__logo {
  height: 168px;
  width: auto;
  margin: -18px 0 6px -18px;
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,.95))
    drop-shadow(0 0 14px rgba(255,255,255,.55))
    drop-shadow(0 8px 24px rgba(0,0,0,.45));
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(232, 195, 106, .06);
}
.kicker--quiet { background: transparent; border-color: transparent; padding-left: 0; }
.kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(232,64,62,.7);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,64,62,.55); }
  50% { box-shadow: 0 0 0 7px rgba(232,64,62,0); }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(180deg, #fff6d4, #e8c36a 48%, #b8862a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 span { display: block; }

.lede {
  margin: 0 0 28px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
}
.lede strong { color: var(--ink); font-weight: 600; white-space: nowrap; }
#beneficios,
#como {
  scroll-margin-top: 96px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.pills li {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 6px 12px;
}

.hero__jewel {
  position: relative;
  z-index: 1;
  margin: 0;
  justify-self: end;
  width: min(420px, 100%);
}
.hero__jewel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.06),
    0 0 80px rgba(232,195,106,.12);
}
.hero__jewel figcaption {
  margin-top: 12px;
  text-align: center;
  color: var(--dim);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Sections */
.band {
  position: relative;
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,195,106,.08), transparent 60%),
    var(--bg);
  border-top: 1px solid rgba(255,255,255,.05);
}
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 12px;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p { margin: 0; color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  padding: 24px 22px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  min-height: 220px;
  transition: border-color .2s, transform .2s;
}
.card:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}
.card__num {
  display: block;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 28px;
  letter-spacing: .08em;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}
.card p { margin: 0; color: var(--muted); font-size: .92rem; }

.how {
  padding: 40px 0 100px;
}
.how__inner { text-align: center; }
.how .section-head { margin-left: auto; margin-right: auto; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0 0 36px;
  text-align: left;
}
.steps li {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  counter-increment: step;
}
.steps li strong { display: block; margin-bottom: 6px; font-size: 1.02rem; }
.steps li span { color: var(--muted); font-size: .92rem; }

.finale {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.05);
}
.finale__bg { position: absolute; inset: 0; }
.finale__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.finale__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(7,7,11,.2), rgba(7,7,11,.88) 70%);
}
.finale__inner { position: relative; z-index: 1; }
.finale h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  margin: 8px 0 16px;
}
.finale p { color: var(--muted); margin: 0 auto 28px; max-width: 42ch; }

.foot {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px 0 110px;
  background: #050508;
}
.foot__inner { display: grid; gap: 16px; }
.foot__brand img { height: 72px; width: auto; }
.foot p { margin: 0; color: var(--dim); font-size: .82rem; max-width: 72ch; }
.foot a { color: var(--gold); text-decoration: none; }
.foot a:hover { text-decoration: underline; }
.foot__links { display: flex; gap: 18px; font-size: .85rem; }

.dock {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 30;
  padding-bottom: env(safe-area-inset-bottom);
}
.dock .btn { width: 100%; box-shadow: 0 16px 40px rgba(0,0,0,.45); }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 22px 48px;
    min-height: auto;
  }
  .hero__jewel { justify-self: stretch; width: min(360px, 100%); margin-inline: auto; }
  .nav__links { display: none; }
  .grid, .steps { grid-template-columns: 1fr 1fr; }
  .foot { padding-bottom: 118px; }
  .dock { display: block; }
  .nav .btn--sm { display: none; }
}

@media (max-width: 620px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .nav { padding: 10px 14px; }
  .nav__brand img { height: 56px; }
  .hero__logo { height: 132px; margin: -8px auto 4px; display: block; }
  .hero h1 { font-size: 2.35rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .grid, .steps { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .band, .how { padding-left: 0; padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .kicker .dot { animation: none; }
  .btn, .card { transition: none; }
}
