/* =========================================================
   Império Digital - Landing Page FINAL
   Estilo: premium, moderno, mobile-first
   ========================================================= */

:root {
  --bg: #070b16;
  --bg-soft: #0a101f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-solid: #10172b;
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #f4f6ff;
  --text-muted: #a7b1d4;
  --primary: #7c5cff;
  --primary-2: #4d8dff;
  --accent: #ffc63d;
  --accent-deep: #ff9f1c;
  --teal: #22d3ee;
  --gradient: linear-gradient(135deg, #8b5cf6 0%, #4d8dff 100%);
  --gradient-gold: linear-gradient(135deg, #ffe08a 0%, #ffc63d 50%, #ff9f1c 100%);
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-glow: 0 18px 60px -22px rgba(124, 92, 255, 0.55);
  --shadow-gold: 0 18px 50px -14px rgba(255, 198, 61, 0.55);
  --font-display: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
}

/* =========================================================
   Tipografia
   ========================================================= */

h1, h2, h3, .brand__name {
  font-family: var(--font-display);
  line-height: 1.2;
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   Botões
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  will-change: transform;
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--cta {
  width: 100%;
  max-width: 480px;
  padding: 19px 32px;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  color: #221503;
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
  animation: pulse-cta 2.8s ease-in-out infinite;
}

.btn--cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 24px 60px -14px rgba(255, 198, 61, 0.72);
}

.btn--cta:active {
  transform: translateY(0) scale(0.99);
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 16px 44px -14px rgba(255, 198, 61, 0.55); }
  50% { box-shadow: 0 16px 54px -10px rgba(255, 198, 61, 0.8); }
}

.btn--primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* =========================================================
   Header
   ========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7, 11, 22, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 13px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--gradient-gold);
  box-shadow: 0 6px 20px -6px rgba(255, 198, 61, 0.6);
  flex-shrink: 0;
}

.brand__name {
  font-size: 1.1rem;
  font-weight: 600;
}

.brand__name strong {
  font-weight: 800;
  color: var(--accent);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 82px;
  text-align: center;
  background:
    radial-gradient(58% 50% at 50% 0%, rgba(124, 92, 255, 0.18) 0%, transparent 70%),
    var(--bg);
}

.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 100%);
  mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero__glow--one {
  width: 440px;
  height: 440px;
  top: -160px;
  left: -140px;
  background: rgba(124, 92, 255, 0.3);
}

.hero__glow--two {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -160px;
  background: rgba(255, 198, 61, 0.14);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero__badge {
  display: inline-block;
  padding: 9px 20px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffd98a;
  background: rgba(255, 198, 61, 0.1);
  border: 1px solid rgba(255, 198, 61, 0.35);
  border-radius: 999px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2rem, 7.5vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 820px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.7vw, 1.22rem);
  color: var(--text-muted);
  max-width: 660px;
}

.hero__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  text-align: left;
}

.hero__check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: #d7ddf3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__check-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #221503;
  background: var(--gradient-gold);
}

.hero__check-icon svg {
  width: 14px;
  height: 14px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 6px;
}

.hero__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.85;
}

/* =========================================================
   Seções
   ========================================================= */

.section {
  padding: 76px 0;
}

.section__title {
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.03rem;
  max-width: 660px;
  margin: 0 auto 42px;
}

/* =========================================================
   O que é (visão geral)
   ========================================================= */

.overview {
  background: var(--bg-soft);
}

.overview__inner {
  display: grid;
  gap: 44px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.overview__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
}

.overview__blob {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(70px);
  background: rgba(124, 92, 255, 0.3);
  pointer-events: none;
}

.overview__core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #221503;
  background: var(--gradient-gold);
  box-shadow: 0 26px 60px -20px rgba(255, 198, 61, 0.6);
  line-height: 1.4;
}

.overview__chip {
  position: absolute;
  z-index: 2;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #e7e2ff;
  background: var(--surface-solid);
  border: 1px solid rgba(124, 92, 255, 0.4);
  border-radius: 999px;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.overview__chip--a { top: 0; left: 0; }
.overview__chip--b { top: 16px; right: 0; }
.overview__chip--c { bottom: 18px; left: 4%; }
.overview__chip--d { bottom: 0; right: 10%; }
.overview__chip--e { top: 46%; left: -6%; }

.overview__list {
  display: grid;
  gap: 14px;
}

.overview__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.overview__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  padding-top: 2px;
}

