/* ============================================================
   PPS1JUN26 | Upsell — Supervisão Online
   Estático puro. Desktop 1920 de referência + responsivo.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg-black: #000000;
  --bg-020203: #020203;
  --bg-060503: #060503;
  --bg-100f12: #100f12;
  --bg-footer: #05071a;
  --bg-light: #eceef0;

  --blue-deep: #0f3eb2;
  --blue-card1: #0f1c35;
  --blue-card2: #0746c2;
  --navy-card: #233079;

  --txt-white: #ffffff;
  --txt-offwhite: #f4f3ee;
  --txt-lilac: #f7ceff;
  --txt-blue-light: #adceff;
  --txt-faq-answer: #bac9d3;

  --grad-magenta-red: linear-gradient(89.03deg, #d30098 0.11%, #ff003d 101.61%);
  --grad-blue-pink: linear-gradient(90deg, #0347d3 0%, #f71b78 100%);
  --grad-metallic: radial-gradient(circle at 50% 40%, #ffffff 0%, #cdd1db 50%, #9ba3b8 100%);
  --grad-header: linear-gradient(to right, #141456 0%, #1e1e81 50%, #141456 100%);

  --ff-outfit: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-inter: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-fira: "Fira Sans", system-ui, sans-serif;
  --ff-satoshi: "Satoshi", "Inter", system-ui, sans-serif;

  --container: 1400px;
  --radius-card: 20px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-inter);
  background: var(--bg-black);
  color: var(--txt-white);
  line-height: 1.4;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 40px;
}

/* ---------- Text gradient helpers ---------- */
.h-metallic {
  background: var(--grad-metallic);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-mr {
  background: var(--grad-magenta-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-bp {
  background: var(--grad-blue-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Headline scale ---------- */
.headline {
  font-family: var(--ff-outfit);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  margin: 0;
}

/* ---------- CTA pill (magenta→red com círculo branco + seta) ---------- */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 34px;
  border: 0;
  border-radius: 999px;
  background: var(--grad-magenta-red);
  color: #fff;
  font-family: var(--ff-inter);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 27px);
  letter-spacing: -0.4px;
  line-height: 1;
  transition: transform .15s ease, filter .15s ease;
}
.cta-pill:hover { transform: translateY(-2px); filter: brightness(1.06); }
.cta-pill .cta-arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
}
.cta-pill .cta-arrow svg { width: 23px; height: 20px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  min-height: 5.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-header);
  position: relative;
  z-index: 20;
}
/* Borda inferior do Figma: faixa branca que se dissolve nas extremidades */
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 50%, rgba(255, 255, 255, 0) 100%);
}
.site-header .logo { width: 278px; height: auto; }

/* ============================================================
   SECTION base
   ============================================================ */
section { position: relative; overflow: hidden; }

