/* ══════════════════════════════════
   3STEPS · DESIGN SYSTEM
   ══════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

:root {
  --g: #27e094;
  --gd: #27e094;
  --gdim: rgba(0, 229, 176, .12);
  --bg: #0A0F0D;
  --bgc: #111813;
  --bgc2: #0d1410;
  --bdr: rgba(255, 255, 255, .07);
  --bdrg: rgba(0, 229, 176, .26);
  --t0: #FFFFFF;
  --t1: #E2EDE9;
  --t2: #9DB3AC;
  --t3: #4E6860;
  --font: 'Sora', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --rsm: 6px;
  --rmd: 10px;
  --rlg: 16px;
  --rxl: 22px;
  --r2xl: 32px;
  --rfull: 9999px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 176, .18);
  border-radius: 2px
}

/* ── SVG SPRITES ── */
.svg-sprites {
  display: none
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

.a1 {
  animation: fadeUp .7s var(--ease) .05s both
}

.a2 {
  animation: fadeUp .7s var(--ease) .17s both
}

.a3 {
  animation: fadeUp .7s var(--ease) .29s both
}

.a4 {
  animation: fadeUp .7s var(--ease) .41s both
}

.a5 {
  animation: fadeUp .7s var(--ease) .53s both
}

/* ── BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s var(--ease);
  white-space: nowrap;
  border-radius: var(--rmd);
  line-height: 1
}

.btn-lg {
  font-size: 1rem;
  padding: .875rem 2rem;
  height: 52px
}

.btn-xl {
  font-size: 1.0625rem;
  padding: 1rem 2.75rem;
  height: 58px
}

.btn-pri {
  background: linear-gradient(90deg, var(--g), var(--gd));
  color: #061209;
  font-weight: 800;
  box-shadow: 0 4px 28px rgba(0, 229, 176, .3)
}

.btn-pri:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 229, 176, .45)
}

.btn-ghost {
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--bdr)
}

.btn-ghost:hover {
  color: var(--t0);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04)
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(10, 15, 13, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bdr);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center
}

.nav-logo-img {
  height: 20px;
  width: auto;
  display: block
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--t0)
}

@media(max-width:640px) {
  .nav-links {
    display: none
  }
}

/* ── LAYOUT ── */
section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 64px)
}

.wrap {
  max-width: 1100px;
  margin: 0 auto
}

.wrap-sm {
  max-width: 720px;
  margin: 0 auto
}

hr {
  border: none;
  border-top: 1px solid var(--bdr)
}

.s-label {
  font-family: var(--mono);
  font-size: .6875rem;
  color: var(--g);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .75rem
}

.s-title {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.035em;
  line-height: 1.12;
  margin-bottom: 1rem
}

.s-sub {
  font-size: 1.0625rem;
  color: var(--t2);
  line-height: 1.72
}

/* ══════════════════════════════════
   § 1  HERO
   ══════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(20px, 5vw, 64px) 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 229, 176, .055) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 100% 90% at 50% 0%, black 10%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 0%, black 10%, transparent 65%);
}

.hero-glow {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 680px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(0, 229, 176, .075) 0%, transparent 65%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: rgba(0, 229, 176, .07);
  border: 1px solid rgba(0, 229, 176, .2);
  border-radius: var(--rfull);
  padding: .4rem 1rem;
  margin-bottom: 2rem;
}

.kd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse 2s ease infinite;
  flex-shrink: 0
}

.kt {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--g)
}

.kt strong {
  color: var(--t0);
  font-weight: 600
}

.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.045em;
  line-height: 1.04;
  margin-bottom: 1.5rem;
}

.hero-title .acc {
  color: var(--g)
}

.hero-title .thin {
  font-weight: 300;
  color: var(--t2)
}

.hero-sub {
  font-size: clamp(.9375rem, 1.4vw, 1.125rem);
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: .75rem;
  max-width: 480px;
}

.hero-sub2 {
  font-size: .9375rem;
  color: var(--t3);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap
}

.ht {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--t3)
}

.ht svg {
  color: var(--g);
  flex-shrink: 0
}

/* card visual — os 3 passos */
.steps-card {
  background: var(--bgc2);
  border: 1px solid var(--bdrg);
  border-radius: var(--r2xl);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 229, 176, .09), 0 0 0 1px rgba(0, 229, 176, .06);
  animation: floatY 5s ease infinite;
}

.sc-top {
  background: #0b1512;
  padding: .875rem 1.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bdr);
}

.sc-dots {
  display: flex;
  gap: 6px
}

.sc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.sc-title {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--t3);
  letter-spacing: .04em
}

.sc-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .875rem
}

.sc-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.125rem;
  border-radius: var(--rlg);
  border: 1px solid var(--bdr);
  background: var(--bg);
  transition: border-color .2s;
}

.sc-step.active {
  border-color: var(--bdrg);
  background: rgba(0, 229, 176, .02)
}

.sc-n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 600;
  color: var(--g);
  background: var(--gdim);
  border: 1px solid var(--bdrg);
}

