:root {
  --ink: #221427;
  --muted: #6f6074;
  --purple-950: #1c062d;
  --purple-900: #28083f;
  --purple-700: #552371;
  --purple-500: #784292;
  --rose: #e8c9c9;
  --rose-deep: #96536f;
  --cream: #f7f1ed;
  --paper: #fffaf7;
  --line: rgba(85, 35, 113, 0.16);
  --shadow: 0 28px 70px rgba(28, 6, 45, 0.16);
  --radius: 28px;
  --sans: "Manrope", "Nohemi", "PP Telegraf", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(232, 201, 201, 0.74), transparent 28rem),
    radial-gradient(circle at 94% 18%, rgba(120, 66, 146, 0.12), transparent 30rem),
    linear-gradient(180deg, #fffaf7 0%, #f8f0ec 42%, #fffaf7 100%);
  font-family: var(--sans);
  overflow-x: hidden;
}

.is-loading body {
  overflow: hidden;
}

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  color: var(--purple-700);
  background:
    radial-gradient(circle at 8% 4%, rgba(232, 201, 201, 0.64), transparent 28rem),
    radial-gradient(circle at 94% 18%, rgba(120, 66, 146, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(255, 250, 247, 0.94) 0%, rgba(248, 240, 236, 0.94) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.72s ease, visibility 0.72s ease;
}

.is-loading .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-cell {
  position: relative;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.loader-cell::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(232, 201, 201, 0.16) 0 34%, transparent 35%),
    conic-gradient(from 90deg, rgba(85, 35, 113, 0), rgba(85, 35, 113, 0.18), rgba(232, 201, 201, 0.36), rgba(85, 35, 113, 0));
  filter: blur(0.3px);
  animation: softCell 3.2s ease-in-out infinite;
}

.loader-cell::after {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  background: rgba(232, 201, 201, 0.12);
  box-shadow: inset 0 0 0 1px rgba(85, 35, 113, 0.08);
}

.loader-cell img {
  position: relative;
  z-index: 3;
  width: 78px;
  transform-origin: center;
  animation: axisTurn 2.4s linear infinite;
}

.cell-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(85, 35, 113, 0.18);
  border-radius: 50%;
  animation: loaderOrbit 4.8s linear infinite;
}

.ring-two {
  inset: 22px;
  border-color: rgba(150, 83, 111, 0.2);
  animation-duration: 6.4s;
  animation-direction: reverse;
}

.page-loader p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(85, 35, 113, 0.1);
}

.brand img {
  width: 174px;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--purple-700);
}

.nav-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--purple-700);
  font-weight: 800;
}

.section-pad {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  overflow: hidden;
  padding-top: clamp(54px, 7vw, 98px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.hero > *,
.split > *,
.belief > *,
.authority > *,
.cta > *,
.system-card > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 8.4rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 5.4rem);
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions,
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-500));
  box-shadow: 0 18px 38px rgba(85, 35, 113, 0.22);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--purple-700);
  background: rgba(255, 255, 255, 0.42);
}

.button.large {
  min-height: 58px;
  padding-inline: 28px;
}

.trust-line {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-line span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.portrait-card {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  border-radius: 44px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.portrait-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 34px;
}

.floating-badge {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: min(250px, 62%);
  padding: 18px;
  border-radius: 22px;
  color: white;
  background: rgba(40, 8, 63, 0.88);
  box-shadow: 0 24px 58px rgba(28, 6, 45, 0.28);
  backdrop-filter: blur(18px);
}

.floating-badge strong,
.floating-badge span {
  display: block;
}

.floating-badge strong {
  font-size: 0.94rem;
  margin-bottom: 6px;
}

.floating-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.brand-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 590px;
  height: 590px;
  margin-left: -295px;
  margin-top: -295px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6) 0 42%, transparent 43%),
    radial-gradient(circle at 50% 50%, rgba(232, 201, 201, 0.22) 0 56%, transparent 57%),
    conic-gradient(from 145deg, rgba(85, 35, 113, 0), rgba(85, 35, 113, 0.12), rgba(232, 201, 201, 0.2), rgba(85, 35, 113, 0));
  filter: blur(0.4px);
  opacity: 0.46;
  animation: spin 24s linear infinite;
}

