:root {
  color-scheme: dark;
  --bg: #050816;
  --bg-soft: #071123;
  --panel: rgba(16, 26, 48, 0.78);
  --panel-strong: rgba(19, 30, 54, 0.94);
  --line: rgba(155, 181, 255, 0.16);
  --line-strong: rgba(132, 92, 255, 0.52);
  --text: #f8fbff;
  --muted: #aeb9cc;
  --muted-2: #73839d;
  --blue: #3b82f6;
  --blue-2: #2563eb;
  --purple: #7c3aed;
  --purple-2: #6d28d9;
  --teal: #22dfcf;
  --green: #39e472;
  --orange: #ff7a1a;
  --red: #ff2c3b;
  --glow: rgba(124, 58, 237, 0.45);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --radius-lg: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(145deg, rgba(1, 7, 18, 0.98), rgba(3, 8, 23, 0.96) 44%, rgba(4, 13, 34, 0.98)),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(72, 169, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 71, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent 78%);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

svg {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2.2;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(54, 183, 255, 0.12), transparent 30%),
    linear-gradient(245deg, rgba(160, 53, 255, 0.18), transparent 36%),
    linear-gradient(180deg, transparent 45%, rgba(23, 202, 181, 0.06));
}

.brand-mark {
  width: 22px;
  height: 31px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px var(--glow));
}

.section-pad,
.checkout-shell,
.confirmation,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 14px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  line-height: 0.9;
  font-size: 1.38rem;
  white-space: nowrap;
}

.brand svg {
  color: var(--purple);
  fill: currentColor;
  filter: drop-shadow(0 0 16px rgba(130, 72, 255, 0.65));
}

.brand strong {
  display: block;
  color: var(--blue);
  font-weight: 800;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.9);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.soft-button,
.secure-pill,
.text-button,
.icon-button,
.outline-button,
.primary-button,
.copy-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 24, 45, 0.78);
  color: var(--text);
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.soft-button,
.secure-pill {
  min-height: 46px;
  padding: 0 18px;
  font-weight: 700;
}

.secure-pill {
  background:
    linear-gradient(135deg, rgba(33, 220, 194, 0.16), rgba(68, 118, 255, 0.12)),
    rgba(14, 24, 45, 0.88);
}

.secure-pill svg {
  color: var(--green);
}

.soft-button:hover,
.secure-pill:hover,
.text-button:hover,
.icon-button:hover,
.outline-button:hover,
.copy-button:hover,
.menu-button:hover {
  transform: translateY(-1px);
  border-color: rgba(67, 188, 255, 0.45);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  min-height: 0;
  padding-top: 46px;
  padding-bottom: 22px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(126, 158, 255, 0.22);
  border-radius: 999px;
  background: rgba(12, 22, 43, 0.7);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker svg {
  color: var(--blue);
}

.hero h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  background-clip: text;
}

.hero p {
  margin: 22px 0 0;
  color: rgba(238, 245, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-trust {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 15, 32, 0.76);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
}

.hero-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.operator-logo,
.operator-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  background: rgba(3, 7, 18, 0.42);
  font-weight: 950;
  letter-spacing: 0.2px;
}

.operator-word {
  line-height: 1;
}

.operator-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-trust-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius);
  background: rgba(3, 7, 18, 0.32);
}

.hero-trust-grid i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(38, 184, 255, 0.11);
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(52, 195, 255, 0.26);
}

.hero-trust-grid strong {
  display: block;
  font-weight: 950;
  line-height: 1.1;
}

.hero-trust-grid span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-cta > a {
  flex: 1 1 210px;
  min-height: 52px;
}

.hero-benefits article,
.trust-bar article {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-benefits i,
.trust-bar i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(38, 184, 255, 0.11);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(52, 195, 255, 0.34);
}

.hero-benefits span,
.trust-bar h3 {
  display: block;
  margin: 0;
  font-weight: 900;
}

.hero-benefits small,
.trust-bar p {
  display: block;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 450px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(137, 82, 255, 0.42);
  border-radius: 50%;
  transform: rotate(-13deg);
  box-shadow: 0 0 30px rgba(116, 67, 255, 0.32);
}

.orbit-one {
  width: 330px;
  height: 108px;
}

.orbit-two {
  width: 245px;
  height: 72px;
  border-color: rgba(38, 192, 255, 0.35);
}