.sc-content {}

.sc-step-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--t0);
  margin-bottom: .2rem
}

.sc-step-desc {
  font-size: .8rem;
  color: var(--t3);
  line-height: 1.55
}

.sc-status {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--mono);
  font-size: .65rem;
  margin-top: .4rem;
}

.sc-status.ok {
  color: var(--g)
}

.sc-status.pending {
  color: var(--t3)
}

.sc-dot-s {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0
}

.sc-status.ok .sc-dot-s {
  background: var(--g);
  animation: pulse 2s ease infinite
}

.sc-status.pending .sc-dot-s {
  background: var(--t3)
}

@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem
  }
}

/* ══════════════════════════════════
   § TICKER
   ══════════════════════════════════ */
.ticker {
  background: rgba(0, 229, 176, .03);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: .75rem 0;
  overflow: hidden
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: tick 26s linear infinite
}

.ti {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 2rem;
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--t3);
  white-space: nowrap
}

.ti em {
  color: var(--g);
  font-style: normal
}

.ti-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 229, 176, .22);
  flex-shrink: 0
}

/* ══════════════════════════════════
   § 2  COMO FUNCIONA (3 passos)
   ══════════════════════════════════ */
.how-section {
  background: var(--bgc);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr)
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--bdr);
  border-radius: var(--r2xl);
  overflow: hidden;
}

.how-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--bdr);
  position: relative;
}

.how-step:last-child {
  border-right: none
}

.how-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--bdrg);
  background: rgba(0, 229, 176, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .875rem;
  font-weight: 600;
  color: var(--g);
  margin-bottom: 1.5rem;
}

.how-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--t0);
  margin-bottom: .5rem;
  letter-spacing: -.02em
}

.how-desc {
  font-size: .9rem;
  color: var(--t2);
  line-height: 1.7
}

.how-time {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--g);
  margin-top: .875rem
}

@media(max-width:768px) {
  .how-grid {
    grid-template-columns: 1fr
  }

  .how-step {
    border-right: none;
    border-bottom: 1px solid var(--bdr)
  }

  .how-step:last-child {
    border-bottom: none
  }
}

/* ══════════════════════════════════
   § 3  O QUE ESTÁ INCLUSO
   ══════════════════════════════════ */
.incluso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.inc-card {
  background: var(--bgc);
  border: 1px solid var(--bdr);
  border-radius: var(--rxl);
  padding: 1.75rem;
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.inc-card:hover {
  border-color: var(--bdrg);
  transform: translateY(-2px)
}

.inc-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--rlg);
  flex-shrink: 0;
  background: var(--gdim);
  border: 1px solid var(--bdrg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
}

.inc-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--t0);
  margin-bottom: .35rem;
  letter-spacing: -.01em
}

.inc-desc {
  font-size: .875rem;
  color: var(--t2);
  line-height: 1.65
}

@media(max-width:640px) {
  .incluso-grid {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════════
   § 4  PLANO (horizontal)
   ══════════════════════════════════ */
.plan-section {
  background: var(--bgc);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr)
}

.plan-card {
  max-width: 860px;
  margin: 3rem auto 0;
  background: var(--bg);
  border: 1px solid var(--bdrg);
  border-radius: var(--r2xl);
  box-shadow: 0 0 0 1px var(--bdrg), 0 32px 80px rgba(0, 229, 176, .1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.plan-left {
  padding: 2.5rem;
  border-right: 1px solid rgba(0, 229, 176, .14);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.02em;
  margin-bottom: .25rem
}

.plan-for {
  font-size: .8125rem;
  color: var(--t3);
  margin-bottom: 2rem
}

.plan-price {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.045em;
  line-height: 1
}

.plan-price sup {
  font-size: 1.125rem;
  vertical-align: super;
  font-weight: 600
}

.plan-price .cents {
  font-size: 1.625rem;
  font-weight: 700
}

.plan-period {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--t3);
  margin: .375rem 0 2rem
}

.plan-cta-btn {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.plan-guarantee {
  padding: .875rem 1rem;
  background: rgba(0, 229, 176, .04);
  border: 1px solid rgba(0, 229, 176, .1);
  border-radius: var(--rlg);
  font-size: .8rem;
  color: var(--t3);
  line-height: 1.6;
  text-align: center;
}

.plan-guarantee svg {
  color: var(--g);
  vertical-align: middle;
  margin-right: .25rem
}

.plan-right {
  padding: 2.5rem
}

.plan-feats-label {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.25rem
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .625rem
}

.pf {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9rem;
  color: var(--t2);
  line-height: 1.45
}

.pf svg {
  color: var(--g);
  flex-shrink: 0;
  margin-top: 2px
}

.plan-note {
  margin-top: 1.5rem;
  font-size: .8rem;
  color: var(--t3);
  line-height: 1.6;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bdr)
}

@media(max-width:640px) {
  .plan-card {
    grid-template-columns: 1fr
  }

  .plan-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 229, 176, .14)
  }
}

