:root {
  /* ================= CORES DA MARCA ================= */
  --azul-marca: #1E3D8E;       /* AZUL MARCA */

  /* ================= CORES DO SITE ================= */
  --gold: #a2641e;
  --ink: #244f49;
  --muted: #1c3e3a;
  --line: #b77932;
  --paper: #f4f7f6;
  --button: #26584f;
  --button-hover: #1f4943;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ═══ REUSABLE COMPONENTS ═══ */

.section-heading {
  margin: 0;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.00;
  letter-spacing: -0.6px;
}

.section-heading span {
  color: var(--gold);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 42px;
}

.section-eyebrow p {
  margin: 0;
  font-size: clamp(0.78rem, 0.95vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-eyebrow-line {
  position: relative;
  display: block;
  width: 92px;
  height: 1px;
  background: var(--line);
}

.section-eyebrow-line::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  content: "";
  transform: translateY(-50%);
}

/* Título de seção no estilo eyebrow (fonte pequena de cima, um pouco maior) */
.section-eyebrow h2.section-heading--eyebrow {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.icon-svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.practice-list-offset {
  margin-top: 44px;
}

/* ═══ HERO ═══ */

.hero {
  position: relative;
  height: min(100svh, 750px);
  max-height: 750px;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: none;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(80px, 1fr);
  align-items: center;
  width: min(100% - 92px, 1500px);
  margin: 0 auto;
  padding: 34px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
  transition: color 0.3s ease;
}

.brand:hover .brand-mark {
  color: var(--line);
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover .brand-mark svg {
  transform: scale(1.06) rotate(8deg);
}

.location svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
  white-space: nowrap;
}

.brand-name,
.brand-role,
.brand-separator {
  color: inherit;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name {
  display: inline-flex;
  align-items: center;
}

.brand-separator {
  color: var(--line);
  letter-spacing: 0;
}

.brand-name svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
  color: var(--ink);
  transition: color 0.3s ease;
}

.brand:hover .brand-name svg {
  color: var(--line);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4vw, 68px);
  color: #2d3940;
  font-size: 1.08rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: transparent;
  content: "";
}

.main-nav a.active {
  color: var(--ink);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  background: var(--line);
}

.brand-role {
  color: var(--ink);
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(48vw, 720px);
  margin-left: clamp(48px, 7vw, 128px);
  padding-top: clamp(46px, 6.6vh, 72px);
  padding-bottom: 44px;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 55px);
  font-weight: 300;
  line-height: 1.00;
  letter-spacing: -0.6px;
}

.title-rule {
  display: block;
  width: 76px;
  height: 4px;
  margin: 22px 0 22px;
  background: var(--line);
}

.hero-copy {
  max-width: 575px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.18vw, 1.18rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 32px;
  font-size: clamp(0.95rem, 1.1vw, 1.12rem);
  font-weight: 500;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button.primary {
  min-width: 330px;
  background: var(--button);
  color: #fff;
}

.button.primary:hover {
  background: var(--button-hover);
}

.button.secondary {
  min-width: 290px;
  border: 1px solid var(--line);
  color: #a46222;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.button.secondary:hover {
  border-color: #995a1f;
  color: #844a18;
  background: rgba(255, 255, 255, 0.46);
}

.location {
  display: flex;
  max-width: 570px;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.1vw, 1.12rem);
  line-height: 1.4;
}

.location svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  stroke-width: 1.7;
}


/* ═══ SIGNALS ═══ */

.signals-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 76% 22%,
      rgba(147, 168, 190, 0.2),
      transparent 32%
    ),
    linear-gradient(180deg, #f6f8fb 0%, #eef4f8 100%);
  color: #183c38;
  content-visibility: auto;
  contain-intrinsic-size: auto 1200px;
}

.signals-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 96px, 1420px);
  margin: 0 auto;
  padding: clamp(70px, 7vw, 112px) 0 clamp(54px, 5.4vw, 78px);
}

.signals-top-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.signals-waves {
  position: absolute;
  z-index: 0;
  fill: none;
  stroke: rgba(81, 119, 145, 0.26);
  stroke-linecap: round;
  stroke-width: 1.05;
  pointer-events: none;
}

.signals-waves-bottom {
  bottom: clamp(220px, 19vw, 320px);
  left: clamp(-150px, -7vw, -70px);
  width: min(48vw, 680px);
  opacity: 0.4;
}

.signals-top-ornament {
  position: absolute;
  top: 40px;
  left: 8px;
  width: 1px;
  height: 48px;
  background: var(--line);
}

.signals-top-ornament::after {
  position: absolute;
  right: -4px;
  bottom: -12px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--line);
  border-radius: 50%;
  content: "";
}

.signals-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: 44px;
}

.signals-copy h2 {
  max-width: 760px;
}

.section-rule {
  position: relative;
  display: block;
  width: 132px;
  height: 1px;
  margin: 28px 0;
  background: var(--line);
}

.section-rule::before {
  position: absolute;
  top: 50%;
  left: 62px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #f5f8fb;
  content: "";
  transform: translateY(-50%);
}

.signals-copy p {
  max-width: 710px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.22vw, 1.2rem);
  line-height: 1.48;
}

.signals-copy p + p {
  margin-top: 24px;
}

.signals-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 28px;
  padding-left: 20px;
  border-left: 2px solid var(--line);
}

.signals-examples p {
  margin: 0;
  max-width: none;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.5;
  color: var(--ink);
}

.signals-symbol {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 660px;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signals-symbol-mobile {
  display: none;
}

/* Fade nas 4 bordas para a foto ficar "solta" no fundo claro (técnica da lua).
   Assimétrico: mais longo nos lados escuros da imagem (direita/fundo) */
.signals-symbol-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 16%, #000 66%, transparent),
    linear-gradient(to bottom, transparent, #000 14%, #000 76%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, #000 16%, #000 66%, transparent),
    linear-gradient(to bottom, transparent, #000 14%, #000 76%, transparent);
  mask-composite: intersect;
}

.signals-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(36px, 4vw, 52px);
}

.signal-card {
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(36, 79, 73, 0.06);
}

.card-knot {
  position: relative;
  display: block;
  width: 62px;
  height: 1px;
  margin: 0 0 14px 12px;
  background: var(--line);
}

.card-knot::before {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  content: "";
  transform: translateY(-50%);
}

.signal-card .quote-text {
  margin: 0;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.signals-bottom-box {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 4vw, 48px);
  max-width: 900px;
  margin: 64px auto 0;
  box-shadow: 0 18px 40px rgba(36, 79, 73, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line);
}

.signals-after-copy {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 800px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.signals-after-copy p {
  margin: 0;
  color: #1c3039;
  font-size: clamp(1.02rem, 1.22vw, 1.2rem);
  line-height: 1.52;
}

.signals-after-copy p + p {
  margin-top: 24px;
}

.signals-after-rule {
  display: block;
  width: 48px;
  height: 1px;
  margin: 26px auto;
  background: var(--line);
}

.signals-escalation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px auto 0;
  text-align: left;
}

.signals-escalation p {
  margin: 0;
  position: relative;
  padding-left: 18px;
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.5;
  color: var(--ink);
}

.signals-escalation p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
}