.overview__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.overview__item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================================
   O que você encontra na oferta?
   ========================================================= */

.offerlist {
  background: var(--bg-soft);
}

.offerlist__grid {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.offerlist__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.offerlist__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  padding-top: 2px;
}

.offerlist__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.offerlist__item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .offerlist__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   Mentoria
   ========================================================= */

.mentorship {
  background: var(--bg);
  overflow: hidden;
}

.mentorship__inner {
  display: grid;
  gap: 44px;
  align-items: center;
}

.mentorship__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.mentorship__text {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

.mentorship__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px 0;
}

.mentorship__blob {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(255, 198, 61, 0.18);
  pointer-events: none;
}

.mentorship__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(300px, 100%);
  padding: 48px 30px;
  background: linear-gradient(165deg, #141b33 0%, #0d1324 100%);
  border: 1px solid rgba(255, 198, 61, 0.3);
  border-radius: 26px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.85);
  transform: rotate(-2deg);
  text-align: center;
}

.mentorship__period {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.mentorship__label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* =========================================================
   Treinamento gravado
   ========================================================= */

.training {
  background: var(--bg-soft);
  overflow: hidden;
}

.training__inner {
  display: grid;
  gap: 44px;
  align-items: center;
}

.training__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px 0;
}

.training__blob {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(77, 141, 255, 0.28);
  pointer-events: none;
}

