:root {
  --bg: #020403;
  --panel: #050907;
  --panel-soft: #08100c;
  --text: #f7f7f4;
  --muted: #b9beb9;
  --dim: #7c857e;
  --green: #9cff00;
  --green-2: #78f000;
  --green-dark: #345300;
  --line: rgba(178, 255, 102, 0.22);
  --line-soft: rgba(178, 255, 102, 0.1);
  --line-faint: rgba(255, 255, 255, 0.08);
  --surface: rgba(7, 13, 10, 0.76);
  --surface-strong: rgba(9, 18, 13, 0.9);
  --shadow: 0 0 34px rgba(117, 255, 0, 0.1);
  --glass-border: linear-gradient(135deg, rgba(214, 255, 153, 0.24), rgba(156, 255, 0, 0.06) 42%, rgba(255, 255, 255, 0.08));
  --page-padding: clamp(38px, 8.4vw, 154px);
  --flow-max: 1180px;
  --font-title: "Space Grotesk", "Geist", system-ui, sans-serif;
  --font-body: "Geist", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 5%, rgba(74, 255, 0, 0.055), transparent 34rem),
    radial-gradient(circle at 18% 58%, rgba(98, 255, 106, 0.035), transparent 28rem),
    linear-gradient(180deg, #020403 0%, #000 100%);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: saturate(0.95);
  }
  50% {
    transform: translate3d(0, -8px, 0) scale(1.012);
    filter: saturate(1.06);
  }
}

@keyframes illustrationFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes borderSweep {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

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

@keyframes connectorLight {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  18%,
  64% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes mobileScrollFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

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

.section-shell {
  width: 100%;
  margin: 0;
  padding-inline: var(--page-padding);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding-inline: var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  width: 230px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.92;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, filter 220ms ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #b7ff1f 0%, #7df100 100%);
  color: #071000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 10px 34px rgba(113, 255, 0, 0.18);
}

.btn-primary:hover {
  filter: saturate(1.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 16px 44px rgba(113, 255, 0, 0.28);
}

.btn-outline {
  border: 1px solid rgba(214, 255, 166, 0.22);
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: rgba(186, 255, 95, 0.46);
  box-shadow: 0 12px 34px rgba(113, 255, 0, 0.13);
}

.header-cta {
  min-height: 54px;
  padding: 0 25px;
  border-radius: 8px;
  font-size: 14px;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 150px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: var(--page-padding);
  right: var(--page-padding);
  bottom: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0.8;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  background-image:
    linear-gradient(90deg, rgba(2, 4, 3, 0.96) 0%, rgba(2, 4, 3, 0.72) 34%, rgba(2, 4, 3, 0.08) 58%, rgba(2, 4, 3, 0) 100%),
    url("./assets/hero/fundo-hero-section-desktop.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
  pointer-events: none;
  animation: ambientFloat 9s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 515px;
  margin-left: clamp(0px, 1.6vw, 28px);
  animation: fadeUp 700ms ease both;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(183, 255, 94, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(11, 20, 12, 0.54);
  box-shadow: inset 0 0 14px rgba(156, 255, 0, 0.055);
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-body);
}

.meta-pill {
  gap: 10px;
  margin-bottom: 26px;
}

.meta-pill svg {
  width: 22px;
  fill: #00b6ff;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 510px;
  margin-bottom: 25px;
  font-size: clamp(48px, 4.45vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span,
.center-heading h2 span,
.recurring-banner h3,
.payments strong {
  color: var(--green);
}

.hero h1 span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: transparent;
  background:
    linear-gradient(90deg, var(--green) 0%, #ccff77 46%, #ffffff 50%, #ccff77 54%, var(--green) 100%),
    linear-gradient(90deg, var(--green), var(--green));
  background-size: 260% 100%, 100% 100%;
  background-position: 120% 0, 0 0;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 16px rgba(156, 255, 0, 0.14);
  animation: softTextShimmer 4.6s ease-in-out infinite;
}

.hero h1 .hero-title-white {
  color: var(--text);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow: none;
  animation: none;
}

@keyframes softTextShimmer {
  0%,
  100% {
    background-position: 120% 0, 0 0;
  }
  48%,
  62% {
    background-position: -120% 0, 0 0;
  }
}

.hero-text {
  max-width: 445px;
  margin-bottom: 32px;
  color: #e3e6df;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 515px;
  margin-bottom: 34px;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.hero-features img {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.mobile-scroll-indicator {
  display: none;
}

.btn-whatsapp-icon {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.btn-primary .btn-whatsapp-icon {
  filter: brightness(0) saturate(100%);
}

.section-divider {
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.17), transparent);
}

.products {
  position: relative;
  margin-top: 54px;
  padding-bottom: 104px;
}

.products::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(120, 240, 0, 0.055), transparent 32rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 72%);
  opacity: 0.9;
}

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

.center-heading .pill {
  margin-bottom: 16px;
}

.center-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 3.4vw, 43px);
  line-height: 1.08;
  font-weight: 850;
}

.center-heading p {
  margin-bottom: 38px;
  color: #e6e8e3;
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  position: relative;
  min-height: 405px;
  padding: 34px 30px 32px;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(8, 14, 11, 0.92), rgba(2, 5, 4, 0.96)) padding-box,
    var(--glass-border) border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 20px 70px rgba(0, 0, 0, 0.22);
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  filter: saturate(1.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 26px 76px rgba(0, 0, 0, 0.32), 0 0 28px rgba(156, 255, 0, 0.08);
}

.product-card.featured {
  background:
    radial-gradient(circle at 50% 18%, rgba(156, 255, 0, 0.105), transparent 16rem) padding-box,
    linear-gradient(145deg, rgba(224, 255, 172, 0.52), rgba(156, 255, 0, 0.16) 45%, rgba(255, 255, 255, 0.12)) border-box,
    linear-gradient(180deg, rgba(10, 20, 13, 0.96), rgba(2, 5, 4, 0.98)) padding-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 26px 86px rgba(0, 0, 0, 0.35), 0 0 34px rgba(156, 255, 0, 0.12);
}

.consult-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 138px;
  height: 31px;
  padding: 8px 16px 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #c6ff3e, #8ff600);
  color: #061000;
  font-size: 12px;
  font-weight: 950;
}

.product-card h3 {
  margin-bottom: 4px;
  font-size: 35px;
  line-height: 1;
  font-weight: 600;
}

.product-card h3 span {
  color: var(--green);
}

.limit {
  margin-bottom: 4px;
  color: #f0f1ed;
  font-size: 16px;
}

.product-card img {
  width: min(285px, 92%);
  height: 180px;
  object-fit: contain;
  margin: 18px auto 30px;
  animation: illustrationFloat 5.6s ease-in-out infinite;
}

.product-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: #fff;
  list-style: none;
  text-align: left;
  font-size: 16px;
  font-weight: 550;
}

.product-card li {
  position: relative;
  padding-left: 34px;
}

.product-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(156, 255, 0, 0.68);
  border-radius: 50%;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.recurring-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 128px;
  margin-top: 34px;
  padding: 28px 42px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(5, 10, 7, 0.98), rgba(6, 14, 10, 0.88)) padding-box,
    linear-gradient(120deg, rgba(214, 255, 153, 0.25), rgba(156, 255, 0, 0.08), rgba(255, 255, 255, 0.08)) border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 72px rgba(0, 0, 0, 0.26);
}