.phone-mockup {
  position: relative;
  width: 260px;
  height: 390px;
  padding: 12px;
  border: 3px solid rgba(185, 166, 255, 0.66);
  border-radius: 34px;
  background: linear-gradient(145deg, #0b1222, #020612);
  box-shadow:
    0 0 32px rgba(127, 67, 255, 0.48),
    0 32px 90px rgba(0, 0, 0, 0.55);
  transform: rotate(7deg);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 90px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #020611;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
  background:
    linear-gradient(160deg, rgba(125, 49, 247, 0.24), transparent 50%),
    radial-gradient(circle at 50% 42%, rgba(97, 50, 255, 0.28), transparent 33%),
    #050b18;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 20px 22px 0;
  color: white;
  font-weight: 800;
  font-size: 0.84rem;
}

.phone-bolt {
  position: absolute;
  top: 112px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 2px solid rgba(174, 76, 255, 0.9);
  border-radius: 50%;
  color: var(--purple);
  transform: translateX(-50%);
  box-shadow: 0 0 42px rgba(128, 68, 255, 0.5);
}

.phone-bolt svg {
  width: 72px;
  height: 72px;
  fill: currentColor;
  filter: drop-shadow(0 0 18px rgba(81, 189, 255, 0.75));
}

.phone-summary {
  position: absolute;
  right: 18px;
  bottom: 28px;
  left: 18px;
  padding: 16px;
  border: 1px solid rgba(150, 176, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(9, 18, 36, 0.78);
}

.phone-summary small,
.phone-summary span {
  color: var(--muted);
}

.phone-summary strong {
  display: block;
  margin: 6px 0 10px;
  font-size: 1.35rem;
}

.operator-float {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  min-width: 82px;
  min-height: 62px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: white;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.operator-float.vivo {
  top: 102px;
  left: 36px;
  background: linear-gradient(135deg, #8128ff, #4c13aa);
}

.operator-float.claro {
  top: 116px;
  right: 24px;
  background: linear-gradient(135deg, #ff2937, #b2001b);
}

.operator-float.tim {
  left: 16px;
  bottom: 114px;
  background: linear-gradient(135deg, #0459c8, #062d6a);
}

.operator-float.oi {
  right: 52px;
  bottom: 130px;
  background: linear-gradient(135deg, #8ae43d, #37a216);
  font-size: 1.35rem;
}

.operator-float.nextel {
  right: 88px;
  bottom: 52px;
  background: linear-gradient(135deg, #ff9d18, #dc4d00);
}

.checkout-shell {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(22, 34, 62, 0.9), rgba(9, 17, 33, 0.88)),
    rgba(11, 20, 39, 0.9);
  box-shadow: var(--shadow);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 780px;
  margin: 0 auto 24px;
}

.step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
}

.step:not(:last-child)::after {
  position: absolute;
  top: 19px;
  left: calc(50% + 25px);
  width: calc(100% - 50px);
  height: 2px;
  content: "";
  background: rgba(142, 158, 202, 0.32);
}

.step span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(190, 202, 244, 0.32);
  border-radius: 50%;
  background: rgba(10, 18, 35, 0.9);
  color: white;
  font-weight: 900;
}

.step strong {
  font-weight: 700;
  font-size: 0.87rem;
}

.step.is-active span,
.step.is-done span {
  border-color: transparent;
  background: linear-gradient(135deg, var(--purple), var(--blue-2));
  box-shadow: 0 0 26px rgba(138, 76, 255, 0.38);
}

.step.is-active,
.step.is-done {
  color: white;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 920px;
  margin-inline: auto;
}

.panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(29, 42, 73, 0.64), rgba(11, 20, 38, 0.9)),
    rgba(12, 22, 42, 0.86);
}

.panel.is-entering {
  animation: panelIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.panel h2,
.panel h3 {
  margin: 0;
  letter-spacing: 0;
}

.panel h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
}

.panel h2 svg {
  color: var(--teal);
}

.panel h3 {
  margin-top: 24px;
  font-size: 1.08rem;
}

.panel p {
  margin: 8px 0 18px;
  color: var(--muted);
}

.continue-button {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
  min-height: 52px;
}

.continue-gold {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 202, 40, 0.72);
  background: linear-gradient(135deg, #f59e0b, #fbbf24 48%, #f59e0b);
  color: #101018;
  font-weight: 950;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 14px 30px rgba(245, 158, 11, 0.28), 0 0 26px rgba(251, 191, 36, 0.32);
}

.continue-gold::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: translateX(-120%);
  animation: shimmerMove 2.8s ease-in-out infinite;
}

.continue-gold svg {
  color: currentColor;
}

.regenerate-button {
  width: 100%;
  margin-top: 12px;
  min-height: 52px;
}

.continue-button.is-attention {
  animation: softPulse 1.2s ease-in-out 2;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.field-label,
.field-group label,
.pix-code-area label,
.custom-amount span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.input-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 16px;
  border: 1px solid rgba(156, 177, 221, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 14, 28, 0.62);
}

.input-shell:focus-within,
.field-group input:focus,
.field-group select:focus,
.custom-amount input:focus,
textarea:focus {
  border-color: rgba(145, 76, 255, 0.86);
  box-shadow: 0 0 0 4px rgba(128, 67, 255, 0.13);
  outline: none;
}

.input-shell svg {
  color: var(--muted);
}

.input-shell input,
.field-group input,
.field-group select,
.custom-amount input,
textarea {
  width: 100%;
  border: 1px solid rgba(156, 177, 221, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 14, 28, 0.64);
  color: var(--text);
}

.input-shell input {
  min-width: 0;
  height: 58px;
  border: 0;
  background: transparent;
  font-size: 1.06rem;
}

.input-shell input:focus {
  outline: none;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.operator-card,
.amount-button {
  min-height: 72px;
  border: 1px solid rgba(156, 177, 221, 0.18);
  border-radius: var(--radius);
  background: rgba(9, 17, 32, 0.72);
  cursor: pointer;
}

.operator-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-weight: 950;
}

.operator-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  line-height: 1;
}

.operator-label {
  font-size: 0.85rem;
  color: rgba(238, 245, 255, 0.8);
  font-weight: 800;
}

.operator-card .operator-dot {
  width: 10px;
  height: 10px;
}

.operator-card.is-selected,
.amount-button.is-selected,
.payment-option.is-selected {
  border-color: rgba(178, 84, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(128, 42, 255, 0.42), rgba(47, 111, 255, 0.22)),
    rgba(13, 21, 41, 0.92);
  box-shadow: 0 0 24px rgba(143, 65, 255, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.operator-card:hover,
.amount-button:hover,
.payment-option:hover {
  border-color: rgba(72, 191, 255, 0.46);
}

.vivo {
  color: #a642ff;
}

.claro {
  color: #ff3040;
}

.tim {
  color: #2788ff;
}

.oi {
  color: #73ed4b;
}

.nextel {
  color: #ff8618;
}

.algar {
  color: #2c99dc;
}

.sercomtel {
  color: white;
  font-style: italic;
}

.notice-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(151, 74, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(105, 35, 208, 0.26), rgba(36, 92, 180, 0.13));
  color: rgba(245, 240, 255, 0.9);
}

.notice-line svg {
  color: var(--purple);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.amount-button {
  font-weight: 800;
  font-size: 1.02rem;
}

.fast-recharge {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(156, 177, 221, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(4, 10, 21, 0.58);
}

.fast-recharge-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.fast-recharge-head h3 {
  margin: 0;
}

.fast-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
}

.fast-limit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(34, 228, 127, 0.18);
  border-radius: 999px;
  background: rgba(20, 86, 62, 0.12);
  color: rgba(235, 255, 246, 0.92);
  font-weight: 800;
}

.fast-limit svg {
  color: #74ffb2;
}

.fast-recharge-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.amount-button,
.continue-button,
.copy-button,
.payment-option,
.operator-card {
  font-weight: 900;
}

.amount-button {
  letter-spacing: 0.01em;
}

.amount-button::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  pointer-events: none;
}

.amount-button[data-bonus="1"]::after {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 44%);
}

