:root {
  --orange: #FF6A00;
  --orange-2: #ff8534;
  --black: #000000;
  --bg: #0D0D0D;
  --card: #161616;
  --card-2: #1b1b1b;
  --line: #262626;
  --line-2: #333333;
  --white: #ffffff;
  --ink: #ededed;
  --muted: #9a9a9a;
  --muted-2: #777777;
  --green: #3ddc84;
  /* TOKENS DE SECAO CLARA */
  --l-bg: #ffffff;
  --l-ink: #0D0D0D;
  --l-muted: #5a5a5a;
  --l-line: #e8e8e3;
  --l-card: #ffffff;
  --radius: 16px;
  --radius-lg: 22px;
  --max: 1160px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  background: var(--orange);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

/* ---------- [LINHA DE PROGRESSAO] ---------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 70;
  background: linear-gradient(90deg, var(--orange), #ff9a4d);
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- [HEADER] ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: .3s;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(0, 0, 0, .9);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora';
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.logo .mk {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.logo span {
  color: var(--orange);
}

.nav .nav-cta {
  display: none;
}

@media (min-width: 760px) {
  .nav .nav-cta {
    display: inline-flex;
  }
}

/* [BARRA FINA DE URGENCIA] */
.ubar {
  background: linear-gradient(90deg, var(--orange), #ff8a3a);
  color: #1a0c00;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  position: relative;
  z-index: 61;
}

.ubar b {
  font-weight: 700;
}

/* FAIXA DE ALERTA (FITA DE CONSTRUCAO) */
.hazard-tape {
  position: relative;
  z-index: 62;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  background: repeating-linear-gradient(45deg,
      #f2c200 0, #f2c200 18px,
      #1a1a1a 18px, #1a1a1a 36px);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.hazard-tape span {
  display: inline-block;
  padding: 6px 22px;
  background: #1a1a1a;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .1em;
  color: #f2c200;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .hazard-tape span {
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: .06em;
  }
}

/* ---------- [BOTOES] ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), #ff8a30);
  color: #fff;
  font-weight: 600;
  font-family: 'Inter';
  padding: 16px 30px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 10px 34px -10px rgba(255, 106, 0, .6);
  transition: transform .2s, box-shadow .2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(255, 106, 0, .75);
}

.btn.lg {
  padding: 19px 38px;
  font-size: 17px;
}

.btn.sm {
  padding: 11px 20px;
  font-size: 14px;
}

/* ---------- [ESTRUTURA DA SECAO] ---------- */
.s {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  transition: background .6s ease;
}

.s-black {
  background: var(--black);
}

.s-dark {
  background: var(--bg);
}

.s-light {
  background: var(--l-bg);
  color: var(--l-ink);
}

/* [LINHA DIVISORIA DESENHADA NO TOPO DE CADA SECAO] */
.s::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 140px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.2, .7, .2, 1);
}

.s.seen::before {
  transform: scaleX(1);
}

.s-light::before {
  height: 2px;
}

/* ---------- [CABECALHO EDITORIAL DA SECAO] ---------- */
.shead {
  max-width: 760px;
  margin-bottom: 54px;
}

.shead.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.shead h2 {
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 800;
  letter-spacing: -.025em;
}

.s-light .shead h2 {
  color: var(--l-ink);
}

.shead .sintro {
  color: var(--muted);
  font-size: 17px;
  margin-top: 16px;
}

.s-light .shead .sintro {
  color: var(--l-muted);
}

/* ---------- [HERO (DESTAQUE PRINCIPAL)] ---------- */
.hero {
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 820px;
  height: 760px;
  background: radial-gradient(closest-side, rgba(255, 106, 0, .16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  text-align: left;
  align-self: start;
  padding-top: 8px;
}

.hero h1 {
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -.03em;
}

.hero h1 .o {
  color: var(--orange);
}

.hero .lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 24px;
}

.hero .lead b {
  color: #fff;
  font-weight: 600;
}

.hero .nots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 24px;
  font-size: 14px;
}

.hero .nots span {
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 6px 14px;
}