.signals-closing-cta {
  position: relative;
  z-index: 2;
  margin: 72px auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.signals-closing-cta::before {
  position: absolute;
  top: -48px;
  left: 50%;
  width: 1px;
  height: 48px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.signals-closing-cta::after {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  content: "";
  transform: translateX(-50%);
}

/* ═══ ORIGIN ═══ */

.origin-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(232, 238, 244, 0.9), rgba(232, 238, 244, 0) 22%),
    #f5f8fb;
  color: #1f333d;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.origin-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(480px, 0.86fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 84px);
  width: min(100% - 92px, 1450px);
  min-height: min(820px, 92svh);
  margin: 0 auto;
  padding: clamp(72px, 7vw, 112px) 0 clamp(64px, 6vw, 96px);
}

.origin-copy {
  position: relative;
  z-index: 3;
}

.origin-copy h2 {
  max-width: 650px;
}


.origin-text {
  max-width: 610px;
  margin-top: 38px;
}

.origin-text p {
  margin: 0;
  color: #263842;
  font-size: clamp(1rem, 1.16vw, 1.15rem);
  line-height: 1.52;
}

.origin-text p + p {
  margin-top: 28px;
}

/* Destaque sutil, sem caixa de fundo — mesmo ornamento (linha + bolinha) dos eyebrows */
.origin-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0;
}

.origin-highlight-line {
  width: 44px;
}

.origin-highlight p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(0.85rem, 1vw, 0.98rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.origin-visual {
  position: relative;
  z-index: 2;
  min-height: 640px;
}

.origin-photo {
  position: absolute;
  right: clamp(-60px, -3vw, -18px);
  bottom: -104px;
  width: min(53vw, 720px);
  height: min(71vw, 780px);
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.origin-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.origin-quote {
  position: absolute;
  bottom: -40px;
  right: calc(clamp(-60px, -3vw, -18px) + min(53vw, 720px) * 0.1);
  width: calc(min(53vw, 720px) * 0.8);
  z-index: 6;
  margin: 0;
  border-left: 3px solid var(--gold);
  padding: 18px 26px;
  background: #ffffff;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 12px 32px rgba(55, 85, 106, 0.12);
}

.origin-quote p {
  margin: 0;
  color: #122c35;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.2px;
}

/* ═══ THERAPY ═══ */

/* Cor única de fundo (sem degradê nem manchas): todas as bordas da foto
   ficam sobre a mesma cor e o fade some por igual — decisão da reunião 01/07 */
.therapy-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #ecf3f7;
  color: #172f37;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.therapy-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(500px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 4.5vw, 76px);
  width: min(100% - 92px, 1450px);
  min-height: min(860px, 95svh);
  margin: 0 auto;
  padding: clamp(74px, 7vw, 112px) 0 clamp(58px, 5.4vw, 82px);
}

.therapy-copy {
  position: relative;
  order: 2;
  z-index: 3;
}

.therapy-copy h2 {
  max-width: 650px;
}


.therapy-title-line {
  position: relative;
  display: block;
  width: min(360px, 68%);
  height: 1px;
  margin: 34px 0 34px;
  background: var(--line);
}

.therapy-title-line::after {
  position: absolute;
  top: 50%;
  right: 78px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f4f8fb;
  content: "";
  transform: translateY(-50%);
}

.therapy-lead {
  max-width: 560px;
  margin: 0;
  color: #1e3039;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.55;
}

.therapy-lead strong {
  color: #102b34;
  font-weight: 700;
}

.therapy-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(760px, 100%);
  margin-top: clamp(42px, 4.6vw, 64px);
}

.therapy-step {
  position: relative;
  min-width: 0;
  padding: 0 22px;
  text-align: center;
}

.therapy-step:first-child {
  padding-left: 0;
}

.therapy-step:last-child {
  padding-right: 0;
}

.therapy-step + .therapy-step::before {
  position: absolute;
  top: 18px;
  bottom: 6px;
  left: 0;
  width: 1px;
  background: rgba(68, 102, 124, 0.18);
  content: "";
}

.therapy-step-icon {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(81, 119, 145, 0.22);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 32% 75%, rgba(98, 136, 158, 0.24), transparent 38%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.86), transparent 44%),
    rgba(230, 239, 244, 0.72);
}

.therapy-step-icon::after {
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  border: 1px solid rgba(183, 121, 50, 0.42);
  content: "";
}