.intro-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 34px;
  color: white;
  background:
    linear-gradient(135deg, rgba(40, 8, 63, 0.94), rgba(120, 66, 146, 0.92)),
    url("assets/logo/Prancheta 1.png") right 9% center / 190px no-repeat;
  box-shadow: var(--shadow);
}

.intro-strip p {
  margin: 0;
  max-width: 830px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.split,
.authority,
.belief,
.cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.section-heading {
  max-width: 720px;
}

.section-heading.center {
  margin: 0 auto 44px;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card,
.proof-grid article,
.timeline article,
.faq details,
.system-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 55px rgba(40, 8, 63, 0.07);
}

.info-card {
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius);
}

.info-card span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: white;
  background: var(--purple-700);
  font-weight: 900;
}

.info-card p,
.proof-grid p,
.timeline p,
.belief-copy p,
.authority-copy p,
.system-card p,
.cta p,
.faq p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.belief {
  background: var(--purple-950);
  color: white;
}

.belief-photo img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  object-position: center;
  border-radius: 42px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.24);
}

.belief-copy p,
.belief-copy li {
  color: rgba(255, 255, 255, 0.74);
}

.check-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose);
}

.method {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(232, 201, 201, 0.46), transparent 36rem),
    var(--paper);
}

.method::before,
.authority::before,
.faq::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 6%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 29%, transparent 30%),
    conic-gradient(from 120deg, rgba(85, 35, 113, 0), rgba(85, 35, 113, 0.12), rgba(232, 201, 201, 0.24), rgba(85, 35, 113, 0));
  opacity: 0.38;
  pointer-events: none;
}

.section-focus::before {
  animation: focusBloom 1.25s ease-out;
}

.fertility-path {
  position: relative;
  width: min(840px, 100%);
  height: 112px;
  margin: 0 auto 34px;
}

.path-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 54px;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(85, 35, 113, 0.3), rgba(150, 83, 111, 0.32), transparent),
    repeating-linear-gradient(90deg, transparent 0 64px, rgba(85, 35, 113, 0.12) 64px 66px, transparent 66px 130px);
}

.path-node {
  position: absolute;
  top: 26px;
  width: 58px;
  height: 58px;
  --dot-size: 12px;
  --dot-opacity: 0.42;
  --dot-glow: rgba(232, 201, 201, 0.18);
  border: 1px solid rgba(85, 35, 113, 0.11);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 244, 239, 0.62) 0 18%, rgba(232, 201, 201, 0.12) 19% 44%, transparent 45% 100%);
  box-shadow: 0 18px 36px rgba(40, 8, 63, 0.04);
  overflow: visible;
}

.path-node::before,
.path-node::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.node-cell {
  left: 8%;
  --dot-size: 9px;
  --dot-opacity: 0.36;
  --dot-glow: rgba(232, 201, 201, 0.12);
}

.node-cell::before {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff9f6, rgba(232, 201, 201, 0.74) 42%, rgba(85, 35, 113, 0.36) 100%);
  opacity: var(--dot-opacity);
  box-shadow: 0 0 18px var(--dot-glow);
  transform: translate(-50%, -50%);
}

.node-cell::after {
  width: calc(var(--dot-size) * 3.1);
  height: calc(var(--dot-size) * 3.1);
  border-radius: 50%;
  background: radial-gradient(circle, var(--dot-glow), transparent 70%);
  opacity: 0.5;
}

.node-divide {
  left: 34%;
  --dot-size: 13px;
  --dot-opacity: 0.54;
  --dot-glow: rgba(232, 201, 201, 0.2);
}

.node-divide::before {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff9f6, rgba(232, 201, 201, 0.82) 42%, rgba(85, 35, 113, 0.46) 100%);
  opacity: var(--dot-opacity);
  box-shadow: 0 0 22px var(--dot-glow);
}