.recurring-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.055) 48%, transparent 64%);
  transform: translateX(-100%);
  animation: sheenSweep 9s ease-in-out infinite;
}

.recurring-banner > img:not(.discount-tag) {
  position: absolute;
  top: 50%;
  right: 36px;
  width: min(44%, 560px);
  height: calc(100% - 28px);
  object-fit: contain;
  object-position: right center;
  opacity: 0.78;
  transform: translateY(-50%);
}

.recurring-banner > *:not(img) {
  position: relative;
  z-index: 1;
}

.discount-tag {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  object-fit: contain;
  order: -1;
  filter: drop-shadow(0 0 14px rgba(156, 255, 0, 0.16));
}

.recurring-banner h3 {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 850;
}

.recurring-banner p {
  margin-bottom: 0;
  color: #e8ebe4;
  font-size: 17px;
}

.how {
  position: relative;
  padding: 62px var(--page-padding) 104px;
}

.how::before {
  content: "";
  position: absolute;
  inset: 12% var(--page-padding) auto;
  height: 320px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(156, 255, 0, 0.045), transparent 68%);
  filter: blur(10px);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(100%, var(--flow-max));
  margin: 32px auto 0;
}

.steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(214, 255, 160, 0.18), transparent);
  overflow: hidden;
}