/* ══════════════════════════════════
   § 5  PARA QUEM É
   ══════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.aud-card {
  background: var(--bgc);
  border: 1px solid var(--bdr);
  border-radius: var(--rxl);
  padding: 1.875rem;
  transition: border-color .22s;
}

.aud-card:hover {
  border-color: var(--bdrg)
}

.aud-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rlg);
  background: var(--gdim);
  border: 1px solid var(--bdrg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  margin-bottom: 1.125rem;
}

.aud-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--t0);
  margin-bottom: .5rem
}

.aud-desc {
  font-size: .875rem;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 1.125rem
}

.aud-quote {
  font-size: .8125rem;
  color: var(--t3);
  font-style: italic;
  padding-left: .875rem;
  border-left: 2px solid var(--bdrg);
  line-height: 1.6
}

@media(max-width:768px) {
  .audience-grid {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════════
   § 6  POLÍTICAS (Stripe)
   ══════════════════════════════════ */
.policy-section {
  background: var(--bgc);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr)
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem
}

.pol {
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: var(--rxl);
  padding: 1.75rem
}

.pol-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--rlg);
  background: var(--gdim);
  border: 1px solid var(--bdrg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  margin-bottom: .875rem
}

.pol-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--t0);
  margin-bottom: .5rem
}

.pol-text {
  font-size: .875rem;
  color: var(--t2);
  line-height: 1.75
}

@media(max-width:768px) {
  .policy-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:500px) {
  .policy-grid {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════════
   § 7  FAQ
   ══════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 3rem
}

.faq-item {
  background: var(--bgc);
  border: 1px solid var(--bdr);
  border-radius: var(--rxl);
  overflow: hidden
}

.faq-q {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--t1);
  gap: 1rem;
  user-select: none;
  transition: color .15s;
}

.faq-q:hover {
  color: var(--t0)
}

.faq-ico {
  width: 18px;
  height: 18px;
  color: var(--g);
  transition: transform .25s;
  flex-shrink: 0
}

.faq-item.open .faq-ico {
  transform: rotate(45deg)
}

.faq-a {
  display: none;
  font-size: .9rem;
  color: var(--t2);
  line-height: 1.8;
  padding: 0 1.5rem 1.25rem
}

.faq-item.open .faq-a {
  display: block
}

/* ══════════════════════════════════
   § 8  CTA FINAL
   ══════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(0, 229, 176, .08) 0%, transparent 60%);
}

.cta-section .wrap {
  position: relative;
  z-index: 1
}

.cta-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.045em;
  line-height: 1.07;
  margin-bottom: 1.25rem
}

.cta-title em {
  color: var(--g);
  font-style: normal
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto
}

.cta-fine {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--t3);
  margin-top: 1.5rem
}

.cta-fine svg {
  color: var(--g)
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--bdr);
  padding: 2.5rem clamp(20px, 5vw, 64px)
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem
}

.footer-logo-img {
  height: 24px;
  width: auto;
  display: block
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap
}

.footer-links a {
  font-size: .875rem;
  color: var(--t3);
  text-decoration: none;
  transition: color .18s
}

.footer-links a:hover {
  color: var(--t1)
}

.footer-copy {
  font-size: .8rem;
  color: var(--t3);
  font-family: var(--mono)
}

/* ── NAV CTA ── */
.nav-cta {
  font-size: .875rem;
  height: 38px;
  padding: .5rem 1.25rem
}

/* ── STEPS CARD EXTRAS ── */
.sc-dot--red {
  background: #FF4D6D
}

.sc-dot--yellow {
  background: #F5A623
}

.sc-dot--green {
  background: #00E5B0
}

.sc-live {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--g);
  display: flex;
  align-items: center;
  gap: .35rem
}

.sc-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse 1.4s ease infinite;
  display: inline-block
}

.sc-info {
  background: rgba(0, 229, 176, .04);
  border: 1px solid rgba(0, 229, 176, .1);
  border-radius: var(--rlg);
  padding: .75rem 1rem;
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--t3);
  text-align: center
}

.sc-info svg {
  color: var(--g);
  vertical-align: middle;
  margin-right: .25rem
}

/* ── BUTTON VARIANT ── */
.btn-full {
  width: 100%;
  justify-content: center
}

/* ── SECTION LAYOUT VARIANTS ── */
.how-section .s-label,
.plan-section .s-label,
#faq .s-label,
.cta-section .s-label {
  text-align: center
}

.how-section .s-title {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 1rem
}

.how-section .s-sub {
  text-align: center;
  max-width: 480px;
  margin: 0 auto
}

.incluso-section .s-sub {
  max-width: 520px
}

.plan-section .s-title {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 1rem
}

.plan-section .s-sub {
  text-align: center;
  max-width: 440px;
  margin: 0 auto
}

.audience-section .s-sub {
  max-width: 480px
}

.policy-section .s-sub {
  max-width: 480px
}

#faq .s-title {
  text-align: center;
  margin-bottom: 0
}