.node-divide::after {
  width: calc(var(--dot-size) * 3.1);
  height: calc(var(--dot-size) * 3.1);
  border-radius: 50%;
  background: radial-gradient(circle, var(--dot-glow), transparent 70%);
  opacity: 0.58;
}

.node-growth {
  left: 60%;
  --dot-size: 17px;
  --dot-opacity: 0.72;
  --dot-glow: rgba(232, 201, 201, 0.28);
}

.node-growth::before {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff9f6, rgba(232, 201, 201, 0.9) 38%, rgba(85, 35, 113, 0.58) 100%);
  opacity: var(--dot-opacity);
  box-shadow: 0 0 26px var(--dot-glow);
}

.node-growth::after {
  width: calc(var(--dot-size) * 3.1);
  height: calc(var(--dot-size) * 3.1);
  border-radius: 50%;
  background: radial-gradient(circle, var(--dot-glow), transparent 70%);
  opacity: 0.66;
}

.node-birth {
  left: auto;
  right: 8%;
  border-color: rgba(232, 201, 201, 0.68);
  --dot-size: 23px;
  --dot-opacity: 0.92;
  --dot-glow: rgba(255, 218, 218, 0.38);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 244, 239, 0.76) 0 20%, rgba(232, 201, 201, 0.18) 21% 48%, transparent 49% 100%);
}

.node-birth::before {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff9f6, rgba(232, 201, 201, 0.96) 36%, rgba(85, 35, 113, 0.72) 100%);
  opacity: var(--dot-opacity);
  box-shadow: 0 0 34px var(--dot-glow);
}

.node-birth::after {
  width: calc(var(--dot-size) * 3.2);
  height: calc(var(--dot-size) * 3.2);
  border-radius: 50%;
  background: radial-gradient(circle, var(--dot-glow), transparent 70%);
  opacity: 0.72;
}

.fertility-path.is-visible .path-node {
  animation: cellRise 1.4s ease both;
}

.fertility-path.is-visible .node-divide {
  animation-delay: 0.1s;
}

.fertility-path.is-visible .node-growth {
  animation-delay: 0.2s;
}

.fertility-path.is-visible .node-birth {
  animation-delay: 0.3s;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  padding: 28px;
  border-radius: var(--radius);
}

.timeline span {
  margin-bottom: 58px;
  background: var(--rose-deep);
}

.authority-stack {
  position: relative;
  min-height: 620px;
}

.authority {
  position: relative;
  overflow: hidden;
}

.authority::before {
  inset: auto 5% 8% auto;
  opacity: 0.2;
}

.section-emblem {
  position: absolute;
  left: 45%;
  top: 18%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  opacity: 0.34;
  pointer-events: none;
}

.section-emblem::before {
  content: "";
  position: absolute;
  inset: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff9f6, rgba(232, 201, 201, 0.84) 40%, rgba(85, 35, 113, 0.52) 100%);
  opacity: 0.72;
  box-shadow: 0 0 34px rgba(232, 201, 201, 0.28);
}

.section-emblem span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(85, 35, 113, 0.2);
}

.section-emblem span:nth-child(1) {
  inset: 0;
  background: conic-gradient(from 40deg, transparent, rgba(85, 35, 113, 0.06), transparent 54%);
  animation: loaderOrbit 14s linear infinite;
}

.section-emblem span:nth-child(2) {
  inset: 38px;
  background:
    radial-gradient(circle at 50% 50%, rgba(85, 35, 113, 0.04) 0 8%, transparent 9%),
    rgba(232, 201, 201, 0.06);
}

.section-emblem span:nth-child(3) {
  left: 102px;
  top: 94px;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff9f6, rgba(232, 201, 201, 0.78) 42%, rgba(85, 35, 113, 0.46) 100%);
  opacity: 0.62;
}