.therapy-step-icon svg {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.therapy-step h3 {
  margin: 0;
  color: #18343b;
  font-size: clamp(0.8rem, 0.94vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.therapy-step p {
  margin: 18px 0 0;
  color: #142b34;
  font-size: clamp(0.84rem, 0.98vw, 0.96rem);
  line-height: 1.48;
}

.therapy-step.expandable .step-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.35s ease;
}

.therapy-step.expandable.expanded .step-text {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.step-expand {
  display: inline-block;
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.step-expand:hover {
  opacity: 0.7;
}

.therapy-step.expandable.expanded .step-expand {
  color: var(--ink);
}

.therapy-quote {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(600px, 100%);
  margin: clamp(46px, 5vw, 70px) 0 0;
  border: 1px solid rgba(60, 96, 119, 0.46);
  border-radius: 18px;
  padding: 22px 34px;
  background: rgba(247, 250, 252, 0.76);
  box-shadow: 0 18px 44px rgba(55, 85, 106, 0.08);
}

.therapy-quote > span {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 5.2rem;
  line-height: 0.85;
}

.therapy-quote p {
  margin: 0;
  color: #122c35;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.08rem, 1.36vw, 1.32rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.therapy-quote em {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 1.22em;
  font-style: normal;
  letter-spacing: -0.3px;
}

.therapy-visual-message {
  position: absolute;
  left: calc(clamp(-88px, -4vw, -34px) + min(58vw, 780px) / 2);
  transform: translateX(-50%);
  /* abaixo da borda inferior da foto, sem cobrir o reflexo da lua */
  top: calc(345px + min(16.5vw, 222px) + 26px);
  z-index: 6;
  width: min(560px, 82%);
}

.therapy-visual-message .therapy-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0;
  border: none;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 18px 26px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(55, 85, 106, 0.12);
}

.therapy-visual-message .therapy-quote svg.quote-logo-symbol {
  width: 80px;
  height: 80px;
  color: rgba(183, 121, 50, 0.78);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.therapy-actions {
  margin-top: 20px;
  text-align: center;
}

.therapy-actions .button.primary {
  background: var(--line);
  color: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(183, 121, 50, 0.25);
  font-weight: 600;
}

.therapy-actions .button.primary:hover {
  background: #a46222;
  border-color: #a46222;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(183, 121, 50, 0.45);
}

.therapy-visual {
  position: relative;
  order: 1;
  z-index: 2;
  min-height: 830px;
}

/* Foto ancorada na mesma posição de antes (centro em 345px), mas sem depender
   da altura do contêiner — o espaço extra abre embaixo só para a caixa */
.therapy-photo-slot {
  position: absolute;
  left: clamp(-88px, -4vw, -34px);
  top: calc(345px - min(16.5vw, 222px));
  z-index: 2;
  width: min(58vw, 780px);
  height: min(33vw, 444px);
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  filter: none;
  box-shadow: none;
}

.therapy-photo-mobile {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Bordas da foto fundem em degradê com o fundo, em todas as direções
   ("como uma nuvem/pensamento flutuando") — funciona em qualquer tamanho de tela */
.therapy-photo-slot img {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent),
    linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent),
    linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  mask-composite: intersect;
}

.therapy-photo-slot::before,
.therapy-photo-slot::after {
  display: none;
}

.therapy-rings,
.therapy-gold-orbits {
  position: absolute;
  fill: none;
  pointer-events: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.therapy-rings {
  top: -24px;
  left: -82px;
  z-index: 1;
  width: min(62vw, 840px);
  color: rgba(42, 82, 100, 0.18);
  stroke: currentColor;
  stroke-width: 1.1;
}

.therapy-rings circle {
  opacity: 0.18;
}

.therapy-rings circle:first-child {
  stroke-dasharray: 3 12;
}

.therapy-rings path {
  stroke-width: 1;
  opacity: 0.28;
}

.therapy-gold-orbits {
  left: -70px;
  bottom: -20px;
  z-index: 1;
  width: min(38vw, 520px);
  stroke: rgba(183, 121, 50, 0.38);
  stroke-width: 1.6;
}

.therapy-gold-orbits path {
  stroke-dasharray: 3 10;
}

.therapy-gold-orbits path:nth-of-type(3) {
  display: none;
}

.therapy-gold-orbits circle {
  fill: none;
  stroke-width: 3;
  opacity: 0.68;
}

.therapy-waves {
  position: absolute;
  left: clamp(42px, 4vw, 86px);
  bottom: clamp(22px, 4vw, 58px);
  z-index: 3;
  display: block;
  width: min(46vw, 640px);
  height: auto;
  fill: none;
  stroke: rgba(36, 72, 90, 0.42);
  stroke-linecap: round;
  pointer-events: none;
}

.therapy-waves path:nth-child(1) {
  stroke-width: 1.8;
  opacity: 0.84;
}

.therapy-waves path:nth-child(2) {
  stroke-width: 1.5;
  opacity: 0.62;
}

.therapy-waves path:nth-child(3) {
  stroke-width: 1.25;
  opacity: 0.42;
}

.therapy-birds {
  position: absolute;
  top: 4%;
  left: 0;
  z-index: 5;
  width: min(30vw, 390px);
  height: 190px;
  pointer-events: none;
}

.therapy-birds span {
  position: absolute;
  width: 28px;
  height: 12px;
  border-top: 3px solid rgba(25, 42, 49, 0.68);
  border-radius: 50%;
  transform: rotate(12deg);
}

.therapy-birds span::after {
  position: absolute;
  top: -3px;
  left: 13px;
  width: 28px;
  height: 12px;
  border-top: 3px solid rgba(25, 42, 49, 0.68);
  border-radius: 50%;
  content: "";
  transform: rotate(-28deg);
  transform-origin: left top;
}

.therapy-birds span:nth-child(1) {
  top: 8px;
  right: 24px;
  transform: scale(0.74) rotate(12deg);
}

.therapy-birds span:nth-child(2) {
  top: 46px;
  right: 70px;
  transform: scale(1.05) rotate(8deg);
}

.therapy-birds span:nth-child(3) {
  top: 78px;
  right: 134px;
  transform: scale(0.78) rotate(16deg);
}

.therapy-birds span:nth-child(4) {
  top: 122px;
  right: 188px;
  transform: scale(0.68) rotate(7deg);
}

.therapy-birds span:nth-child(5) {
  top: 102px;
  right: 36px;
  transform: scale(0.62) rotate(13deg);
}

.therapy-birds span:nth-child(6) {
  top: 150px;
  right: 104px;
  transform: scale(0.58) rotate(10deg);
}

/* ═══ ABOUT ═══ */

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 10%, rgba(113, 139, 153, 0.12), transparent 18%),
    linear-gradient(180deg, #f6f8fb 0%, #f1f6fa 100%);
  color: #173631;
  content-visibility: auto;
  contain-intrinsic-size: auto 1400px;
}

.about-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 10vw, 160px);
  width: min(100% - 96px, 1450px);
  margin: 0 auto;
  padding: clamp(72px, 7vw, 112px) 0 clamp(58px, 5.4vw, 84px);
}

.about-block {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(52px, 6vw, 92px);
  width: 100%;
}

.about-block--reverse {
  grid-template-columns: minmax(620px, 1.22fr) minmax(390px, 0.78fr);
}

.about-block--reverse .about-photo-wrap {
  order: 2;
}

.about-block--reverse .about-content {
  order: 1;
}

.about-photo-wrap,
.about-content {
  position: relative;
  z-index: 3;
}

.about-photo-wrap {
  align-self: stretch;
  display: grid;
  align-items: center;
  min-height: 680px;
  padding: 28px 0 32px 28px;
}

.about-photo {
  position: relative;
  width: min(100%, 460px);
  height: min(72vw, 690px);
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #d9e3e9;
  box-shadow: 0 24px 56px rgba(48, 75, 91, 0.16);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 77% 48%;
  transform: scale(1.04);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(12, 34, 42, 0.08)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 36%);
  content: "";
}