.amount-button.most-requested {
  position: relative;
  border-color: rgba(34, 223, 207, 0.38);
  background:
    linear-gradient(135deg, rgba(34, 223, 207, 0.18), rgba(124, 58, 237, 0.22)),
    rgba(9, 15, 32, 0.76);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 28px rgba(34, 223, 207, 0.16);
  animation: softGlow 4.2s ease-in-out infinite;
}

.amount-button .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(34, 223, 207, 0.16);
  border: 1px solid rgba(34, 223, 207, 0.34);
  color: #bafff6;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.custom-amount {
  display: block;
  margin-top: 14px;
}

.custom-amount input {
  min-height: 58px;
  padding: 0 16px;
}

.summary-box {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(156, 177, 221, 0.12);
  border-radius: var(--radius);
  background: rgba(4, 10, 21, 0.58);
}

.summary-box div,
.receipt div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.summary-box div + div,
.receipt div + div {
  border-top: 1px solid rgba(150, 169, 210, 0.12);
}

.summary-box span,
.receipt span {
  color: var(--muted);
}

.summary-box strong,
.receipt strong {
  text-align: right;
}

.summary-total strong {
  color: #c258ff;
  font-size: 1.35rem;
}

.payment-panel {
  grid-column: 1 / -1;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.text-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 12px;
  color: #d8e6ff;
}