.stack-main,
.stack-mini {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stack-main {
  right: 0;
  top: 0;
  width: 70%;
  height: 560px;
  border-radius: 42px;
}

.stack-mini {
  left: 0;
  bottom: 0;
  width: 46%;
  height: 340px;
  border: 12px solid var(--paper);
  border-radius: 34px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat-grid div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(85, 35, 113, 0.08);
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: var(--purple-700);
  font-size: 1.4rem;
}

.stat-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.proof-grid article {
  padding: 30px;
  border-radius: var(--radius);
}

.visual-system {
  padding-top: 28px;
}

.system-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  padding: clamp(28px, 5vw, 60px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 8% 0%, rgba(232, 201, 201, 0.56), transparent 18rem),
    rgba(255, 255, 255, 0.62);
}

.system-card img {
  width: 260px;
  margin: auto;
}

.faq {
  position: relative;
  overflow: hidden;
  background: var(--purple-950);
  color: white;
}

.faq::before {
  inset: 12% 10% auto auto;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 30%, transparent 31%),
    conic-gradient(from 90deg, rgba(255, 255, 255, 0), rgba(232, 201, 201, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.46;
}

.faq .eyebrow,
.belief .eyebrow {
  color: var(--rose);
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.answer-map {
  position: relative;
  width: min(520px, 100%);
  height: 82px;
  margin: -20px auto 28px;
}

.answer-map::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 40px;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent),
    repeating-linear-gradient(90deg, transparent 0 82px, rgba(232, 201, 201, 0.16) 82px 84px, transparent 84px 160px);
}

.answer-map span {
  position: absolute;
  top: 17px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  --dot-size: 10px;
  --dot-opacity: 0.38;
  --dot-glow: rgba(232, 201, 201, 0.16);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: transparent;
  font-weight: 900;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 244, 239, 0.12) 0 22%, rgba(232, 201, 201, 0.06) 23% 48%, transparent 49% 100%);
}

.answer-map span:nth-child(1) {
  left: 8%;
  --dot-size: 8px;
  --dot-opacity: 0.32;
  --dot-glow: rgba(232, 201, 201, 0.1);
}

.answer-map span:nth-child(2) {
  left: 36%;
  --dot-size: 11px;
  --dot-opacity: 0.5;
  --dot-glow: rgba(232, 201, 201, 0.18);
}

.answer-map span:nth-child(3) {
  left: 62%;
  --dot-size: 15px;
  --dot-opacity: 0.68;
  --dot-glow: rgba(232, 201, 201, 0.26);
}

.answer-map span:nth-child(4) {
  right: 8%;
  --dot-size: 20px;
  --dot-opacity: 0.9;
  --dot-glow: rgba(255, 218, 218, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 244, 239, 0.2) 0 26%, rgba(232, 201, 201, 0.08) 27% 54%, transparent 55% 100%);
}

.answer-map span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #fff9f6, rgba(232, 201, 201, 0.92) 40%, rgba(85, 35, 113, 0.64) 100%);
  opacity: var(--dot-opacity);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 26px var(--dot-glow);
}

.answer-map span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--dot-size) * 3.1);
  height: calc(var(--dot-size) * 3.1);
  border-radius: 50%;
  background: radial-gradient(circle, var(--dot-glow), transparent 70%);
  opacity: 0.62;
  transform: translate(-50%, -50%);
}

.faq details {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
}

.faq details p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.7);
}

.cta {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(58px, 8vw, 98px) auto;
  padding: clamp(34px, 6vw, 68px);
  border-radius: 44px;
  color: white;
  background:
    linear-gradient(135deg, rgba(40, 8, 63, 0.96), rgba(85, 35, 113, 0.92)),
    url("assets/doctor/IMG-34.JPG") right bottom / auto 100% no-repeat;
  box-shadow: var(--shadow);
}

.cta-action {
  justify-self: end;
  width: min(360px, 100%);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.completion-mark {
  position: relative;
  width: 132px;
  height: 132px;
  --completion-speed: 3.6s;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 244, 239, 0.2) 0 29%, transparent 30% 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 54%, transparent 55% 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 18px 46px rgba(28, 6, 45, 0.18);
}