.about-photo-corner {
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 4;
  width: min(57%, 300px);
  height: 228px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-top-left-radius: 34px;
}

.about-photo-dots {
  position: absolute;
  right: 34%;
  bottom: 0;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.about-photo-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line);
}

.about-eyebrow {
  margin-bottom: 24px;
}

.eyebrow-logo-letra {
  height: 0.95em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  color: var(--ink);
}

.about-content h2 {
  max-width: 790px;
}


.about-text {
  max-width: 700px;
  margin-top: 28px;
}

.about-text p {
  margin: 0;
  color: #2a3b44;
  font-size: clamp(1rem, 1.18vw, 1.17rem);
  line-height: 1.5;
}

.about-text p + p {
  margin-top: 22px;
}

.about-text-group {
  margin: 0;
}

.about-text-rule {
  display: block;
  width: 44px;
  height: 1px;
  margin: 30px 0;
  background: var(--line);
}

.about-text-turning {
  margin-top: 16px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.18rem, 1.45vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--line);
}

.about-quote {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 94px;
  align-items: center;
  gap: 20px;
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 34px;
  background: #ffffff;
}

.about-quote > span {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 5rem;
  line-height: 0.85;
}

.about-quote p {
  margin: 0;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.92rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.about-quote svg {
  width: 92px;
  height: 80px;
  color: rgba(183, 121, 50, 0.78);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.about-quote svg.quote-logo-symbol {
  width: 80px;
  height: 80px;
  fill: none;
  stroke: none;
  stroke-width: initial;
  stroke-linecap: initial;
  stroke-linejoin: initial;
}

.about-waves {
  position: absolute;
  z-index: 1;
  fill: none;
  stroke: rgba(81, 119, 145, 0.24);
  stroke-linecap: round;
  stroke-width: 1.05;
  pointer-events: none;
}

.about-waves-left {
  bottom: 20px;
  left: -128px;
  width: 430px;
  opacity: 0.58;
}

.about-waves-right {
  top: 44px;
  right: -88px;
  width: 520px;
  opacity: 0.72;
}

.about-dotted-orbit {
  position: absolute;
  top: 56px;
  left: 31%;
  z-index: 1;
  width: 132px;
  height: 132px;
  border: 1px dashed rgba(80, 111, 139, 0.35);
  border-radius: 50%;
  opacity: 0.62;
}

.about-diamond {
  position: absolute;
  top: 116px;
  right: 2.5%;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

/* ═══ PRACTICE ═══ */

.practice-section {
  position: relative;
  overflow: hidden;
  background: #f3eee6;
  color: #102d2a;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.practice-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) minmax(560px, 1.08fr);
  align-items: stretch;
  width: min(100% - 92px, 1480px);
  min-height: min(860px, 96svh);
  margin: 0 auto;
}

.practice-content {
  position: relative;
  z-index: 4;
  padding: clamp(72px, 7vw, 108px) 0 clamp(54px, 5.5vw, 78px);
}

.practice-content::after {
  position: absolute;
  top: 0;
  right: -290px;
  bottom: 0;
  z-index: -1;
  width: 520px;
  background:
    radial-gradient(ellipse at 24% 50%, rgba(244, 239, 231, 0.95), rgba(244, 239, 231, 0.75) 42%, rgba(244, 239, 231, 0) 68%);
  content: "";
  pointer-events: none;
}

.practice-eyebrow {
  margin-bottom: 34px;
}

.practice-eyebrow-line {
  width: 58px;
  background: #213936;
}

.practice-eyebrow-line::after {
  right: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #213936;
  transform: translateY(-50%);
}

.practice-eyebrow p {
  color: #162c2d;
  font-weight: 700;
}

.practice-content h2 {
  max-width: 650px;
  color: #102d2a;
}

.practice-content h2 span {
  color: #8c5618;
}

.practice-list {
  display: grid;
  gap: 0;
  max-width: 640px;
  margin-top: 34px;
}

.practice-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px 0;
}

.practice-item + .practice-item {
  border-top: 1px solid rgba(74, 66, 54, 0.24);
}

.practice-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #f1eee7;
  background: #102d2a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.practice-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.practice-item h3 {
  margin: 0;
  color: #122b2b;
  font-size: clamp(0.92rem, 1.05vw, 1.06rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.practice-item p {
  margin: 8px 0 0;
  color: #16252a;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.42;
}

/* Padronizado com .therapy-visual-message .therapy-quote (fundo branco,
   borda dourada à esquerda, cantos arredondados só à direita, sombra) */
.practice-note {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 24px;
  align-items: center;
  width: calc(100% - clamp(34px, 4vw, 72px));
  max-width: 600px;
  margin: 34px 0 0;
  border: none;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(55, 85, 106, 0.12);
}

.practice-note p {
  margin: 0;
  color: #16272b;
  font-size: clamp(0.96rem, 1.05vw, 1.06rem);
  line-height: 1.48;
}

.practice-note svg {
  width: 92px;
  height: 72px;
  color: #8c5618;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.practice-visual {
  position: relative;
  min-height: inherit;
  margin-right: calc((100vw - min(100vw - 92px, 1480px)) / -2);
  overflow: hidden;
}

.practice-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.practice-visual::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: clamp(190px, 18vw, 330px);
  background: linear-gradient(90deg, #f3eee6 0%, rgba(243, 238, 230, 0.92) 24%, rgba(243, 238, 230, 0.5) 58%, rgba(243, 238, 230, 0) 100%);
  content: "";
  pointer-events: none;
}

/* ═══ FAQ ═══ */

.faq-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f8fb 0%, #eef4f8 100%);
  color: var(--ink);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.faq-inner {
  position: relative;
  width: min(100% - 96px, 1200px);
  margin: 0 auto;
  padding: clamp(70px, 7vw, 112px) 0;
}

.faq-eyebrow {
  margin-bottom: 24px;
}


.faq-intro {
  max-width: 720px;
  margin: 18px 0 38px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  line-height: 1.72;
  color: var(--ink);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 920px;
}

.faq-item {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-marker {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border: 2px solid var(--line);
  border-radius: 50%;
}

.faq-content h3 {
  margin: 0 0 12px 0;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.faq-content p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.55;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}

.faq-toggle h3 {
  margin: 0;
  transition: color 0.3s ease;
}

.faq-toggle:hover h3 {
  color: var(--gold);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  transform: translate(-50%, -50%);
}

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

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.faq-answer > p {
  overflow: hidden;
  margin-top: 0;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 12px;
}

/* ═══ FINAL CTA ═══ */

.final-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #f4f7f6;
  padding: clamp(80px, 8vw, 130px) 0;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

.final-cta-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(183, 121, 50, 0.12) 0%, transparent 60%),
    url('./decorator.svg') center / cover no-repeat;
  content: "";
  pointer-events: none;
  opacity: 0.4;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, 860px);
  margin: 0 auto;
}

.final-cta-content h2 {
  color: #ffffff;
}

.final-cta-content h2 span {
  color: #ffc482;
  display: block;
  margin-top: 8px;
}

.final-cta-rule {
  display: inline-block;
  width: 96px;
  height: 1px;
  margin: 38px 0;
  background: var(--line);
  position: relative;
}

.final-cta-rule::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 1px solid var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta-text {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}

.final-cta-text p {
  margin: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.6;
  color: #ffffff;
}

.final-cta-text p.final-cta-sub {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 300;
  color: #ffc482;
  letter-spacing: -0.4px;
  margin-top: 14px;
}

.final-cta-actions {
  margin-top: 48px;
}

.final-cta-actions .button.primary {
  min-width: clamp(300px, 50%, 460px);
  background: var(--line);
  color: #ffffff;
  border: 1px solid var(--line);
}

.final-cta-actions .button.primary:hover {
  background: #a46222;
  border-color: #a46222;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(183, 121, 50, 0.3);
}

.final-cta-paths {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 2px solid var(--line);
  text-align: left;
}

.final-cta-paths p {
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: #ffffff;
}

.final-cta-paths p:first-child {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
  font-weight: 400;
  letter-spacing: -0.3px;
}

/* ═══ PS & FOOTER ═══ */

.ps-footer-section {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(70px, 7vw, 100px) 0 40px;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.ps-footer-inner {
  width: min(100% - 96px, 920px);
  margin: 0 auto;
}

.ps-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(34px, 5vw, 54px);
  margin-bottom: 74px;
  box-shadow: 0 16px 36px rgba(36, 79, 73, 0.04);
}

.ps-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  font-weight: 400;
  color: var(--line);
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
}