.steps::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: calc(50% - 1px);
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(156, 255, 0, 0.48), transparent);
  filter: blur(2px);
  animation: connectorLight 5.8s ease-in-out infinite;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(214, 255, 166, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8, 14, 11, 0.78), rgba(3, 6, 5, 0.54));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.step-number {
  position: relative;
  display: grid;
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(156, 255, 0, 0.54);
  border-radius: 50%;
  color: var(--green);
  font-size: 36px;
  font-weight: 600;
  box-shadow: inset 0 0 22px rgba(156, 255, 0, 0.045), 0 0 26px rgba(156, 255, 0, 0.09);
}

.step-number span {
  position: absolute;
  right: -4px;
  bottom: 9px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(156, 255, 0, 0.65);
  border-radius: 50%;
  background: #010302;
  font-size: 17px;
}

.step-number.done {
  font-size: 45px;
}

.step h3 {
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 850;
}

.step p {
  margin-bottom: 0;
  color: #d6dad2;
  font-size: 15px;
  line-height: 1.55;
}

.step-arrow {
  color: var(--green);
  font-size: 34px;
  font-weight: 300;
  opacity: 0.82;
  filter: drop-shadow(0 0 10px rgba(156, 255, 0, 0.18));
}

.payments {
  position: relative;
  padding-bottom: 104px;
}

.payments::before {
  content: "";
  position: absolute;
  inset: 16% 0 auto;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 50%, rgba(0, 218, 235, 0.04), transparent 20rem),
    radial-gradient(circle at 75% 40%, rgba(156, 255, 0, 0.055), transparent 24rem);
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}

.payment-card {
  min-height: 275px;
  padding: 30px 34px 28px;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(8, 14, 11, 0.9), rgba(2, 5, 4, 0.96)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(156, 255, 0, 0.08), rgba(255, 255, 255, 0.08)) border-box;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 22px 72px rgba(0, 0, 0, 0.26);
}

.pix-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 218, 235, 0.08), transparent 13rem) padding-box,
    linear-gradient(180deg, rgba(8, 14, 11, 0.9), rgba(2, 5, 4, 0.96)) padding-box,
    linear-gradient(135deg, rgba(0, 218, 235, 0.22), rgba(156, 255, 0, 0.07), rgba(255, 255, 255, 0.08)) border-box;
}

.pix-glow {
  width: 126px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto 8px;
  filter: drop-shadow(0 0 14px rgba(88, 255, 0, 0.14));
  animation: illustrationFloat 6.2s ease-in-out infinite;
}

.payment-card p {
  margin: 18px 0 0;
  color: #e8eae6;
  font-size: 18px;
  line-height: 1.45;
}

.payment-card h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.payment-card:not(.pix-card) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(156, 255, 0, 0.07), transparent 15rem) padding-box,
    linear-gradient(180deg, rgba(8, 14, 11, 0.9), rgba(2, 5, 4, 0.96)) padding-box,
    linear-gradient(135deg, rgba(190, 255, 114, 0.2), rgba(156, 255, 0, 0.07), rgba(255, 255, 255, 0.08)) border-box;
}

.coins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  color: #e4e6e1;
  font-size: 13px;
  line-height: 1.25;
}

.coin img {
  display: block;
  width: 126px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto 0;
  filter: drop-shadow(0 0 12px rgba(138, 255, 0, 0.16));
  animation: illustrationFloat 6.8s ease-in-out infinite;
}

.coin:nth-child(2) img {
  animation-delay: 0.35s;
}

.coin:nth-child(3) img {
  animation-delay: 0.7s;
}

.footer {
  position: relative;
  padding-bottom: 0;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 var(--page-padding) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 26%, rgba(156, 255, 0, 0.045), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) 220px minmax(320px, 0.75fr);
  align-items: start;
  gap: clamp(42px, 6vw, 86px);
  padding: 60px 0 42px;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 520px;
  color: #b6bdb6;
  font-size: 15px;
  line-height: 1.75;
}

.footer-contact {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #dfe5dc;
  font-size: 14px;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-phone {
  gap: 6px;
}

.footer p,
.footer a {
  color: #aeb5ad;
  font-size: 14px;
  line-height: 1.55;
}

.footer h3 {
  margin: 0 0 15px;
  font-size: 15px;
}

.footer-grid > div:not(.footer-brand):not(.help-card) a {
  display: block;
  margin-bottom: 9px;
}

.help-card {
  padding: 28px 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(10, 16, 11, 0.88), rgba(4, 8, 6, 0.9)) padding-box,
    linear-gradient(135deg, rgba(214, 255, 153, 0.22), rgba(156, 255, 0, 0.06), rgba(255, 255, 255, 0.08)) border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 58px rgba(0, 0, 0, 0.26);
}