.text-button svg {
  color: var(--teal);
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.payment-option {
  justify-content: flex-start;
  min-height: 82px;
  padding: 16px 18px;
  text-align: left;
}

.payment-option svg {
  width: 30px;
  height: 30px;
  color: var(--teal);
}

.payment-option small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.payment-content {
  margin-top: 18px;
}

.pix-payment {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.pix-meta {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid rgba(156, 177, 221, 0.12);
  border-radius: var(--radius);
  background: rgba(4, 10, 21, 0.58);
}

.pix-meta-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.pix-meta-heading h3 {
  margin: 0;
  font-size: 1.02rem;
}

.pix-meta-heading span {
  color: var(--muted);
  font-size: 0.86rem;
}

.pix-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.pix-meta-row {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(150, 169, 210, 0.12);
  border-radius: var(--radius);
  background: rgba(3, 7, 18, 0.38);
}

.pix-meta-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.pix-meta-row strong {
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.pix-meta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pix-meta-actions .soft-button {
  flex: 1 1 190px;
  min-height: 48px;
}

.qr-area,
.pix-code-area,
.expire-box {
  border-radius: var(--radius);
}

.qr-area span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.qr-canvas {
  display: grid;
  place-items: center;
  width: 228px;
  height: 228px;
  padding: 10px;
  border-radius: var(--radius);
  background: white;
  color: #020713;
  font-size: 0.86rem;
  text-align: center;
}

.qr-canvas canvas,
.qr-canvas img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  image-rendering: pixelated;
}

.pix-code-area textarea {
  min-height: 126px;
  resize: vertical;
  padding: 14px;
  line-height: 1.45;
  color: #dbe8ff;
}

.pix-code-area textarea.is-reloading,
.qr-canvas.is-reloading {
  animation: pixReload 550ms ease;
}

.pix-code-area textarea.is-reloading {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 0 22px rgba(34, 223, 207, 0.12);
}

.copy-button {
  margin-top: 10px;
  min-height: 50px;
  padding: 0 18px;
  background: linear-gradient(135deg, rgba(125, 47, 236, 0.82), rgba(67, 34, 148, 0.88));
  font-weight: 800;
}

.copy-button.is-copied {
  border-color: rgba(34, 223, 207, 0.44);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 24px rgba(34, 223, 207, 0.24);
  animation: copyPulse 700ms ease;
}

.expire-box {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border: 1px solid rgba(34, 228, 127, 0.18);
  background: rgba(20, 86, 62, 0.18);
  color: #74ffb2;
}

.expire-box.is-expired {
  border-color: rgba(255, 122, 26, 0.38);
  background: rgba(120, 40, 12, 0.18);
  color: #ffd7b0;
}

.card-payment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card-payment .field-row {
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr 1.1fr;
}

.field-group input,
.field-group select {
  min-height: 48px;
  padding: 0 13px;
}

.primary-button {
  min-height: 56px;
  width: 100%;
  margin-top: 18px;
  border-color: transparent;
  background: linear-gradient(135deg, var(--purple-2), var(--purple), var(--blue-2));
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(113, 44, 225, 0.28);
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  filter: grayscale(0.3);
  transform: none;
}

.outline-button {
  min-height: 56px;
  padding: 0 18px;
  background: rgba(8, 15, 30, 0.54);
  font-weight: 800;
}

.secure-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.confirmation {
  margin-top: 28px;
  padding: 34px 20px;
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  border: 3px solid rgba(183, 76, 255, 0.92);
  border-radius: 50%;
  color: #c365ff;
  box-shadow: 0 0 48px rgba(153, 70, 255, 0.42);
}

.success-mark svg {
  width: 58px;
  height: 58px;
}

.confirmation h2 {
  max-width: 520px;
  margin: 0 auto;
  font-size: 2.1rem;
  line-height: 1.12;
}

.confirmation h2 span {
  color: var(--green);
}

.confirmation > p {
  max-width: 520px;
  margin: 14px auto 22px;
  color: var(--muted);
}

.receipt {
  max-width: 520px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(13, 23, 43, 0.86);
  text-align: left;
}

.confirmation-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 22px auto 0;
}

.confirmation-actions .primary-button {
  margin-top: 0;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.85rem;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.how-it-works {
  padding-top: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.steps-grid article {
  position: relative;
  min-height: 172px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 28, 51, 0.78);
  text-align: center;
}

.steps-grid span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-weight: 900;
}

.steps-grid svg {
  width: 42px;
  height: 42px;
  margin-top: 22px;
  color: var(--teal);
}

.steps-grid h3 {
  margin: 16px 0 8px;
  font-size: 1rem;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.operators {
  padding-top: 34px;
}

.operator-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.operator-strip > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 27, 49, 0.82);
  font-size: 1.2rem;
  font-weight: 950;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
  padding-top: 0;
}

.trust-bar article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 27, 49, 0.82);
}