.mark-open,
.mark-complete,
.completion-piece {
  position: absolute;
}

.mark-open {
  content: "";
  width: 54px;
  height: 54px;
  inset: auto;
  z-index: 2;
  background: rgba(255, 244, 239, 0.28);
  -webkit-mask: url("assets/logo/simbolo-raphael-fechamento.png") center / contain no-repeat;
  mask: url("assets/logo/simbolo-raphael-fechamento.png") center / contain no-repeat;
  clip-path: inset(0 30% 0 0);
  filter: drop-shadow(0 0 12px rgba(232, 201, 201, 0.1));
  opacity: 0.26;
  transform-origin: center;
}

.completion-mark::before,
.completion-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.completion-mark::before {
  inset: 13px;
  border: 1px solid rgba(232, 201, 201, 0.2);
}

.completion-mark::after {
  inset: 34px;
  background: radial-gradient(circle, rgba(255, 244, 239, 0.24), rgba(255, 244, 239, 0.08) 52%, transparent 72%);
  box-shadow: inset 0 0 0 1px rgba(232, 201, 201, 0.08);
}

.completion-piece {
  z-index: 3;
  width: 54px;
  height: 54px;
  inset: auto;
  object-fit: contain;
  clip-path: inset(0 0 0 58%);
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 244, 239, 0.18));
  opacity: 0;
  transform-origin: center;
  transform: translate(14px, -10px) rotate(10deg) scale(0.82);
}

.completion-piece::after {
  display: none;
}

.mark-complete {
  z-index: 4;
  width: 54px;
  height: 54px;
  inset: auto;
  overflow: visible;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255, 244, 239, 0.2));
  opacity: 0;
  transform-origin: center;
  transform: rotate(-8deg) scale(0.82);
}

.cta.is-visible .mark-open {
  animation: openMarkYield var(--completion-speed) cubic-bezier(0.5, 0, 0.16, 1) both;
}

.cta.is-visible .completion-piece {
  animation: closePieceDock var(--completion-speed) cubic-bezier(0.5, 0, 0.16, 1) both;
}

.cta.is-visible .mark-complete {
  animation: closedSymbolSpin var(--completion-speed) cubic-bezier(0.5, 0, 0.12, 1) both;
}

.cta p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
}

.cta-action p {
  margin: 0;
  max-width: 320px;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 36px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 170px;
}

.footer p {
  max-width: 760px;
  margin: 0;
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@keyframes axisTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes softCell {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes loaderOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cellRise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.82);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes keyPieceDock {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(46px, -34px) rotate(18deg) scale(0.68);
  }
  18% {
    opacity: 0.72;
  }
  48% {
    opacity: 0.92;
    transform: translate(-50%, -50%) translate(16px, -10px) rotate(5deg) scale(0.88);
  }
  68% {
    opacity: 1;
    transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(1);
  }
  86%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.96);
  }
}

@keyframes closePieceDock {
  0% {
    opacity: 0;
    transform: translate(24px, -18px) rotate(-90deg) scale(0.68);
  }
  28% {
    opacity: 0.72;
  }
  58% {
    opacity: 0.96;
    transform: translate(8px, -5px) rotate(60deg) scale(0.92);
  }
  76% {
    opacity: 0.72;
    transform: translate(0, 0) rotate(160deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0) rotate(220deg) scale(0.92);
  }
}