.hero .nots span::before {
  content: "✕ ";
  color: var(--orange);
  font-weight: 700;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
  perspective: 1100px;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 150%;
  max-width: 150%;
  height: auto;
  margin-right: -25%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .55));
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* [ANEIS ORBITANDO A ROSE] */
.orbits {
  position: absolute;
  left: 57%;
  top: 47%;
  z-index: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  animation: hero-float 6s ease-in-out infinite;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
}

.orbit .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 106, 0, .35);
  box-shadow: 0 0 22px rgba(255, 106, 0, .12) inset;
  animation: ring-spin linear infinite;
}

.orbit .ring::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px 3px rgba(255, 106, 0, .85);
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.o1 {
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -300px;
  transform: rotateX(73deg) rotateZ(8deg);
}

.o1 .ring {
  animation-duration: 22s;
  border-color: rgba(255, 106, 0, .30);
}

.o2 {
  width: 475px;
  height: 475px;
  margin: -237px 0 0 -237px;
  transform: rotateX(68deg) rotateZ(-14deg);
}

.o2 .ring {
  animation-duration: 15s;
  animation-direction: reverse;
  border-color: rgba(255, 106, 0, .5);
}

.o2 .ring::before {
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  top: -5px;
}

.o3 {
  width: 355px;
  height: 355px;
  margin: -177px 0 0 -177px;
  transform: rotateX(78deg) rotateZ(20deg);
}

.o3 .ring {
  animation-duration: 11s;
  border-color: rgba(255, 106, 0, .6);
}

.o3 .ring::before {
  width: 8px;
  height: 8px;
  margin-left: -4px;
  top: -4px;
}

@media (max-width: 860px) {
  .orbits {
    animation: orbits-float-m 6s ease-in-out infinite;
  }
}

@keyframes orbits-float-m {
  0%, 100% {
    transform: scale(.45) translateY(0);
  }
  50% {
    transform: scale(.45) translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit .ring,
  .orbits {
    animation: none;
  }
}

.trust {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

@media (max-width: 860px) {
  .hero {
    padding: 36px 0 70px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .hero-copy {
    display: contents;
  }
  .hero h1 {
    order: 1;
    margin-bottom: 6px;
  }
  .hero .lead {
    order: 2;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-art {
    order: 3;
    max-width: 230px;
    margin: 0 auto;
    transform: translateX(-60px);
  }
  .hero .nots {
    order: 4;
  }
  .hero .trust {
    order: 5;
  }
  .hero .nots,
  .hero .trust {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art img {
    animation: none;
  }
}

/* [CONTAGEM REGRESSIVA] */
.countdown {
  display: inline-flex;
  gap: 8px;
  margin-top: 34px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.countdown .cd {
  min-width: 62px;
  text-align: center;
}

.countdown .cd .n {
  font-family: 'Sora';
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  line-height: 1;
}

.countdown .cd .l {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 5px;
}

.countdown .sep {
  align-self: center;
  color: var(--line-2);
  font-size: 24px;
  font-weight: 300;
}

.cd-cap {
  display: block;
  font-size: 12.5px;
  color: var(--muted-2);
  margin-top: 12px;
}

/* ---------- [DUVIDAS] ---------- */
.grid {
  display: grid;
  gap: 20px;
}

.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.doubt {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: .25s;
}

.doubt:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
}

.doubt .dhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.doubt .dicon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 0, .1);
  border: 1px solid rgba(255, 106, 0, .28);
  color: var(--orange);
  transition: .25s;
}

.doubt .dicon svg {
  width: 26px;
  height: 26px;
}

.doubt:hover .dicon {
  background: rgba(255, 106, 0, .16);
  transform: translateY(-2px);
}

.doubt p {
  font-size: 15.5px;
  color: var(--ink);
}

/* ---------- [ESTATISTICAS] ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--l-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  text-align: center;
  padding: 36px 18px;
  border-right: 1px solid var(--l-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.stat:last-child {
  border-right: none;
}

.stat .n {
  font-family: 'Sora';
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--orange);
  line-height: 1;
  white-space: nowrap;
}

.stat .c {
  color: var(--l-muted);
  font-size: 14.5px;
  margin-top: 14px;
}

.sources {
  text-align: center;
  color: #8a8a8a;
  font-size: 13px;
  margin-top: 26px;
}

@media (max-width: 680px) {
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--l-line);
  }
  .stat:last-child {
    border-bottom: none;
  }
}

/* ---------- [AUTORIDADE] ---------- */
.author {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px;
}

.author .photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author .photo img {
  width: 116%;
  max-width: 116%;
  height: auto;
  margin: 0 -8%;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
}

.author .role {
  color: var(--orange-2);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.author h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.author p {
  color: var(--muted);
  margin-bottom: 14px;
}

.author p b {
  color: #fff;
  font-weight: 600;
}

.author p .em {
  color: var(--orange-2);
  font-weight: 600;
}

.author .figs {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.author .figs .n {
  font-family: 'Sora';
  font-weight: 800;
  font-size: 30px;
  color: #fff;
}

.author .figs .l {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .author {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }
  .author .photo {
    max-width: 200px;
    margin: 0 auto;
  }
  .author .figs {
    justify-content: center;
  }
}

/* ---------- [METODO] ---------- */
.method-intro {
  max-width: 740px;
  margin: 0 0 44px;
  color: var(--muted);
  font-size: 17px;
}

.method-intro b {
  color: #fff;
  font-weight: 600;
}

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

.phase {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: .25s;
}

.phase:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
}

.phase .pn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 106, 0, .12);
  border: 1px solid rgba(255, 106, 0, .3);
  color: var(--orange);
  font-family: 'Sora';
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.phase h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.phase p {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 720px) {
  .phases {
    grid-template-columns: 1fr;
  }
}

/* ---------- [PROTOCOLOS] ---------- */
.protos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 18px;
}

.proto {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: .25s;
}

.proto:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 0, .4);
  box-shadow: 0 24px 50px -28px rgba(255, 106, 0, .3);
}