.app-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 170px minmax(260px, 0.8fr);
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding: 30px 34px;
  border: 1px solid rgba(61, 180, 255, 0.42);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(122, 34, 215, 0.62), rgba(18, 98, 202, 0.8)),
    rgba(14, 24, 45, 0.9);
}

.app-banner h2 {
  margin: 0 0 16px;
  font-size: 1.45rem;
}

.app-banner ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.app-banner li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-banner li svg {
  color: var(--teal);
}

.app-phone {
  display: grid;
  place-items: center;
  width: 120px;
  height: 160px;
  margin: auto;
  border: 2px solid rgba(178, 122, 255, 0.8);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(109, 40, 217, 0.32), rgba(2, 8, 20, 0.95));
  color: var(--purple);
  transform: rotate(-8deg);
  box-shadow: 0 0 28px rgba(130, 70, 255, 0.35);
}

.app-phone svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
}

.app-downloads {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 16px;
  align-items: center;
}

.small-qr {
  grid-row: span 2;
  width: 120px;
  height: 120px;
  padding: 8px;
}

.app-downloads a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: #05070d;
  font-size: 0.82rem;
}

.app-downloads a strong {
  display: block;
  font-size: 1rem;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 30px 0 46px;
  color: var(--muted);
  text-align: center;
}

.site-footer strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.site-footer svg {
  color: white;
}

.mobile-tabs {
  display: none;
}

.mobile-tabs a:last-child {
  opacity: 0.92;
}

.mobile-quick-nav {
  display: none;
}

.mobile-quick-link i {
  display: inline-grid;
}

.pix-config {
  width: min(680px, calc(100% - 28px));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(22, 34, 62, 0.98), rgba(8, 16, 31, 0.98));
  color: var(--text);
  box-shadow: var(--shadow);
}

.pix-config::backdrop {
  background: rgba(0, 4, 14, 0.72);
  backdrop-filter: blur(6px);
}

.pix-config form {
  margin: 0;
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.dialog-header h2 {
  margin: 0;
}

.dialog-header p {
  margin: 6px 0 0;
  color: var(--muted);
}

.icon-button {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.dialog-actions .primary-button {
  width: auto;
  min-width: 160px;
  margin-top: 0;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 340px;
  padding: 14px 16px;
  border: 1px solid rgba(91, 221, 169, 0.36);
  border-radius: var(--radius);
  background: rgba(10, 24, 23, 0.96);
  color: #d9fff1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .site-header.nav-open {
    grid-template-columns: auto auto;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 17, 32, 0.96);
  }

  .site-header.nav-open .header-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fast-recharge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: 3.05rem;
  }

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

  .payment-panel {
    grid-column: auto;
  }

  .trust-bar,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operator-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .app-banner {
    grid-template-columns: 1fr;
  }

  .app-phone {
    display: none;
  }

  .mobile-quick-nav {
    position: fixed;
    right: 14px;
    bottom: 78px;
    left: 14px;
    z-index: 55;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(8, 15, 29, 0.94);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
  }

  .mobile-quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 14px;
    color: var(--text);
    font-weight: 900;
  }

  .mobile-quick-left,
  .mobile-quick-right {
    padding: 0 10px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
  }

  .mobile-quick-center {
    min-width: 128px;
    padding: 0 14px;
    color: #111018;
    background: linear-gradient(135deg, #f59e0b, #fbbf24 52%, #f59e0b);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 24px rgba(251, 191, 36, 0.28);
  }

  .mobile-tabs {
    bottom: 142px;
  }



  .app-downloads {
    max-width: 430px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 82px;
  }

  .section-pad,
  .checkout-shell,
  .confirmation,
  .site-footer,
  .site-header {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding-top: 16px;
  }

  .brand {
    font-size: 1.28rem;
  }

  .hero {
    padding-top: 22px;
    min-height: auto;
  }

  .kicker {
    display: none;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
  }

  .hero-benefits article {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 9px;
  }

  .hero-benefits span {
    font-size: 0.82rem;
  }

  .hero-benefits small {
    font-size: 0.74rem;
  }

  .hero-benefits i {
    width: 48px;
    height: 48px;
  }

  .hero-art {
    min-height: 310px;
    order: -1;
    transform: scale(0.82);
    transform-origin: center;
    margin-bottom: -44px;
  }

  .checkout-shell {
    padding: 14px;
    border-radius: 14px;
  }

  .stepper {
    gap: 0;
  }

  .step strong {
    display: none;
  }

  .step:not(:last-child)::after {
    left: calc(50% + 20px);
    width: calc(100% - 40px);
  }

  .panel {
    padding: 18px;
    border-radius: 12px;
  }

  .operator-grid,
  .amount-grid {
    gap: 10px;
  }

  .operator-card {
    min-height: 78px;
    font-size: 1rem;
  }

  .amount-button {
    min-height: 68px;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .fast-recharge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-heading,
  .payment-options,
  .pix-payment,
  .pix-meta-grid,
  .card-payment,
  .field-row,
  .card-payment .field-row,
  .confirmation-actions {
    grid-template-columns: 1fr;
  }

  .panel-heading {
    display: grid;
  }

  .qr-canvas {
    width: 100%;
    max-width: 258px;
    height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
  }

  .qr-area {
    text-align: center;
  }

  .hero-cta > a {
    flex: 1 1 100%;
  }


  .confirmation h2 {
    font-size: 1.9rem;
  }

  .how-it-works {
    padding-top: 36px;
  }

  .steps-grid,
  .trust-bar,
  .operator-strip,
  .app-banner ul {
    grid-template-columns: 1fr;
  }

  .app-banner {
    padding: 24px 20px;
  }

  .app-downloads {
    grid-template-columns: 110px 1fr;
  }

  .small-qr {
    width: 110px;
    height: 110px;
  }

  .mobile-tabs {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8, 15, 29, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
  }

  .mobile-tabs a {
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 0.72rem;
  }

  .mobile-tabs a.is-active {
    background: rgba(120, 44, 217, 0.36);
    color: white;
  }

  .mobile-quick-nav {
    bottom: 88px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.28rem;
  }

  .hero-art {
    transform: scale(0.72);
    margin-bottom: -76px;
  }

  .hero-benefits {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .operator-grid,
  .amount-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .operator-card,
  .amount-button {
    padding-inline: 6px;
  }

  .operator-card {
    font-size: 0.98rem;
  }

  .summary-box div,
  .receipt div {
    display: grid;
    gap: 4px;
  }

  .summary-box strong,
  .receipt strong {
    text-align: left;
  }

  .app-downloads {
    grid-template-columns: 1fr;
  }

  .small-qr {
    grid-row: auto;
  }

  .dialog-actions {
    display: grid;
  }

  .dialog-actions .primary-button {
    width: 100%;
  }

  .mobile-quick-nav {
    bottom: 82px;
  }

  .mobile-tabs {
    bottom: 148px;
  }
}

/* Premium visual layer */
body {
  background:
    radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.16), transparent 34%),
    radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.24), transparent 36%),
    linear-gradient(180deg, #050816 0%, #030713 50%, #050816 100%);
  overflow-x: clip;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.84), transparent 86%);
}