.ps-box p:not(.ps-title) {
  margin: 0 0 22px 0;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink);
}

.ps-box p:last-of-type {
  margin-bottom: 0;
}

.ps-action {
  margin-top: 34px;
}

.ps-rule {
  display: block;
  width: 36px;
  height: 1px;
  margin: 18px 0;
  background: var(--line);
}

.ps-closing {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--ink);
}

.ps-action .button.secondary {
  border: 1px solid var(--ink);
  color: var(--ink);
  min-width: 280px;
  background: #ffffff;
}

.ps-action .button.secondary:hover {
  background: rgba(36, 79, 73, 0.06);
}

.site-footer {
  background: var(--ink);
  color: #ffffff;
  padding: 40px 0 42px;
  text-align: center;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  margin-bottom: 34px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-brand {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.15rem, 1.35vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  width: 110px;
}

.footer-logo-letra {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
  color: currentColor;
}

.footer-info {
  font-size: 0.98rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.footer-info span {
  color: #ffffff;
}

/* ═══ RESPONSIVE: 1180px ═══ */

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: min(100% - 48px, 1080px);
    padding-top: 28px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .main-nav {
    gap: 26px;
    font-size: 1rem;
  }

  .hero-content {
    width: min(58vw, 660px);
    margin-left: 48px;
    padding-top: 52px;
  }

  .button.primary,
  .button.secondary {
    min-width: 255px;
  }

  .signals-inner {
    width: min(100% - 56px, 1080px);
  }

  .signals-copy {
    max-width: 690px;
    padding-left: 32px;
  }

  .signals-symbol {
    max-width: 520px;
  }

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

  .signal-card {
    padding: 18px 20px 16px;
  }

  .origin-inner {
    grid-template-columns: minmax(420px, 0.9fr) minmax(360px, 1fr);
    width: min(100% - 56px, 1080px);
    min-height: 760px;
  }

  .origin-photo {
    right: -100px;
    width: 620px;
    height: 690px;
  }

  .therapy-inner {
    grid-template-columns: minmax(410px, 1fr) minmax(430px, 0.95fr);
    width: min(100% - 56px, 1080px);
    min-height: 780px;
  }

  .therapy-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
    width: min(560px, 100%);
  }

  .therapy-step:nth-child(3)::before {
    display: none;
  }

  .therapy-photo-slot {
    left: -70px;
    top: 200px;
    width: 510px;
    height: 290px;
  }

  .therapy-rings {
    left: -112px;
    width: 590px;
  }

  .therapy-gold-orbits {
    left: -72px;
    width: 350px;
  }

  .therapy-visual-message {
    left: calc(-70px + 510px / 2);
    transform: translateX(-50%);
    top: 514px;
    width: min(470px, 88%);
  }

  .about-inner {
    width: min(100% - 56px, 1080px);
    gap: 120px;
  }

  .about-block {
    grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
    gap: 42px;
  }

  .about-block--reverse {
    grid-template-columns: minmax(520px, 1.22fr) minmax(330px, 0.78fr);
  }

  .about-photo-wrap {
    min-height: 620px;
    padding-left: 20px;
  }

  .about-photo {
    height: 610px;
    min-height: 0;
  }

  .about-quote {
    grid-template-columns: 42px minmax(0, 1fr) 72px;
    padding: 24px;
  }

  .about-quote svg {
    width: 72px;
  }

  .about-quote svg.quote-logo-symbol {
    width: 72px;
    height: 72px;
  }

  .practice-inner {
    grid-template-columns: minmax(450px, 0.95fr) minmax(430px, 1.05fr);
    width: min(100% - 56px, 1080px);
    min-height: 800px;
  }

  .practice-visual {
    margin-right: calc((100vw - min(100vw - 56px, 1080px)) / -2);
  }

  .practice-note {
    grid-template-columns: minmax(0, 1fr) 82px;
    padding-right: 20px;
  }

  .practice-photo-slot {
    right: -90px;
  }

  .practice-drum {
    right: 0;
    width: 210px;
    height: 210px;
  }

  .practice-bowls {
    right: 14%;
  }
}