@keyframes openMarkYield {
  0% {
    opacity: 0.24;
    transform: rotate(-10deg) scale(0.82);
    clip-path: inset(0 30% 0 0);
  }
  48% {
    opacity: 0.38;
    transform: rotate(0deg) scale(0.99);
    clip-path: inset(0 22% 0 0);
  }
  76% {
    opacity: 0.24;
    transform: rotate(0deg) scale(1);
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    transform: rotate(0deg) scale(1);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes completeMarkReveal {
  0% {
    opacity: 0;
    transform: rotate(-10deg) scale(0.74);
  }
  62% {
    opacity: 0;
    transform: rotate(-2deg) scale(0.95);
  }
  82% {
    opacity: 1;
    transform: rotate(0deg) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes closedSymbolSpin {
  0%,
  58% {
    opacity: 0;
    transform: rotate(-220deg) scale(0.56);
  }
  70% {
    opacity: 0.52;
    transform: rotate(-96deg) scale(0.84);
  }
  84% {
    opacity: 1;
    transform: rotate(18deg) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes focusBloom {
  0% {
    transform: scale(0.72);
    opacity: 0.12;
  }
  45% {
    transform: scale(1.08);
    opacity: 0.48;
  }
  100% {
    transform: scale(1);
    opacity: 0.28;
  }
}

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

  .page-loader {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .split,
  .belief,
  .authority,
  .cta,
  .system-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
    padding-top: 58px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .timeline,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authority-stack {
    min-height: 540px;
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    gap: 14px;
    padding: 14px 18px;
  }

  .brand img {
    width: 112px;
  }

  .nav-cta {
    display: none;
  }

  .hide-mobile {
    display: none;
  }

  .section-pad {
    padding: 64px 18px;
  }

  .hero {
    gap: 32px;
    padding-top: 54px;
    justify-items: start;
  }

  .hero-copy,
  .hero-actions,
  .hero-visual,
  .lead,
  .eyebrow,
  h1 {
    max-width: calc(100vw - 36px);
  }

  .hero-copy,
  .hero-visual {
    width: calc(100vw - 36px);
    justify-self: start;
  }

  .intro-strip {
    width: min(320px, calc(100vw - 56px));
    max-width: min(320px, calc(100vw - 56px));
    margin-left: 20px;
    margin-right: 20px;
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.48rem, 11vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  h2 {
    max-width: calc(100vw - 36px);
    font-size: clamp(1.62rem, 7vw, 2rem);
    line-height: 1.03;
    overflow-wrap: break-word;
    text-wrap: wrap;
  }

  .section-heading,
  .belief-copy,
  .authority-copy,
  .cards-grid,
  .info-card,
  .timeline,
  .timeline article,
  .proof-grid,
  .proof-grid article,
  .system-card,
  .faq-list {
    width: min(320px, calc(100vw - 56px));
    max-width: min(320px, calc(100vw - 56px));
  }

  .lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: calc(100vw - 52px);
    max-width: 338px;
  }

  .hero-visual {
    place-items: start;
    min-height: 440px;
  }

  .portrait-card {
    width: min(calc(100vw - 52px), 338px);
    transform: none;
  }

  .floating-badge {
    right: auto;
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 16px;
  }

  .brand-orbit {
    width: 410px;
    height: 410px;
    margin-left: -205px;
    margin-top: -205px;
  }

  .cards-grid,
  .timeline,
  .proof-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .fertility-path {
    height: 92px;
    margin-bottom: 24px;
  }

  .path-line {
    left: 4%;
    right: 4%;
  }

  .node-cell {
    left: 2%;
  }

  .node-divide {
    left: 31%;
  }

  .node-growth {
    left: 59%;
  }

  .node-birth {
    right: 2%;
  }

  .section-emblem {
    display: none;
  }

  .answer-map {
    height: 68px;
    margin-top: -10px;
  }

  .authority-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .stack-main,
  .stack-mini {
    position: static;
    width: 100%;
    height: auto;
  }

  .stack-mini {
    border: 0;
  }

  .cta {
    width: calc(100% - 28px);
    background: linear-gradient(135deg, rgba(40, 8, 63, 0.97), rgba(85, 35, 113, 0.95));
  }

  .cta-action {
    justify-self: start;
    width: min(320px, 100%);
    justify-items: start;
    text-align: left;
  }

  .completion-mark {
    width: 112px;
    height: 112px;
  }

  .completion-mark::before {
    inset: 12px;
  }

  .mark-open {
    width: 46px;
    height: 46px;
  }

  .mark-complete {
    width: 46px;
    height: 46px;
  }

  .completion-piece {
    display: block;
    width: 46px;
    height: 46px;
  }

  .footer {
    display: grid;
  }
}