.site-header {
  padding-inline: 8px;
}

.site-header::before {
  position: absolute;
  inset: 10px -16px 0;
  z-index: -1;
  content: "";
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 12, 28, 0.72), rgba(7, 12, 28, 0.42));
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.24);
  opacity: 0.75;
}

.brand {
  transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover {
  transform: translateY(-1px) scale(1.015);
  filter: drop-shadow(0 0 18px rgba(59, 130, 246, 0.25));
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.soft-button,
.secure-pill,
.text-button,
.icon-button,
.outline-button,
.primary-button,
.copy-button,
.menu-button,
.operator-card,
.amount-button,
.payment-option,
.app-downloads a,
.mobile-tabs a {
  will-change: transform;
}

.soft-button,
.secure-pill,
.text-button,
.icon-button,
.outline-button,
.copy-button,
.menu-button {
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.primary-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 48%, #3b82f6 100%);
  box-shadow:
    0 18px 44px rgba(124, 58, 237, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.primary-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}

.primary-button:hover:not(:disabled)::before {
  transform: translateX(120%);
}

.primary-button:hover:not(:disabled),
.copy-button:hover,
.outline-button:hover,
.amount-button:hover,
.operator-card:hover,
.payment-option:hover {
  transform: translateY(-2px) scale(1.012);
}

.primary-button.is-loading {
  color: transparent;
  pointer-events: none;
}

.primary-button.is-loading::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  content: "";
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-top-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 760ms linear infinite;
}

.hero {
  position: relative;
  min-height: 430px;
  padding-top: 36px;
  padding-bottom: 18px;
}

.hero-art {
  min-height: 405px;
}

.hero::before {
  position: absolute;
  top: 12%;
  right: 36%;
  width: 240px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.55), transparent);
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.45);
}

.hero h1 {
  font-weight: 950;
  text-wrap: balance;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.34));
}

.hero h1 span,
.section-heading h2 span {
  background: linear-gradient(90deg, #38bdf8 0%, #3b82f6 35%, #7c3aed 75%, #c084fc 100%);
  background-clip: text;
}

.kicker {
  border-color: rgba(124, 58, 237, 0.34);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(124, 58, 237, 0.16)),
    rgba(7, 13, 30, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 40px rgba(124, 58, 237, 0.12);
}

.hero-benefits article {
  padding: 12px 10px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0));
}