/* ═══ RESPONSIVE: 900px ═══ */

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: min(100svh, 750px);
    max-height: none;
    background: #fff;
  }

  .hero__bg {
    object-position: 68% center;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: min(100% - 36px, 720px);
    padding-top: 20px;
  }

  .main-nav {
    display: none;
  }

  .brand {
    gap: 14px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name,
  .brand-role {
    font-size: clamp(1rem, 3.4vw, 1.28rem);
    letter-spacing: 0.06em;
  }

  .hero-content {
    width: min(100% - 36px, 640px);
    margin: 0 auto;
    padding: 44px 0 260px;
  }

  h1 {
    font-size: clamp(2.75rem, 10vw, 4.2rem);
  }

  .hero-copy {
    max-width: 31rem;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .button {
    width: min(100%, 360px);
    min-height: 52px;
    padding: 0 22px;
  }

  .button.primary,
  .button.secondary {
    min-width: 0;
  }


  .signals-inner {
    width: min(100% - 36px, 720px);
    padding: 64px 0 58px;
  }

  .signals-waves-bottom {
    display: none;
  }

  .signals-top-row {
    display: block;
  }

  .signals-top-ornament {
    top: 28px;
    left: 4px;
  }

  .signals-copy {
    max-width: none;
    padding: 0;
  }

  .signals-copy > * {
    padding-left: 22px;
    padding-right: 22px;
  }

  .signals-copy h2 {
    padding-left: 22px;
    padding-right: 22px;
  }

  .signals-symbol-mobile {
    display: flex;
    justify-content: center;
    margin: 34px auto;
    width: 88%;
    max-width: 380px;
    padding: 0 !important;
  }

  .signals-symbol {
    display: none;
  }

  .signals-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
    padding: 0 22px;
  }

  .signal-card {
    min-height: 0;
  }

  .signals-closing {
    margin-top: 30px;
    padding-right: 0;
    padding-left: 42px;
  }

  .origin-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 36px, 720px);
    min-height: 0;
    padding: 66px 0 70px;
  }

  .origin-copy {
    max-width: 660px;
  }

  .origin-text {
    margin-top: 30px;
  }

  .origin-visual {
    position: relative;
    display: block;
    width: 100%;
    height: 480px;
    margin: 20px auto 40px;
    min-height: auto;
    order: -1;
  }

  .origin-photo {
    position: absolute;
    left: 50%;
    top: 170px;
    transform: translate(-50%, -50%);
    width: 270px;
    height: 290px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }

  .origin-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
  }

  .origin-quote {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 400px;
    z-index: 5;
    margin: 0;
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    background: #ffffff;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 8px 24px rgba(55, 85, 106, 0.12);
  }

  .origin-quote p {
    margin: 0;
    color: #122c35;
    font-family: "Oswald", sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    letter-spacing: -0.2px;
  }

  .therapy-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(100% - 36px, 720px);
    min-height: 0;
    padding: 66px 0 72px;
  }

  .therapy-copy {
    order: 1;
  }

  .therapy-title-line {
    width: min(360px, 82%);
  }

  .therapy-lead {
    max-width: 600px;
  }

  .therapy-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
    width: min(580px, 100%);
  }

  .therapy-step:nth-child(3)::before {
    display: none;
  }

  .therapy-quote {
    margin-top: 42px;
  }

  .therapy-visual {
    position: relative;
    display: block;
    width: 100%;
    height: 520px;
    margin: 30px auto 40px;
    min-height: auto;
    order: -1;
  }

  .therapy-photo-slot {
    position: absolute;
    left: 50%;
    top: 180px;
    transform: translate(-50%, -50%);
    width: min(100%, 440px);
    height: 250px;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    z-index: 2;
    box-shadow: none;
  }

  .therapy-photo-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 0;
  }

  .therapy-rings {
    display: block;
    position: absolute;
    left: 50%;
    top: 180px;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 390px;
    height: auto;
    color: rgba(42, 82, 100, 0.33);
    stroke: currentColor;
    stroke-width: 1.1;
  }

  .therapy-gold-orbits {
    display: block;
    position: absolute;
    left: 50%;
    top: 180px;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 240px;
    height: auto;
    stroke: rgba(183, 121, 50, 0.72);
    stroke-width: 1.6;
  }

  /* arcos abstratos dao lugar as ondas no mobile */
  .therapy-rings path {
    display: none;
  }

  .therapy-waves {
    display: block;
    position: absolute;
    left: 50%;
    top: 268px;
    bottom: auto;
    transform: translateX(-50%);
    z-index: 1;
    width: 440px;
    height: auto;
    fill: none;
    stroke: rgba(36, 72, 90, 0.62);
    stroke-linecap: round;
    pointer-events: none;
  }

  .therapy-waves path:nth-child(1) {
    stroke-width: 2;
    opacity: 0.95;
  }

  .therapy-waves path:nth-child(2) {
    stroke-width: 1.8;
    opacity: 0.7;
  }

  .therapy-waves path:nth-child(3) {
    stroke-width: 1.6;
    opacity: 0.48;
  }

  .therapy-birds {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 5;
    width: 240px;
    height: 140px;
    pointer-events: none;
  }

  .therapy-birds span {
    position: absolute;
    width: 20px;
    height: 8px;
    border-top: 2.2px solid rgba(25, 42, 49, 0.68);
    border-radius: 50%;
    transform: rotate(12deg);
  }

  .therapy-birds span::after {
    position: absolute;
    top: -2.2px;
    left: 9px;
    width: 20px;
    height: 8px;
    border-top: 2.2px solid rgba(25, 42, 49, 0.68);
    border-radius: 50%;
    content: "";
    transform: rotate(-28deg);
    transform-origin: left top;
  }

  /* bando em dois planos: escuros no ceu claro, claros na frente da arte escura */
  .therapy-birds span:nth-child(1) {
    top: 2px;
    right: 12px;
    transform: scale(0.7) rotate(10deg);
  }

  .therapy-birds span:nth-child(2) {
    top: 20px;
    right: 52px;
    transform: scale(1) rotate(8deg);
  }

  .therapy-birds span:nth-child(3) {
    top: 36px;
    right: 96px;
    transform: scale(0.75) rotate(14deg);
  }

  .therapy-birds span:nth-child(4) {
    top: 58px;
    right: 170px;
    transform: scale(0.95) rotate(8deg);
  }

  .therapy-birds span:nth-child(5) {
    top: 80px;
    right: 20px;
    transform: scale(0.8) rotate(12deg);
  }

  .therapy-birds span:nth-child(6) {
    top: 102px;
    right: 180px;
    transform: scale(0.7) rotate(9deg);
  }

  .therapy-birds span:nth-child(4),
  .therapy-birds span:nth-child(4)::after,
  .therapy-birds span:nth-child(5),
  .therapy-birds span:nth-child(5)::after,
  .therapy-birds span:nth-child(6),
  .therapy-birds span:nth-child(6)::after {
    border-top-color: rgba(240, 245, 247, 0.95);
  }

  .therapy-birds span:nth-child(4),
  .therapy-birds span:nth-child(5),
  .therapy-birds span:nth-child(6) {
    filter: drop-shadow(0 1px 2px rgba(10, 22, 28, 0.4));
  }

  .therapy-visual-message {
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 420px;
    z-index: 6;
    margin: 0;
  }

  .therapy-visual-message .therapy-quote {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin: 0;
    border: none;
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 12px 18px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(55, 85, 106, 0.12);
  }

  .therapy-visual-message .therapy-quote p {
    margin: 0;
    color: #122c35;
    font-family: "Oswald", sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.2px;
  }

  .therapy-visual-message .therapy-quote svg.quote-logo-symbol {
    width: 48px;
    height: 48px;
    color: rgba(183, 121, 50, 0.78);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
  }

  .therapy-actions {
    margin-top: 14px;
    text-align: center;
  }

  .therapy-actions .button {
    width: 100%;
    margin: 0;
  }



  .about-inner {
    width: min(100% - 36px, 720px);
    gap: 80px;
    padding: 66px 0 72px;
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-block--reverse {
    grid-template-columns: 1fr;
  }

  .about-block--reverse .about-photo-wrap {
    order: 0;
  }

  .about-block--reverse .about-content {
    order: 0;
  }

  .about-photo-wrap {
    justify-items: center;
    min-height: 590px;
    padding: 18px 0 0;
  }

  .about-photo {
    width: min(100%, 460px);
    height: 560px;
    min-height: 0;
  }

  .about-photo-corner {
    left: calc(50% - 252px);
  }

  .about-photo-dots {
    right: calc(50% - 170px);
  }

  .about-text {
    max-width: 660px;
  }

  .about-quote {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .about-quote svg {
    display: none;
  }

  .about-waves-right {
    right: -190px;
  }

  .about-dotted-orbit {
    left: auto;
    right: 8%;
  }

  .practice-section {
    background: #f3eee6;
  }

  .practice-inner {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 720px);
    min-height: 0;
  }

  .practice-content {
    padding: 66px 0 0;
  }

  .practice-content::after {
    display: none;
  }

  .practice-list,
  .practice-note {
    max-width: 640px;
  }

  .practice-note {
    grid-template-columns: minmax(0, 1fr) 76px;
    width: 100%;
  }

  .practice-visual {
    min-height: 400px;
    margin: 36px -18px 0;
    border-radius: 18px;
  }

  .practice-visual::before {
    right: 0;
    bottom: auto;
    width: auto;
    height: 120px;
    background: linear-gradient(180deg, #f3eee6 0%, rgba(243, 238, 230, 0) 30%);
  }

  .practice-photo-slot {
    inset: 0;
  }

  .practice-contours {
    right: -70px;
  }

  .faq-inner,
  .ps-footer-inner {
    width: min(100% - 36px, 720px);
  }

  .faq-item {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 22px;
  }

  .final-cta-inner {
    width: min(100% - 36px, 640px);
  }

  .final-cta-text p {
    font-size: 1.05rem;
  }

  .final-cta-actions .button.primary {
    width: 100%;
  }

  .ps-box {
    padding: 28px 24px;
    margin-bottom: 54px;
  }

  .ps-action .button.secondary {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ═══ RESPONSIVE: 560px ═══ */

@media (max-width: 560px) {
  .hero {
    display: block;
    height: auto;
    min-height: clamp(760px, 210vw, 840px);
    max-height: none;
    background: #fff;
  }

  .hero__media {
    position: absolute;
    top: 92px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100% - 92px);
    overflow: hidden;
  }

  .hero__bg {
    display: block;
    object-position: center top;
  }

  .site-header {
    position: relative;
    width: min(100% - 28px, 420px);
  }

  .site-header::before {
    position: absolute;
    inset: -20px -14px -18px;
    z-index: -1;
    background: rgba(244, 247, 246, 0.96);
    box-shadow: 0 18px 42px rgba(36, 79, 73, 0.12);
    content: "";
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-lockup {
    gap: 6px;
  }

  .brand-name,
  .brand-role {
    font-size: clamp(0.78rem, 3.65vw, 0.96rem);
    letter-spacing: 0.045em;
  }

  .hero-content {
    width: min(100% - 28px, 420px);
    padding-top: clamp(348px, 94vw, 386px);
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(2.22rem, 11.2vw, 3.1rem);
    line-height: 1.05;
  }

  .title-rule {
    width: 64px;
    margin: 18px 0;
  }

  .hero-copy {
    font-size: 0.95rem;
    line-height: 1.48;
  }

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

  .button {
    width: 100%;
    font-size: 0.96rem;
  }

  .location {
    align-items: flex-start;
    margin-top: 24px;
    font-size: 0.95rem;
  }

  .signals-inner {
    width: min(100% - 28px, 420px);
    padding: 54px 0 48px;
  }

  .signals-top-ornament {
    height: 34px;
  }

  .signals-copy {
    padding-left: 0;
  }

  .section-rule {
    width: 116px;
    margin: 22px 0;
  }

  .section-rule::before {
    left: 54px;
  }

  .signals-copy p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .signals-copy p + p {
    margin-top: 20px;
  }

  .signal-card {
    padding: 16px 16px 14px;
  }

  .card-knot {
    margin-bottom: 10px;
  }

  .signal-card h3 {
    font-size: 1.58rem;
  }

  .signal-card p {
    font-size: 0.98rem;
  }

  .signals-closing {
    padding-left: 30px;
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .origin-inner {
    width: min(100% - 28px, 420px);
    padding: 54px 0 56px;
  }

  .origin-text {
    margin-top: 26px;
  }

  .origin-text p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .origin-text p + p {
    margin-top: 22px;
  }

  .origin-visual {
    position: relative;
    display: block;
    width: 100%;
    height: 420px;
    margin: 20px auto 30px;
    min-height: auto;
  }

  .origin-photo {
    position: absolute;
    left: 50%;
    top: 140px;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 240px;
    border-radius: 50%;
  }

  .origin-photo img {
    object-position: 50% 30%;
  }

  .therapy-inner {
    width: min(100% - 28px, 420px);
    padding: 54px 0 58px;
  }

  .therapy-title-line {
    width: 100%;
    margin: 24px 0;
  }

  .therapy-title-line::after {
    right: 52px;
  }

  .therapy-lead {
    font-size: 0.98rem;
  }

  .therapy-steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
  }

  .therapy-step {
    padding: 0;
  }

  .therapy-step + .therapy-step::before {
    display: none;
  }

  .therapy-step-icon {
    margin-bottom: 16px;
  }

  .therapy-quote {
    gap: 14px;
    margin-top: 38px;
    border-radius: 14px;
    padding: 20px;
  }

  .therapy-quote p {
    font-size: 1rem;
  }

  .therapy-visual {
    position: relative;
    display: block;
    width: 100%;
    height: 440px;
    margin: 20px auto 30px;
    min-height: auto;
  }

  .therapy-photo-slot {
    position: absolute;
    left: 50%;
    top: 140px;
    transform: translate(-50%, -50%);
    width: min(100%, 360px);
    height: 205px;
  }

  .therapy-photo-mobile {
    border-radius: 0;
  }

  .therapy-rings {
    top: 140px;
    width: 310px;
  }

  .therapy-gold-orbits {
    top: 140px;
    width: 190px;
  }

  .therapy-waves {
    top: 208px;
    width: 360px;
  }

  .therapy-birds {
    top: 0;
    width: 200px;
    height: 130px;
  }

  .therapy-birds span {
    width: 16px;
    height: 6px;
  }

  .therapy-birds span::after {
    width: 16px;
    height: 6px;
    left: 7px;
  }

  .therapy-visual-message {
    width: 94%;
  }

  .therapy-visual-message .therapy-quote {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 0 12px 12px 0;
  }

  .therapy-visual-message .therapy-quote p {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .therapy-visual-message .therapy-quote svg.quote-logo-symbol {
    width: 36px;
    height: 36px;
  }

  .therapy-actions {
    margin-top: 10px;
  }

  .therapy-actions .button {
    width: 100%;
  }

  .about-inner {
    width: min(100% - 28px, 420px);
    gap: 60px;
    padding: 54px 0 58px;
  }

  .about-photo-wrap {
    min-height: 470px;
  }

  .about-photo {
    width: 100%;
    height: 440px;
  }

  .about-photo img {
    object-position: 77% 49%;
  }

  .about-photo-corner {
    left: 0;
    width: 62%;
    height: 150px;
  }

  .about-photo-dots {
    right: 22px;
  }

  .about-eyebrow {
    gap: 16px;
    margin-bottom: 22px;
  }

  .about-eyebrow-line {
    width: 62px;
  }

  .about-text {
    margin-top: 24px;
  }

  .about-text p {
    font-size: 0.98rem;
  }

  .about-quote {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding: 20px;
  }

  .about-quote > span {
    font-size: 4rem;
  }

  .about-quote p {
    font-size: 1.18rem;
  }

  .about-waves-left {
    left: -210px;
    width: 360px;
  }

  .about-waves-right {
    top: 26px;
    right: -260px;
    width: 420px;
  }

  .about-dotted-orbit {
    top: 24px;
    right: 4%;
    width: 92px;
    height: 92px;
  }

  .practice-inner {
    width: min(100% - 28px, 420px);
  }

  .practice-content {
    padding-top: 54px;
  }

  .practice-eyebrow {
    gap: 16px;
    margin-bottom: 26px;
  }

  .practice-eyebrow-line {
    width: 50px;
  }

  .practice-eyebrow p {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .practice-list {
    margin-top: 28px;
  }

  .practice-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .practice-icon {
    width: 48px;
    height: 48px;
  }

  .practice-icon svg {
    width: 28px;
    height: 28px;
  }

  .practice-item h3 {
    font-size: 0.88rem;
  }

  .practice-item p {
    font-size: 0.95rem;
  }

  .practice-note {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    padding: 22px 20px;
  }

  .practice-note svg {
    width: 70px;
    height: 56px;
    justify-self: end;
  }

  .practice-visual {
    min-height: 390px;
    margin: 30px -14px 0;
    border-radius: 14px;
  }

  .practice-window {
    width: 38%;
  }

  .practice-shelf {
    width: 34%;
  }

  .practice-drum {
    right: -8%;
    bottom: 22%;
    width: 170px;
    height: 170px;
  }

  .practice-bowls {
    right: 12%;
    bottom: 15%;
    width: 230px;
  }

  .practice-journal {
    right: 8%;
    width: 170px;
    height: 84px;
  }

  .practice-contours {
    right: -112px;
  }

  .final-cta-section {
    padding: clamp(54px, 12vw, 80px) 0;
  }

  .final-cta-inner {
    width: min(100% - 28px, 420px);
  }

  .final-cta-content h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .final-cta-rule {
    margin: 24px 0;
  }

  .final-cta-text p {
    font-size: 0.95rem;
  }

  .final-cta-text p.final-cta-sub {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
  }

  .final-cta-paths {
    padding-left: 16px;
  }

  .final-cta-paths p {
    font-size: 0.92rem;
  }

  .final-cta-actions {
    margin-top: 32px;
  }

  .final-cta-actions .button.primary {
    width: 100%;
    min-width: unset;
  }

  .ps-footer-inner {
    width: min(100% - 28px, 420px);
  }

  .ps-box {
    padding: 24px 20px;
    margin-bottom: 44px;
  }

  .ps-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 16px;
  }

  .ps-box p:not(.ps-title) {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .ps-closing {
    font-size: clamp(0.95rem, 4vw, 1.08rem);
  }

  .ps-action .button.secondary {
    width: 100%;
    min-width: unset;
  }
}