.help-card p {
  margin-bottom: 20px;
}

.help-card .btn {
  width: 100%;
  min-height: 49px;
  padding: 0 15px;
  font-size: 14px;
  color: #050900;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  margin: 0;
  color: #858c86;
  font-size: 13px;
}

.meta-mini {
  color: rgba(49, 189, 255, 0.86);
  font-size: 28px;
  vertical-align: middle;
}

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(190, 255, 95, 0.72);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 810px;
  }

  .hero-bg {
    width: 100%;
    inset: 0;
    background-position: right top;
    background-size: auto 100%;
    opacity: 0.72;
  }

  .product-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .steps::before,
  .steps::after {
    display: none;
  }

  .step-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

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

  .help-card {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header {
    width: 100%;
    padding-inline: 20px;
  }

  .site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: 76px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  }

  .brand img {
    width: 188px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 61;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(214, 255, 166, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .mobile-menu-toggle span + span {
    margin-top: 0;
  }

  .mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed;
    z-index: 55;
    top: 76px;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(82vw, 330px);
    height: calc(100dvh - 76px);
    padding: 26px 22px;
    gap: 18px;
    border-left: 1px solid rgba(214, 255, 166, 0.14);
    background:
      radial-gradient(circle at 80% 10%, rgba(156, 255, 0, 0.08), transparent 12rem),
      rgba(0, 0, 0, 0.97);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.48);
    transform: translateX(102%);
    transition: transform 260ms ease;
  }

  .mobile-menu-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-panel a:not(.btn) {
    color: #f6f8f3;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-menu-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero {
    min-height: 870px;
    padding-top: 34px;
  }

  .hero-bg {
    inset: 0 -20px 0 -20px;
    width: auto;
    height: auto;
    background-image: linear-gradient(180deg, rgba(2, 4, 3, 0.95) 0%, rgba(2, 4, 3, 0.7) 18%, rgba(2, 4, 3, 0) 42%), url("./assets/hero/fundo-hero-mobile.png");
    background-position: center top;
    background-size: cover;
    opacity: 1;
  }

  .hero-copy {
    width: 100%;
  }

  .pill {
    min-height: 31px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-features div {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    min-width: 0;
    text-align: left;
    font-size: 10.6px;
    line-height: 1.08;
  }

  .hero-features img {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }

  .hero-features span {
    display: block;
    max-width: 72px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .mobile-scroll-indicator {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 18px auto 0;
    border: 1px solid rgba(156, 255, 0, 0.28);
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: 0 0 18px rgba(156, 255, 0, 0.18);
    animation: mobileScrollFloat 2s ease-in-out infinite;
  }

  .mobile-scroll-indicator span {
    width: 10px;
    height: 10px;
    border-right: 1.5px solid var(--green);
    border-bottom: 1.5px solid var(--green);
    transform: translateY(-2px) rotate(45deg);
  }

  .products {
    margin-top: 28px;
  }

  .center-heading h2 {
    font-size: 31px;
  }

  .center-heading p {
    font-size: 16px;
  }

  .product-card {
    min-height: 410px;
  }

  .recurring-banner {
    align-items: center;
    min-height: 142px;
    padding: 26px 22px;
    gap: 16px;
  }

  .recurring-banner > img:not(.discount-tag) {
    display: none;
  }

  .recurring-banner h3 {
    font-size: 20px;
    line-height: 1.14;
  }

  .recurring-banner p {
    font-size: 15px;
    line-height: 1.45;
  }

  .discount-tag {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }

  .step {
    align-items: flex-start;
  }

  .step-number {
    flex-basis: 74px;
    width: 74px;
    height: 74px;
    font-size: 29px;
  }

  .coins {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
    font-size: 10.5px;
  }

  .payment-card {
    padding-inline: 16px;
  }

  .coin {
    min-width: 0;
    text-align: center;
  }

  .coin img {
    width: 74px;
    height: 64px;
    margin: 0 auto 6px;
  }

  .coin small {
    font-size: 10px;
  }

  .pix-glow {
    width: 126px;
    height: 104px;
    margin: 0 auto 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .help-card {
    grid-column: auto;
    max-width: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
}

@media (max-width: 360px) {
  .hero-features {
    gap: 2px;
  }

  .hero-features div {
    gap: 3px;
    font-size: 9.6px;
  }

  .hero-features img {
    flex-basis: 25px;
    width: 25px;
    height: 25px;
  }

  .hero-features span {
    max-width: 62px;
  }
}

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