.neon-particles {
  position: absolute;
  inset: 24px;
  pointer-events: none;
}

.neon-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: #38bdf8;
  box-shadow: 0 0 18px currentColor;
  animation: floatParticle 5.8s ease-in-out infinite;
}

.neon-particles span:nth-child(1) {
  top: 28%;
  left: 17%;
  color: #38bdf8;
}

.neon-particles span:nth-child(2) {
  top: 18%;
  right: 14%;
  color: #a855f7;
  animation-delay: 900ms;
}

.neon-particles span:nth-child(3) {
  right: 8%;
  bottom: 24%;
  color: #22dfcf;
  animation-delay: 1.4s;
}

.neon-particles span:nth-child(4) {
  bottom: 17%;
  left: 10%;
  color: #7c3aed;
  animation-delay: 2s;
}

.neon-particles span:nth-child(5) {
  top: 50%;
  right: 35%;
  color: #3b82f6;
  animation-delay: 2.6s;
}

.orbit {
  animation: orbitGlow 7s ease-in-out infinite;
}

.orbit-two {
  animation-delay: 1.2s;
}

.phone-mockup {
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup::before {
  position: absolute;
  inset: -7px;
  z-index: -1;
  content: "";
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.42), rgba(124, 58, 237, 0.62), transparent 70%);
  filter: blur(18px);
}

.phone-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px);
  pointer-events: none;
}

.phone-action {
  position: absolute;
  right: 18px;
  bottom: 122px;
  left: 18px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius);
  background: rgba(23, 35, 66, 0.72);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 800;
}

.dashboard-chip {
  position: absolute;
  right: 8px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(34, 223, 207, 0.22);
  border-radius: var(--radius);
  background: rgba(6, 18, 35, 0.76);
  color: #c7f9ff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), 0 0 30px rgba(34, 223, 207, 0.12);
  backdrop-filter: blur(16px);
}

.dashboard-chip svg {
  color: #22dfcf;
}

.checkout-shell,
.panel,
.steps-grid article,
.operator-strip > span,
.trust-bar article,
.app-banner,
.pix-meta,
.receipt,
.faq details,
.pix-config {
  border-color: rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 15, 32, 0.76);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
}

.checkout-shell {
  position: relative;
  overflow: hidden;
}

.checkout-shell::before,
.app-banner::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), transparent 24%, transparent 72%, rgba(124, 58, 237, 0.2));
  opacity: 0.72;
}

.checkout-shell > *,
.app-banner > * {
  position: relative;
  z-index: 1;
}

.step:not(:last-child)::after {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.75), rgba(59, 130, 246, 0.32), rgba(148, 163, 184, 0.22));
}

.step span {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step.is-active span {
  transform: scale(1.08);
}

.operator-card,
.amount-button,
.payment-option,
.input-shell,
.field-group input,
.field-group select,
.custom-amount input,
textarea {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(4, 10, 25, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.operator-card.is-selected,
.amount-button.is-selected,
.payment-option.is-selected {
  border-color: rgba(168, 85, 247, 0.96);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.58), rgba(59, 130, 246, 0.28)),
    rgba(13, 21, 41, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 32px rgba(124, 58, 237, 0.42);
}

.summary-box {
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.78), rgba(8, 13, 30, 0.72)),
    rgba(3, 7, 18, 0.88);
}

.summary-total strong {
  text-shadow: 0 0 20px rgba(192, 132, 252, 0.55);
}

.qr-canvas {
  border: 8px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26), 0 0 24px rgba(59, 130, 246, 0.14);
}

.pix-code-area textarea {
  min-height: 140px;
}

.expire-box {
  border-color: rgba(34, 228, 127, 0.24);
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.13), rgba(34, 197, 94, 0.1)),
    rgba(3, 7, 18, 0.42);
}

.success-mark {
  animation: pulseSuccess 2.8s ease-in-out infinite;
}

.section-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #93c5fd;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.faq {
  padding-top: 36px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.faq details {
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary svg {
  flex: 0 0 auto;
  color: #93c5fd;
  transition: transform 180ms ease;
}

.faq details[open] summary svg {
  transform: rotate(180deg);
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  margin-top: 34px;
  padding: 34px 0 46px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) 0.7fr 0.7fr minmax(220px, 0.9fr);
  gap: 22px;
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(124, 58, 237, 0.1)),
    rgba(9, 15, 32, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 0.95rem;
}