/* Decorative streak/glow reusable */
.streak {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

/* ============================================================
   HERO (Dobra 1)
   ============================================================ */
.hero {
  background: #000;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  height: fit-content;
  width: 100%;
}
@media (min-width: 769px) {
  .hero {
    background-image: url(../img/bg-hero.webp);
  }
}
@media (max-width: 768px) {
  .hero {
    background-image: url(../img/bg-hero-mobile.webp);
    min-height: auto;
  }
}
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(600px 600px at 12% 22%, rgba(58,40,180,0.55), transparent 70%),
    radial-gradient(560px 560px at 88% 30%, rgba(190,20,120,0.42), transparent 70%),
    radial-gradient(680px 680px at 20% 92%, rgba(120,20,150,0.40), transparent 70%),
    radial-gradient(620px 620px at 92% 88%, rgba(30,60,190,0.42), transparent 72%);
}
.hero__rings {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 2043px; max-width: none; height: auto; z-index: 0; opacity: .9;
}
.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 34px;
  width: 100%;
  max-width: 1200px;
}
.progress-pill {
  position: relative;
  width: min(797px, 90vw);
  height: 54px;
  background: #0c2d80;
  border: 5px solid #5339b6;
  border-radius: 999px;
  overflow: hidden;
  display: flex; align-items: center;
}
.progress-pill__fill {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 56%;
  height: 45px;
  background: var(--grad-blue-pink);
  border-radius: 999px;
}
.progress-pill__label {
  position: relative; z-index: 2;
  width: 100%; text-align: center;
  font-family: var(--ff-outfit); font-weight: 700; font-size: clamp(22px, 2vw, 38px);
  color: #fff; text-transform: uppercase;
}
.hero__headline {
  font-family: var(--ff-outfit);
  font-weight: 400;
  font-size: clamp(28px, 2.9vw, 50px);
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
  /* Efeito de texto metálico prateado (idêntico ao das demais headlines) */
  background: var(--grad-metallic);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__headline b { font-weight: 700; }
.hero__sub {
  font-family: var(--ff-outfit);
  font-weight: 400;
  font-size: clamp(17px, 1.55vw, 28px);
  line-height: 1.45;
  color: #fff;
  width: 100%;
  max-width: 100%;
  height: fit-content;
  margin-bottom: 10px;
}
/* VSL vturb real — proporção 9:16 com max-width 400px (conforme embed cliente) */
.vsl {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
}
.vsl vturb-smartplayer {
  display: block;
  width: 100%;
}

/* ============================================================
   DOBRA 2 — Missão / método
   ============================================================ */
.dobra2 {
  background: var(--bg-020203);
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}
@media (min-width: 769px) {
  .dobra2 {
    background-image: url(../img/bg-preco.webp);
  }
}
@media (max-width: 768px) {
  .dobra2 {
    background-image: url(../img/bg-preco-mobile.webp);
  }
}
.dobra2__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.dobra2__content {
  display: flex;
  flex-direction: column;
  gap: 39px;
  flex: 1 1 min(100%, 620px);
  min-width: 280px;
}
.dobra2__texts { display: flex; flex-direction: column; gap: 24px; }
.dobra2__texts p {
  font-family: var(--ff-inter); font-size: clamp(18px, 1.55vw, 28px); color: #fff;
}
.steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; align-items: center; gap: 14px; }
.step__icon { flex: none; width: 44px; height: 44px; display: grid; place-items: center; }
.step__icon svg { width: 44px; height: 44px; }
.step p {
  font-family: var(--ff-inter); font-weight: 500;
  font-size: clamp(17px, 1.5vw, 28px); color: #fff;
}
.dobra2__media {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 min(100%, 520px);
  min-width: 280px;
}
.dobra2__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 910 / 650;
  object-fit: contain;
  border-radius: 12px;
}

/* ============================================================
   DOBRA 3 — Critérios
   ============================================================ */