.training__player {
  position: relative;
  width: min(300px, 100%);
  background: linear-gradient(165deg, #141b33 0%, #0d1324 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.85);
  transform: rotate(2deg);
}

.training__player-top {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.training__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.training__play {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #221503;
  background: var(--gradient-gold);
  box-shadow: 0 14px 34px -12px rgba(255, 198, 61, 0.6);
}

.training__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.training__tag {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.training__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.training__text {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

/* =========================================================
   O que é abordado (3 cards)
   ========================================================= */

.topics {
  background: var(--bg);
}

.topics__grid {
  display: grid;
  gap: 16px;
}

.topic {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.topic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee, #4d8dff);
  opacity: 0.9;
}

.topic:nth-child(2)::before { background: linear-gradient(90deg, #ffc63d, #ff9f1c); }
.topic:nth-child(3)::before { background: linear-gradient(90deg, #f472b6, #8b5cf6); }
.topic:nth-child(4)::before { background: linear-gradient(90deg, #34d399, #22d3ee); }
.topic:nth-child(5)::before { background: linear-gradient(90deg, #8b5cf6, #4d8dff); }
.topic:nth-child(6)::before { background: linear-gradient(90deg, #ff9f1c, #f472b6); }

.topic:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 50px -26px rgba(0, 0, 0, 0.7);
}

.topic__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #22d3ee, #4d8dff);
  box-shadow: 0 12px 30px -12px rgba(34, 211, 238, 0.7);
}

.topic:nth-child(2) .topic__icon {
  background: linear-gradient(135deg, #ffc63d, #ff9f1c);
  color: #221503;
  box-shadow: 0 12px 30px -12px rgba(255, 198, 61, 0.7);
}

.topic:nth-child(3) .topic__icon {
  background: linear-gradient(135deg, #f472b6, #8b5cf6);
  box-shadow: 0 12px 30px -12px rgba(244, 114, 182, 0.7);
}

.topic:nth-child(4) .topic__icon {
  background: linear-gradient(135deg, #34d399, #22d3ee);
  box-shadow: 0 12px 30px -12px rgba(34, 211, 238, 0.7);
}

.topic:nth-child(5) .topic__icon {
  background: linear-gradient(135deg, #8b5cf6, #4d8dff);
  box-shadow: 0 12px 30px -12px rgba(124, 92, 255, 0.7);
}

.topic:nth-child(6) .topic__icon {
  background: linear-gradient(135deg, #ff9f1c, #f472b6);
  color: #221503;
  box-shadow: 0 12px 30px -12px rgba(255, 159, 28, 0.7);
}

.topic__icon svg {
  width: 26px;
  height: 26px;
}

.topic__title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.topic__text {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* =========================================================
   Estrutura para afiliados
   ========================================================= */

.affiliates {
  background: var(--bg-soft);
}

.affiliates__grid {
  display: grid;
  gap: 16px;
}

.affiliate {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.affiliate:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, 0.5);
  box-shadow: 0 26px 50px -26px rgba(124, 92, 255, 0.45);
}

.affiliate__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--gradient);
  box-shadow: var(--shadow-glow);
}

.affiliate__icon svg {
  width: 24px;
  height: 24px;
}

.affiliate__title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.affiliate__text {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* =========================================================
   Para quem é
   ========================================================= */

.audience {
  background: var(--bg);
}

.audience__grid {
  display: grid;
  gap: 14px;
}

.audience__card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.audience__card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 198, 61, 0.5);
  box-shadow: 0 26px 50px -26px rgba(255, 198, 61, 0.4);
}

.audience__title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.audience__text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================================
   Suporte
   ========================================================= */

.support {
  background: var(--bg-soft);
}

.support__inner {
  display: grid;
  gap: 32px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.support__visual {
  display: grid;
  place-items: center;
}

.support__icon {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6 0%, #4d8dff 100%);
  box-shadow: var(--shadow-glow);
  transform: rotate(-4deg);
}

.support__icon::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 46px;
  border: 1px solid rgba(124, 92, 255, 0.25);
}

.support__icon svg {
  width: 54px;
  height: 54px;
}

.support__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.support__text {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

/* =========================================================
   Garantia
   ========================================================= */

.guarantee {
  background: var(--bg);
}

.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.guarantee__badge {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #221503;
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}

.guarantee__badge svg {
  width: 36px;
  height: 36px;
}

.guarantee__text {
  color: var(--text-muted);
  font-size: 1rem;
}

/* =========================================================
   Resumo da oferta
   ========================================================= */

.summary {
  background: var(--bg-soft);
}

.summary__list {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.summary__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
}

.summary__check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #221503;
  background: var(--gradient-gold);
}

.summary__check svg {
  width: 14px;
  height: 14px;
}

/* =========================================================
   CTA de decisão
   ========================================================= */

.decision {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(60% 70% at 50% 20%, rgba(124, 92, 255, 0.24) 0%, transparent 70%),
    radial-gradient(50% 50% at 85% 90%, rgba(255, 198, 61, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.decision__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.decision__title {
  font-size: clamp(1.7rem, 5.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 680px;
}

.decision__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
}

.decision__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.85;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  background: var(--bg-soft);
}

.faq__container {
  max-width: 760px;
}

.faq__list {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.faq__item {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq__item.is-open {
  border-color: rgba(124, 92, 255, 0.45);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.15);
  border: 1px solid rgba(124, 92, 255, 0.4);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer p {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================================
   CTA final
   ========================================================= */

.final {
  padding: 92px 0;
  background:
    radial-gradient(55% 60% at 50% 30%, rgba(255, 198, 61, 0.13) 0%, transparent 70%),
    var(--bg);
}

.final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.final__title {
  font-size: clamp(1.8rem, 5.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 680px;
}

.final__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.final__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.85;
}

/* =========================================================
   Rodapé
   ========================================================= */

.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  padding: 44px 0 100px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__disclaimer {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 560px;
}

.footer__copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* =========================================================
   Barra fixa de CTA (mobile)
   ========================================================= */

.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: #221503;
  background: var(--gradient-gold);
  box-shadow: 0 18px 50px -14px rgba(255, 198, 61, 0.65);
  transform: translateY(130%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.mobile-bar.is-visible {
  transform: translateY(0);
}

.mobile-bar__label {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mobile-bar__arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
}

.mobile-bar__arrow svg {
  width: 15px;
  height: 15px;
}

/* =========================================================
   Animações de entrada
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn--cta {
    animation: none;
  }
  .mobile-bar {
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   Responsivo
   ========================================================= */

@media (min-width: 640px) {
  .hero__checks {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 660px;
  }
  .hero__check {
    flex: 1 1 200px;
    max-width: 220px;
  }
  .topics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .affiliates__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .section {
    padding: 100px 0;
  }
  .overview__inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .mentorship__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
  .training__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
  }
  .affiliates__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .audience__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .support__inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    text-align: left;
  }
  .support__content {
    align-items: flex-start;
    text-align: left;
  }
  .footer {
    padding-bottom: 44px;
  }
  .mobile-bar {
    display: none;
  }
}