.footer-grid p,
.footer-grid span {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-grid a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: var(--muted);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-grid a:not(.brand):hover {
  color: #93c5fd;
  transform: translateX(2px);
}

.footer-badge {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: var(--radius);
  background: rgba(4, 10, 25, 0.48);
}

.footer-badge svg {
  color: #22dfcf;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: rotate(7deg) translateY(0);
  }

  50% {
    transform: rotate(7deg) translateY(-10px);
  }
}

@keyframes orbitGlow {
  0%,
  100% {
    opacity: 0.66;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
  }
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.42;
  }

  50% {
    transform: translateY(-12px);
    opacity: 1;
  }
}

@keyframes pulseSuccess {
  0%,
  100% {
    box-shadow: 0 0 38px rgba(124, 58, 237, 0.38);
  }

  50% {
    box-shadow: 0 0 64px rgba(124, 58, 237, 0.58), 0 0 26px rgba(59, 130, 246, 0.3);
  }
}

@keyframes softGlow {
  0%,
  100% {
    filter: saturate(1) brightness(1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 22px rgba(34, 223, 207, 0.12);
  }

  50% {
    filter: saturate(1.06) brightness(1.04);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 34px rgba(34, 223, 207, 0.18);
  }
}

@keyframes copyPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pixReload {
  0% {
    opacity: 0.55;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.01);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmerMove {
  0% {
    transform: translateX(-120%);
  }

  45% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 980px) {
  .dashboard-chip {
    right: 44px;
    bottom: 0;
  }

  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header::before {
    inset: 8px -8px 0;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 10px;
    overflow: hidden;
  }

  .hero::before,
  .dashboard-chip,
  .neon-particles {
    display: none;
  }

  .hero h1 {
    line-height: 1.08;
  }

  .checkout-shell {
    margin-top: 18px;
  }

  .operator-card,
  .amount-button {
    border-radius: 8px;
  }

  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq summary {
    min-height: 62px;
    padding: 16px;
  }

  .faq details p {
    padding-inline: 16px;
  }

  .footer-grid {
    padding: 20px;
  }

  .hero-benefits,
  .hero-benefits article,
  .mobile-tabs,
  .mobile-tabs a {
    min-width: 0;
  }

  .hero-benefits span,
  .hero-benefits small,
  .mobile-tabs span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-art {
    width: 100%;
    overflow: hidden;
    min-height: 360px !important;
    margin-bottom: 0 !important;
    transform: none !important;
  }

  .phone-mockup {
    width: 218px !important;
    height: 328px !important;
    transform: rotate(6deg) !important;
    animation: none !important;
  }

  .operator-float {
    min-width: 68px;
    min-height: 52px;
  }

  .operator-float.vivo {
    left: 38px !important;
  }

  .operator-float.claro {
    right: 28px !important;
  }

  .operator-float.tim {
    left: 28px !important;
  }

  .operator-float.oi {
    right: 42px !important;
  }

  .operator-float.nextel {
    right: 82px !important;
  }

  .hero-benefits {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .mobile-tabs {
    right: auto !important;
    left: 10px !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 430px) {
  .section-pad,
  .checkout-shell,
  .confirmation,
  .site-footer,
  .site-header {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-art {
    min-height: 342px !important;
    margin-bottom: 0 !important;
    transform: none !important;
  }

  .phone-mockup {
    width: 198px !important;
    height: 300px !important;
    transform: rotate(6deg) !important;
    animation: none !important;
  }

  .operator-float {
    min-width: 66px;
    min-height: 50px;
    font-size: 0.92rem;
  }

  .operator-float.vivo {
    left: 38px !important;
  }

  .operator-float.claro {
    right: 38px !important;
  }

  .operator-float.tim {
    left: 24px !important;
  }

  .operator-float.oi {
    right: 46px !important;
    font-size: 1.08rem;
  }

  .operator-float.nextel {
    right: 88px !important;
  }

  .hero-benefits {
    gap: 6px;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-benefits article {
    padding-inline: 4px;
  }

  .hero-benefits span {
    font-size: 0.78rem;
  }

  .hero-benefits small {
    font-size: 0.68rem;
  }

  .mobile-tabs a {
    font-size: 0.68rem;
  }

  .mobile-tabs {
    right: auto !important;
    left: 10px !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  body {
    background: white;
    color: black;
  }

  .site-header,
  .hero,
  .checkout-shell,
  .how-it-works,
  .operators,
  .trust-bar,
  .app-banner,
  .site-footer,
  .mobile-tabs,
  .confirmation-actions,
  .toast {
    display: none !important;
  }

  .confirmation {
    display: block !important;
    color: black;
  }

  .receipt {
    border-color: #222;
    background: white;
    color: black;
  }
}