.criterios {
  background:
    linear-gradient(to bottom, #000000 0%, #000534 100%);
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
}
@media (min-width: 769px) {
  .criterios {
    background-image: url(../img/bg-criterios.webp);
  }
}
@media (max-width: 768px) {
  .criterios {
    background-image: url(../img/bg-criterios-mobile.webp);
  }
}
.criterios__inner {
  display: flex; flex-direction: column; align-items: center; gap: 49px;
  max-width: 960px; margin-inline: auto;
}
.criterios .headline { text-align: center; }
.aviso {
  display: flex; gap: 17px; align-items: flex-start; text-align: left;
  background: #0f3eb2; border-radius: var(--radius-card); padding: 30px;
}
.aviso__icon { flex: none; width: 40px; height: 40px; }
.aviso p { font-family: var(--ff-inter); font-size: clamp(17px, 1.5vw, 28px); color: #fff; }
.aviso p b { font-weight: 700; }
.checklist-card {
  border: 4px solid #0f3eb2; border-radius: var(--radius-card);
  padding: 35px 33px; display: flex; flex-direction: column; align-items: center; gap: 39px;
}
.checklist-card__title {
  font-family: var(--ff-outfit); font-weight: 400; text-transform: uppercase;
  font-size: clamp(19px, 1.55vw, 28px); text-align: center; color: #fff; max-width: 580px;
}
.checklist-card__title b { font-weight: 700; }
.checklist { display: flex; flex-direction: column; gap: 30px; text-align: left; }
.check-item { display: flex; gap: 20px; align-items: flex-start; }
.check-item .ico { flex: none; width: 22px; height: 22px; margin-top: 2px; }
span.ico { width: 22px; height: 22px; display: inline-block; }
.check-item p { font-family: var(--ff-outfit); font-size: clamp(16px, 1.45vw, 28px); color: #fff; }

/* ============================================================
   DOBRA 4 — Comparativo
   ============================================================ */
.comparativo { background: var(--bg-light); color: #000323; padding: 90px 0; text-align: center; }
.comparativo__head { display: flex; flex-direction: column; align-items: center; gap: 27px; margin-bottom: 45px; }
.comparativo__head .headline { max-width: 760px; }
.comparativo__sub {
  font-family: var(--ff-inter); font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.3; color: #000323; max-width: 640px;
}
.compare-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}
.compare-card {
  flex: 1 1 auto;
  width: 100%;
  max-width: 535px;
  min-width: 280px;
  min-height: 640px;
  padding: 42px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
  border: 1px solid rgba(244,243,238,0.15);
}
.compare-card--bad {
  background: linear-gradient(113.73deg, #460f0f 3.79%, #260c0c 102.54%);
  border-radius: 20px 0 0 20px;
}
.compare-card--good {
  background: linear-gradient(42.51deg, #0f1c35 1.39%, #0746c2 106.13%);
  border-radius: 0 20px 20px 0;
}
.compare-card__title {
  font-family: var(--ff-outfit); font-weight: 600; text-transform: uppercase;
  font-size: clamp(19px, 1.55vw, 28px); line-height: 1.18; color: #fff; text-align: center;
}
.compare-list { display: flex; flex-direction: column; gap: 30px; align-self: stretch; padding-left: 0; }
.compare-list li {
  list-style: none; display: flex; gap: 12px; align-items: flex-start; text-align: left;
  font-family: var(--ff-inter); font-weight: 500; font-size: clamp(15px, 1.15vw, 20px);
  letter-spacing: 0.2px; color: var(--txt-offwhite);
}
.compare-list .ico { flex: none; width: 22px; height: 22px; margin-top: 1px; }

/* ============================================================
   DOBRA 5 — Acessos
   ============================================================ */
.acessos {
  background: var(--bg-020203);
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}
@media (min-width: 769px) {
  .acessos {
    background-image: url(../img/bg-acessos.webp);
  }
}
@media (max-width: 768px) {
  .acessos {
    background-image: url(../img/bg-acessos-mobile.webp);
  }
}
.acessos__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.acessos__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 min(100%, 480px);
  min-width: 280px;
}
.acessos__list { display: flex; flex-direction: column; gap: 20px; padding-left: 0; }
.acessos__list li {
  list-style: none; display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--ff-inter); font-weight: 500; font-size: clamp(16px, 1.15vw, 20px);
  letter-spacing: 0.2px; color: #fff;
}
.acessos__list .ico { flex: none; width: 22px; height: 22px; margin-top: 1px; }
.acessos__media {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 min(100%, 520px);
  min-width: 280px;
}
.acessos__media img {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

/* ============================================================
   DOBRA 6 — Bio
   ============================================================ */
.bio {
  background: var(--bg-060503);
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}
@media (min-width: 769px) {
  .bio {
    background-image: url(../img/bg-preco.webp);
  }
}
@media (max-width: 768px) {
  .bio {
    background-image: url(../img/bg-preco-mobile.webp);
  }
}
.bio__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  align-items: center;
  justify-content: center;
}
.bio__photo {
  width: 100%;
  max-width: 567px;
  aspect-ratio: 567 / 668;
  border-radius: 30px;
  overflow: hidden;
  background: #6d6d6d;
  flex: 0 0 auto;
  min-width: min(100%, 280px);
}
.bio__photo img { width: 100%; height: 100%; object-fit: cover; }
.bio__content {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: flex-start;
  flex: 1 1 min(100%, 480px);
  min-width: 280px;
}
.bio__content .headline { max-width: 560px; }
.bio__text {
  font-family: var(--ff-inter); font-size: clamp(18px, 1.55vw, 28px); color: #fff; max-width: 640px;
}
.logos-inst {
  display: flex; align-items: center; gap: 34px; flex-wrap: wrap;
  opacity: .9; margin-top: 8px;
}
.logos-inst img {
  height: auto; max-width: 100%;
}

/* ============================================================
   DOBRA 7 — Provas (carrossel)
   ============================================================ */
.provas { background: var(--bg-light); color: #050719; padding: 90px 0; text-align: center; width: 100%; height: fit-content; }
.provas__head { display: flex; flex-direction: column; align-items: center; gap: 27px; margin-bottom: 45px; }
.provas__head .headline { text-transform: uppercase; }
.provas__sub { font-family: var(--ff-inter); font-size: clamp(18px, 1.45vw, 28px); line-height: 1.15; color: #050719; max-width: 910px; }
.carousel { display: flex; align-items: center; justify-content: center; gap: 28px; }
.carousel__btn {
  flex: none; width: 48px; height: 48px; border: 0; background: transparent;
  display: grid; place-items: center; color: #7a7f8c;
}
.carousel__btn svg { width: 24px; height: 48px; }
.carousel__track {
  display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px; scrollbar-width: none; width: 100%; height: fit-content;
}
.carousel__track::-webkit-scrollbar { display: none; }
/* Depoimento = só a imagem (sem card/fundo) */
.testi-card {
  flex: 0 0 471px; max-width: 471px;
  border-radius: 30px; scroll-snap-align: center;
  display: flex; overflow: hidden;
}
.testi-card__photo { width: 100%; height: auto; }

/* ============================================================
   DOBRA 8 — Preço
   ============================================================ */
.preco {
  background: #000;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
}
@media (min-width: 769px) {
  .preco {
    background-image: url(../img/bg-preco.webp);
  }
}
@media (max-width: 768px) {
  .preco {
    background-image: url(../img/bg-preco-mobile.webp);
  }
}
.preco__glow {
  position: absolute; left: 50%; bottom: -120px; transform: translateX(-50%);
  width: 1200px; height: 900px; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, rgba(60,40,200,0.5), rgba(150,20,120,0.25) 55%, transparent 75%);
}
.preco__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 50px; }
.preco__inner .headline { max-width: 723px; }
.price-card {
  width: 100%;
  max-width: 489px;
  min-width: min(100%, 300px);
  border: 2px solid #41416b;
  border-radius: 20px;
  padding: 25px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  background: radial-gradient(120% 100% at 50% 0%, #0f3eb2 0%, #0b3193 25%, #082573 50%, #041854 75%, #000c34 100%);
}
.price-card__header { display: flex; align-items: center; gap: 14px; justify-content: center; }
.price-card__logo { height: 46px; width: auto; }
.price-card__sep { width: 1px; height: 44px; background: rgba(255,255,255,0.35); }
.badge-plano {
  background: #ce2776; border-radius: 9px; padding: 7px 10px;
  font-family: var(--ff-satoshi); font-weight: 700; text-transform: uppercase;
  font-size: 16px; color: #fff; line-height: 1.05; max-width: 90px;
}
.price-benefits { display: flex; flex-direction: column; gap: 16px; align-self: stretch; padding-left: 0; }
.price-benefits li {
  list-style: none; display: flex; gap: 10px; align-items: flex-start; text-align: left;
  font-family: var(--ff-inter); font-weight: 500; font-size: 15px; line-height: 1.33;
  letter-spacing: 0.15px; color: #fff;
}
.price-benefits .ico { flex: none; width: 22px; height: 22px; margin-top: 1px; }
.price-divider { width: 177px; height: 1px; background: rgba(255,255,255,0.25); }
.price-value { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.price-value__main { font-family: var(--ff-satoshi); font-weight: 500; font-size: clamp(52px, 6vw, 74px); color: var(--txt-lilac); line-height: 1; }
.price-value__inst { font-family: var(--ff-satoshi); font-weight: 500; font-size: clamp(18px, 2vw, 25px); color: #fff; }
.price-urgency { font-family: var(--ff-satoshi); font-weight: 500; font-size: 18px; line-height: 1.21; color: #fff; max-width: 337px; }
.price-card .cta-pill {
  font-size: 22px;
  height: 75px;
  width: fit-content;
  justify-content: center;
}

/* ============================================================
   DOBRA 9 — Garantia
   ============================================================ */
.garantia {
  background: #000;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}
@media (min-width: 769px) {
  .garantia {
    background-image: url(../img/bg-garantia.webp);
  }
}
@media (max-width: 768px) {
  .garantia {
    background-image: url(../img/bg-garantia-mobile.webp);
  }
}
.garantia__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(700px 500px at 20% 20%, rgba(150,20,120,0.28), transparent 70%),
    radial-gradient(700px 500px at 80% 60%, rgba(30,60,190,0.30), transparent 70%);
}
.garantia__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 90px);
  flex-wrap: wrap;
}
.garantia__seal {
  flex: 0 0 auto;
  width: 100%;
  max-width: 480px;
  min-width: min(100%, 200px);
}
.garantia__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  flex: 1 1 min(100%, 400px);
  max-width: 712px;
  min-width: 280px;
}
.garantia__text .headline { text-transform: uppercase; }
.garantia__text .p1 { font-family: var(--ff-inter); font-size: clamp(18px, 1.55vw, 28px); color: var(--txt-blue-light); }
.garantia__text .p2 { font-family: var(--ff-inter); font-size: clamp(18px, 1.55vw, 28px); color: #fff; }

/* ============================================================
   DOBRA 10 — FAQ
   ============================================================ */
.faq {
  background: #000;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}
@media (min-width: 769px) {
  .faq {
    background-image: url(../img/bg-faq.webp);
  }
}
@media (max-width: 768px) {
  .faq {
    background-image: url(../img/bg-faq-mobile.webp);
  }
}
.faq__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(760px 600px at 15% 95%, rgba(80,30,190,0.34), transparent 70%);
}
.faq__grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 51px;
  align-items: flex-start;
}
.faq__aside {
  display: flex;
  flex-direction: column;
  gap: 51px;
  flex: 1 1 min(100%, 430px);
  min-width: 280px;
}
.faq__title { font-family: var(--ff-satoshi); font-weight: 700; text-transform: uppercase; font-size: clamp(30px, 3vw, 40px); color: var(--txt-offwhite); margin: 0; }
.faq__subtitle { font-family: var(--ff-satoshi); font-weight: 500; font-size: clamp(19px, 1.5vw, 25px); color: #fff; margin-top: 27px; max-width: 384px; }
.faq__support { display: flex; flex-direction: column; gap: 46px; }
.faq__support-q { font-family: var(--ff-satoshi); font-weight: 500; font-size: clamp(19px, 1.5vw, 25px); color: var(--txt-offwhite); line-height: 1.1; max-width: 424px; }
.faq__support-q .hl { color: #a9c7ff; }
.faq__support-q b { font-weight: 700; }
.faq__support-sub { font-family: var(--ff-satoshi); font-weight: 500; font-size: clamp(18px, 1.4vw, 24px); color: #fff; margin-top: 30px; }
.btn-support {
  display: inline-flex; align-items: center; gap: 12px; height: 72px; padding: 7px 30px;
  border: 0; border-radius: 57px; background: var(--grad-magenta-red);
  font-family: var(--ff-inter); font-weight: 600; font-size: 20px; line-height: 24px; color: #fff;
}
.btn-support svg { width: 51px; height: 51px; }
.btn-support img { width: 51px; height: 51px; }
.faq__phone { font-family: var(--ff-satoshi); font-size: 15px; color: #fff; margin-top: 16px; }
.faq__phone b { font-weight: 700; }
.faq__list {
  display: flex;
  flex-direction: column;
  flex: 1 1 min(100%, 520px);
  min-width: 280px;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.14); padding: 24px 0; }
.faq-item:last-child { border-bottom: 0; }
.faq-item__q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 40px;
  width: 100%; background: transparent; border: 0; text-align: left; padding: 0; color: inherit;
}
.faq-item__q span {
  font-family: var(--ff-satoshi); font-weight: 700; font-size: clamp(19px, 1.7vw, 28px); color: var(--txt-offwhite);
}
.faq-item__q .plus { flex: none; width: 28px; height: 28px; color: #ff2ea6; transition: transform .2s ease; }
.faq-item__a {
  font-family: var(--ff-satoshi); font-weight: 400; font-size: clamp(15px, 1.15vw, 18px);
  color: var(--txt-faq-answer); margin-top: 20px; max-width: 572px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-footer); border-top: 1px solid #4c4c4c;
  padding: 30px 0;
}
.site-footer__inner {
  display: flex; align-items: center; justify-content: center; gap: 60px 100px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 22px; }
.footer-ig { display: flex; align-items: center; gap: 13px; }
.footer-ig svg { width: 26px; height: 26px; }
.footer-ig span { font-family: var(--ff-inter); font-weight: 500; font-size: 19px; color: #fff; }
.footer-diamond {
  width: 33px; height: 33px; transform: rotate(45deg);
  background: #0f3eb2; border-radius: 3px; display: grid; place-items: center;
}
.footer-diamond span { transform: rotate(-45deg); font-family: var(--ff-inter); font-weight: 500; font-size: 16px; color: #fff; }
.footer-loyola { font-family: var(--ff-outfit); font-weight: 700; letter-spacing: 2px; font-size: 22px; color: #fff; }
.footer-loyola-img { width: 155px; }
.footer-info { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.footer-info__block, .footer-legal { font-family: var(--ff-inter); font-weight: 400; font-size: 20px; color: var(--txt-offwhite); }
.footer-legal { max-width: 233px; }
.footer-top { display: flex; align-items: center; gap: 8px; }
.footer-top span { font-family: var(--ff-inter); font-size: 20px; color: var(--txt-offwhite); max-width: 90px; }
.footer-top a {
  background: #0f3eb2; border-radius: 13px; width: 40px; height: 44px;
  display: grid; place-items: center;
}
.footer-top a svg { width: 24px; height: 20px; }

/* ============================================================
   MODAL (form de captura)
   ============================================================ */
.form-modal {
  border: 0; padding: 0; background: transparent;
  max-width: 480px; width: 92vw;
  color: #fff;
}
.form-modal::backdrop { background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.form-modal__box {
  background: radial-gradient(120% 100% at 50% 0%, #0f3eb2 0%, #082573 55%, #000c34 100%);
  border: 2px solid #41416b; border-radius: 20px; padding: 34px 30px;
  position: relative;
}
.form-modal__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  background: rgba(255,255,255,0.12); border: 0; border-radius: 50%; color: #fff; font-size: 20px;
  display: grid; place-items: center;
}
.form-modal__title { font-family: var(--ff-outfit); font-weight: 700; font-size: 26px; margin: 0 0 6px; }
.form-modal__desc { font-family: var(--ff-inter); font-size: 15px; color: #cdd6f5; margin: 0 0 22px; }
#form-captura { display: flex; flex-direction: column; gap: 16px; }
#form-captura label { font-family: var(--ff-inter); font-size: 13px; color: #b9c4e8; margin-bottom: 6px; display: block; }
#form-captura input[type="text"],
#form-captura input[type="email"],
#form-captura input[type="tel"] {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06);
  color: #fff; font-family: var(--ff-inter); font-size: 16px;
}
#form-captura input::placeholder { color: #8b96bd; }
#form-captura input:focus { outline: 2px solid #4f7bff; border-color: transparent; }
.form-modal .cta-pill {
  justify-content: space-between;
  width: 100%;
  margin-top: 8px;
  padding-left: 34px;
  padding-right: 8px;
  gap: 0;
}


/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1280px) {
  .bio__grid { gap: 50px; }
  .garantia__inner { gap: 50px; }
}
@media (max-width: 1024px) {
  .container { padding-inline: 28px; }
  .dobra2__grid,
  .acessos__grid,
  .bio__grid,
  .faq__grid { grid-template-columns: 1fr; }
  .dobra2__media, .acessos__media { justify-content: center; }
  .acessos__grid { flex-direction: column-reverse; }
  .bio__grid { justify-items: center; text-align: left; }
  .bio__photo { width: min(567px, 100%); }
  .faq__grid { gap: 40px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 18px; }
  .site-header .logo { width: 210px; }
  .compare-cards { flex-direction: column; align-items: center; }
  .compare-card {
    width: 100%; max-width: 480px; border-radius: 20px;
    min-height: 0; height: fit-content; gap: 0; padding: 20px;
  }
  .btn-support { width: fit-content; padding: 7px 10px 7px 30px; }
  .progress-pill { height: 44px; }
  .progress-pill__fill { height: 35px; width: 55%; }
  .cta-pill { padding-left: 22px; font-size: 19px; }
  .cta-pill .cta-arrow { width: 46px; height: 46px; }
  .step__icon img { width: 25px; height: 16px; }
  .compare-card--bad { border-radius: 20px 20px 0 0; }
  .compare-card--good { border-radius: 0 0 20px 20px; }
  .compare-card:last-child { border-radius: 0 0 20px 20px; }
  .testi-card { flex-basis: min(100%, 80vw); }
  section { padding-top: 60px; padding-bottom: 60px; }
  .dobra2, .criterios, .comparativo, .acessos, .bio, .provas, .preco, .garantia, .faq { padding: 60px 0; }
  .faq-item__q { gap: 20px; }

  /* Imagens a 80% da largura */
  .acessos__media { min-height: 0; width: 100%; }
  .acessos__media img { width: 80%; max-width: none; }
  .bio__photo { width: 80%; max-width: none; }

  /* Logos institucionais: todos numa linha só */
  .logos-inst { flex-wrap: nowrap; gap: 14px; justify-content: space-between; }
  .logos-inst img { flex: 1 1 0; min-width: 0; max-width: 25%; object-fit: contain; }

  /* Carrossel sem gap (setas coladas no card) */
  .carousel { gap: 0; }

  /* Garantia: selo sem sobrar da faixa */
  .garantia__seal { margin-right: -30px; margin-top: -30px; min-height: 0; height: auto; }
  .garantia__text { gap: 20px; }

  /* Rodapé compacto */
  .site-footer__inner { gap: 24px; }
  .footer-info { gap: 20px; }
  .footer-loyola-img { width: 110px; }
  .footer-ig span { font-size: 16px; }
  .footer-info__block, .footer-legal { font-size: 15px; }
  .footer-legal { max-width: none; }
  .footer-top span { font-size: 15px; max-width: none; }
}
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