.proto .top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.proto .pn {
  font-family: 'Sora';
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  background: rgba(255, 106, 0, .1);
  border: 1px solid rgba(255, 106, 0, .25);
  padding: 4px 11px;
  border-radius: 50px;
}

.proto h3 {
  font-size: 18px;
  line-height: 1.3;
}

.proto p {
  color: var(--muted);
  font-size: 14.5px;
}

.proto p b {
  color: var(--orange-2);
  font-weight: 600;
}

/* ---------- [ENTREGAVEIS] ---------- */
.deliv {
  max-width: 860px;
  margin: 0 auto;
  background: var(--l-card);
  border: 1px solid var(--l-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.deliv .row {
  display: flex;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--l-line);
  align-items: flex-start;
  transition: .18s;
}

.deliv .row:last-child {
  border-bottom: none;
}

.deliv .row:hover {
  background: #faf9f6;
}

.deliv .row .ck {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 106, 0, .12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
  font-weight: 700;
}

.deliv .row .tx {
  font-size: 15.5px;
  color: #3a3a3a;
}

.deliv .row .tx b {
  color: var(--l-ink);
  font-weight: 600;
}

/* ---------- [PUBLICO] ---------- */
.aud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.aud .col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.aud .col.yes {
  border-color: rgba(255, 106, 0, .3);
}

.aud .col h3 {
  font-size: 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aud .col.yes h3 .ic {
  color: var(--orange);
}

.aud .col.no h3 {
  color: var(--muted);
}

.aud ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.aud li {
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
}

.aud li .m {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
  font-weight: 700;
}

.aud .yes li .m {
  background: rgba(255, 106, 0, .15);
  color: var(--orange);
}

.aud .no li {
  color: var(--muted);
}

.aud .no li .m {
  background: #222;
  color: var(--muted-2);
}

.aud li b {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 720px) {
  .aud {
    grid-template-columns: 1fr;
  }
}

/* ---------- [OFERTA] ---------- */
.offer {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.vtable {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px 8px;
}

.vtable .vr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.vtable .vr:last-child {
  border-bottom: none;
}

.vtable .vr .p {
  color: var(--muted);
}

.vtable .vr.total {
  font-weight: 700;
  color: #fff;
}

.vtable .vr.total .p {
  color: var(--orange);
  font-size: 18px;
}

.buy {
  background: linear-gradient(165deg, #1c1c1c, #0e0e0e);
  border: 1px solid rgba(255, 106, 0, .35);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.buy::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(closest-side, rgba(255, 106, 0, .18), transparent);
  pointer-events: none;
}

.buy > * {
  position: relative;
  z-index: 1;
}

.buy .tagline {
  font-size: 13px;
  color: var(--orange-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.buy .from {
  color: var(--muted);
  font-size: 15px;
}

.buy .from s {
  color: var(--muted-2);
}

.buy .price {
  font-family: 'Sora';
  font-weight: 800;
  color: #fff;
  margin: 4px 0 2px;
  line-height: 1;
}

.buy .price .c {
  font-size: 28px;
  vertical-align: top;
  color: var(--muted);
}

.buy .price .v {
  font-size: 74px;
  color: var(--orange);
}

.buy .inst {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.buy .pay {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.buy .secure {
  color: var(--muted-2);
  font-size: 12.5px;
  margin-top: 16px;
}

@media (max-width: 760px) {
  .offer {
    grid-template-columns: 1fr;
  }
}

/* ---------- [GARANTIA] ---------- */
.guar {
  max-width: 980px;
  margin: 46px auto 0;
  display: flex;
  gap: 30px;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(61, 220, 132, .3);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.guar .seal {
  flex: none;
  color: var(--green);
  font-family: 'Sora';
  text-align: center;
  line-height: 1;
}

.guar .seal .b {
  display: block;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.guar .seal .s {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-top: 4px;
}

.guar h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.guar p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 6px;
}

.guar p b {
  color: #fff;
  font-weight: 600;
}

.guar .kick {
  color: var(--orange-2);
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .guar {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- [PERGUNTAS FREQUENTES] ---------- */
.faq {
  max-width: 780px;
  margin: 0 auto;
}

.fitem {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: .2s;
}

.fitem.open {
  border-color: rgba(255, 106, 0, .4);
}

.fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
}

.fq h4 {
  font-size: 16.5px;
  font-weight: 600;
  color: #fff;
}

.fq .pm {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 106, 0, .12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: .3s;
}

.fitem.open .pm {
  transform: rotate(45deg);
}

.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.fa div {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- [FINAL] ---------- */
.final {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::after {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(255, 106, 0, .16), transparent 70%);
  pointer-events: none;
}

.final h2 {
  font-size: clamp(30px, 5.6vw, 54px);
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 20px;
  letter-spacing: -.03em;
}

.final p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
}

.final p b {
  color: #fff;
  font-weight: 600;
}

.final .meta {
  color: var(--muted-2);
  font-size: 13px;
  margin-top: 22px;
}

/* ---------- [RODAPE] ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 40px;
  text-align: center;
  background: var(--black);
}

footer .logo {
  justify-content: center;
  margin-bottom: 16px;
}

footer .links {
  display: flex;
  gap: 24px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  margin: 14px 0;
  flex-wrap: wrap;
}

footer .links a:hover {
  color: var(--orange);
}

footer .cnpj {
  color: var(--muted);
  font-size: 13.5px;
}

footer .cr {
  color: var(--muted-2);
  font-size: 12.5px;
  margin-top: 12px;
}

/* ---------- [CTA FIXO MOBILE] ---------- */
.smcta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 65;
  background: rgba(0, 0, 0, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  transform: translateY(110%);
  transition: .35s;
}

.smcta.show {
  transform: none;
}

.smcta .pr {
  font-size: 13px;
  color: var(--muted);
}

.smcta .pr b {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 900px) {
  .smcta {
    display: none;
  }
}

/* [ANIMACAO DE REVELACAO] */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.rv.in {
  opacity: 1;
  transform: none;
}

.rv.d1 {
  transition-delay: .08s;
}

.rv.d2 {
  transition-delay: .16s;
}

.rv.d3 {
  transition-delay: .24s;
}

@media (prefers-reduced-motion: reduce) {
  .rv,
  .s::before {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* [PAYMENT METHODS] */
.paymethods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 12px 0 4px;
}

.paymethods.center {
  justify-content: center;
}

.paymethods img {
  height: 22px;
  width: auto;
  opacity: .9;
  border-radius: 4px;
}
