:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #1a1a1a;
  --lime: #d6ff3f;
  --lime-2: #c4ef2a;
  --ink: #0a0a0a;
  --text: #f4f4ee;
  --muted: #b7b7ad;
  --line: rgba(214, 255, 63, 0.18);
  --whatsapp: #25d366;
  --radius: 18px;
  --wrap: 1120px;
  --header: 72px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 0.6em;
  font-weight: 800;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--lime);
  color: var(--ink);
  padding: 8px 12px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.lime {
  color: var(--lime);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 42rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav a:focus-visible,
summary:focus-visible,
.wa-float:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
}

.btn-lime:hover {
  background: var(--lime-2);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(244, 244, 238, 0.22);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-dark {
  background: var(--ink);
  color: var(--lime);
}

.btn-lg {
  min-height: 56px;
  padding-inline: 26px;
  font-size: 1.05rem;
}

.btn-compact {
  min-height: 42px;
  padding-inline: 16px;
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: calc(10px + env(safe-area-inset-top)) 12px 0;
  background: transparent;
}

.header-shell {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
  transition: border-radius 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-open .header-shell {
  border-radius: 20px;
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.42);
  border-color: var(--line);
}

.header-inner {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px 0 14px;
}

.header-inner > .btn {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-right: auto;
  min-width: 0;
}

.brand img {
  border-radius: 9px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  line-height: 1.15;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 0.98rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.nav {
  display: none;
  gap: 22px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--lime);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-mobile {
  display: grid;
  gap: 4px;
  padding: 4px 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-mobile[hidden] {
  display: none !important;
}

.menu-mobile a {
  padding: 12px 10px;
  font-weight: 700;
  border-radius: 12px;
}

.menu-mobile .btn {
  margin-top: 6px;
}

.hero {
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero h1 {
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 22px;
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li {
  padding: 6px 0 6px 18px;
  position: relative;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--lime);
  position: absolute;
  left: 0;
  top: 12px;
}

.hero-card {
  background: var(--lime);
  color: var(--ink);
  border-radius: 28px;
  padding: 28px 24px;
  align-self: start;
}

.hero-card-kicker {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-card-price {
  margin: 10px 0 16px;
}

.hero-card-price span,
.hero-card-price em {
  display: block;
  font-style: normal;
  font-weight: 700;
}

.hero-card-price strong {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.hero-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
  font-weight: 700;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--lime);
}

.ticker-track span {
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.intro {
  padding: 48px 0 8px;
}

.intro h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  max-width: 18ch;
}

.intro p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42rem;
}

.section-kicker {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 18px;
}

.trust {
  padding: 56px 0;
}

.trust-grid {
  display: grid;
  gap: 16px;
}

.trust article,
.benefit-stack article,
.plan {
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px;
}

.trust h3,
.benefit-stack h3,
.plan h3,
.step-grid h3 {
  font-size: 1.45rem;
}

.trust p,
.benefit-stack p,
.plan-lead,
.step-grid p {
  color: var(--muted);
}

.plans,
.steps {
  padding: 24px 0 72px;
}

.plan-grid,
.step-grid,
.benefit-stack {
  display: grid;
  gap: 16px;
}

.plan {
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-tag {
  margin: -4px 0 16px;
  color: var(--lime);
  font-weight: 800;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 12px;
}

.plan-price strong {
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.plan-price span {
  color: var(--muted);
  font-weight: 700;
}

.plan ul {
  margin: 0 0 16px;
  padding-left: 18px;
  flex: 1;
}

.plan-note {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.plan-featured {
  border: 2px solid var(--lime);
  background: linear-gradient(180deg, #1c2208 0%, #1a1a1a 42%);
}

.plan-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.step-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.step-grid li {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 4px solid var(--lime);
}

.step-grid span {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--lime);
}

.completa {
  padding: 72px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 255, 63, 0.12), transparent 32%),
    var(--bg-2);
}

.completa-grid {
  display: grid;
  gap: 32px;
}

.completa h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.domain {
  padding: 0 0 88px;
}

.domain-box {
  display: grid;
  gap: 20px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 28px;
  padding: 32px 24px;
}

.domain-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.site-footer {
  padding: 28px 0 112px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.footer-inner {
  display: grid;
  gap: 10px;
}

.footer-inner .brand span {
  font-weight: 800;
  color: var(--text);
}

.footer-inner a:hover {
  color: var(--lime);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-nav a:hover {
  color: var(--lime);
}

.copy {
  font-size: 0.85rem;
}

.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 50;
}

.page-404 {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 16px;
}

.page-404 h1 {
  font-size: clamp(3rem, 10vw, 6rem);
}

@media (max-width: 799px) {
  .hero {
    padding: 28px 0 24px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.85rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    margin: 20px 0 18px;
  }

  .hero-actions .btn,
  .domain-box .btn {
    width: 100%;
  }

  .hero-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .hero-card-price strong {
    font-size: clamp(2.4rem, 14vw, 3.4rem);
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .trust {
    padding: 40px 0;
  }

  .plans,
  .steps {
    padding: 16px 0 48px;
  }

  .completa {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 1.4rem;
  }

  .section-head h2,
  .completa h2,
  .domain-box h2,
  .intro h2 {
    font-size: clamp(1.6rem, 7.5vw, 2.3rem);
  }

  .plan-featured {
    padding-top: 48px;
  }

  .ticker-track {
    font-size: 0.72rem;
    gap: 24px;
  }

  .trust article,
  .plan,
  .step-grid li,
  .benefit-stack article {
    padding: 20px 18px;
  }

  .domain {
    padding: 0 0 72px;
  }

  .domain-box {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .site-footer {
    padding: 24px 0 calc(96px + env(safe-area-inset-bottom));
  }

  .wa-float {
    width: 54px;
    height: 54px;
  }
}

@media (min-width: 800px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 32px));
  }

  .site-header {
    padding: 14px 16px 0;
  }

  .header-inner {
    height: 60px;
    min-height: 60px;
    padding: 0 8px 0 16px;
    gap: 18px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav {
    display: flex;
  }

  .header-inner > .btn {
    display: inline-flex;
  }

  .nav-toggle,
  .menu-mobile {
    display: none !important;
  }

  .hero-grid,
  .completa-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .domain-box {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 36px 32px;
  }

  .hero {
    padding: 56px 0 48px;
  }
}

@media (min-width: 1024px) {
  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track,
  .btn,
  [data-reveal] {
    animation: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
