:root {
  --primary: #925C91;
  --accent: #BB476F;
  --bg: #FFF3F7;
  --surface: #FFF3F7;
  --text: #1D191D;
  --text-soft: rgba(29, 25, 29, 0.72);
  --white: #FFFFFF;
  --line: rgba(29, 25, 29, 0.12);
  --soft-pink: #E0808C;
  --lilac: #CA86B9;
  --bg-main: var(--bg);
  --text-main: var(--text);
  --accent-soft: rgba(187, 71, 111, 0.16);
  --cta: var(--primary);
  --cta-soft: rgba(146, 92, 145, 0.14);
  --surface-strong: rgba(202, 134, 185, 0.22);
  --surface-glass: rgba(255, 243, 247, 0.84);
  --line-strong: rgba(29, 25, 29, 0.18);
  --shadow-soft: 0 28px 60px rgba(29, 25, 29, 0.08);
  --shadow-card: 0 18px 36px rgba(29, 25, 29, 0.08);
  --shadow-hero: 0 34px 72px rgba(29, 25, 29, 0.1);
  --container: 1180px;
  --radius-xl: 44px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --transition: 220ms ease;
  --hero-parallax: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 16% 20%, rgba(187, 71, 111, 0.09), transparent 0 24%),
    radial-gradient(circle at 84% 18%, rgba(146, 92, 145, 0.11), transparent 0 19%),
    radial-gradient(circle at 40% 78%, rgba(224, 128, 140, 0.08), transparent 0 20%),
    var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  opacity: 0.2;
  background-image:
    radial-gradient(rgba(29, 25, 29, 0.08) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.45) 0.9px, transparent 0.9px);
  background-position: 0 0, 12px 10px;
  background-size: 22px 22px, 28px 28px;
  mix-blend-mode: multiply;
}

body::after {
  opacity: 0.26;
  background:
    linear-gradient(90deg, transparent 8%, rgba(29, 25, 29, 0.035) 8.15%, transparent 8.3%),
    linear-gradient(90deg, transparent 91.5%, rgba(29, 25, 29, 0.04) 91.65%, transparent 91.8%);
}

.content-section,
.cta-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

::selection {
  background: rgba(187, 71, 111, 0.22);
  color: var(--text-main);
}

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

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

.nowrap {
  white-space: nowrap;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 243, 247, 0.72);
  border-bottom: 1px solid rgba(29, 25, 29, 0.06);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-inner {
  min-height: 88px;
}

.brand-block,
.footer-inner > div {
  display: grid;
  gap: 0.18rem;
}

.brand-block {
  flex: 0 1 auto;
  min-width: 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-text {
  display: grid;
  gap: 0.18rem;
}

.brand-logo {
  width: clamp(150px, 16vw, 190px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-logo {
  width: clamp(130px, 14vw, 170px);
  height: auto;
  margin-bottom: 0.45rem;
  object-fit: contain;
}

.brand-name {
  margin: 0;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.brand-text .eyebrow {
  margin: 0;
  color: rgba(29, 25, 29, 0.66);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.86);
}

.top-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.45rem;
  min-width: 0;
  font-size: 0.96rem;
}

.top-nav a,
.mobile-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-crp {
  display: inline-flex;
  align-items: center;
  color: rgba(29, 25, 29, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after,
.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(29, 25, 29, 0.14);
  border-radius: 50%;
  background: rgba(255, 243, 247, 0.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-panel {
  border-top: 1px solid rgba(29, 25, 29, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.mobile-nav {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}

.hero-section {
  position: relative;
  padding: 2.2rem 0 4.4rem;
}

.hero-section::after {
  display: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0 0 auto;
  height: 700px;
  pointer-events: none;
  transform: translateY(var(--hero-parallax));
  will-change: transform;
  background:
    radial-gradient(circle at 14% 44%, rgba(187, 71, 111, 0.16), transparent 0 24%),
    radial-gradient(circle at 84% 18%, rgba(146, 92, 145, 0.14), transparent 0 22%),
    radial-gradient(circle at 70% 72%, rgba(224, 128, 140, 0.1), transparent 0 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 68%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.8rem);
  border: 1px solid rgba(29, 25, 29, 0.08);
  border-radius: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 243, 247, 0.5) 42%, rgba(202, 134, 185, 0.2)),
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.7), transparent 42%);
  box-shadow: var(--shadow-hero);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-shell::before {
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(187, 71, 111, 0.12), transparent 0 20%),
    radial-gradient(circle at 88% 16%, rgba(146, 92, 145, 0.14), transparent 0 18%),
    radial-gradient(circle at 70% 78%, rgba(224, 128, 140, 0.24), transparent 0 16%);
}

.hero-shell::after {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: clamp(18px, 3vw, 36px);
  opacity: 0.9;
}

.hero-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.78fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: end;
}

.hero-copy {
  position: relative;
  max-width: 820px;
  padding-right: 0;
}

.hero-copy::before {
  display: none;
}

.hero-copy h1,
.section-heading h2,
.cta-card h2,
.about-copy h2,
.mode-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.9rem, 5.7vw, 4.85rem);
  font-weight: 600;
  line-height: 0.92;
  text-align: left;
  text-wrap: pretty;
}

.hero-highlight {
  color: var(--accent);
}

.hero-text,
.section-heading p,
.about-copy p,
.mode-card p,
.site-footer p,
.photo-note {
  margin: 0;
  font-size: 1.04rem;
  color: var(--text-soft);
}

.hero-text {
  max-width: 50ch;
  margin-top: 1.35rem;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.95rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-primary {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, rgba(146, 92, 145, 1), rgba(187, 71, 111, 0.92));
}

.btn-light {
  color: var(--text-main);
  background: var(--surface);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 25, 29, 0.08);
  background: rgba(255, 243, 247, 0.66);
  box-shadow: 0 12px 28px rgba(29, 25, 29, 0.05);
  color: var(--text-main);
  font-size: 0.94rem;
}

.hero-pill::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(187, 71, 111, 0.12);
}

.hero-pill:nth-child(even)::before {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(146, 92, 145, 0.12);
}

.hero-art {
  display: flex;
  justify-content: center;
  align-self: stretch;
}

.hero-photo-stage {
  position: relative;
  width: min(100%, 440px);
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.74fr);
    gap: 1rem;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-copy h1 {
    max-width: 15ch;
  }

  .hero-photo-stage {
    width: min(100%, 400px);
  }
}

.hero-photo-stage::before,
.hero-photo-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-photo-stage::before {
  inset: 10% 10% 14%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.96), rgba(224, 128, 140, 0.24) 42%, rgba(146, 92, 145, 0.2) 100%);
  filter: blur(3px);
}

.hero-photo-stage::after {
  right: 1rem;
  top: 0.5rem;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-photo-card {
  position: relative;
  z-index: 1;
  width: min(100%, 350px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-photo {
  display: block;
  width: 88%;
  height: auto;
  aspect-ratio: auto;
  margin-inline: auto;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 40px rgba(29, 25, 29, 0.18));
}

.hero-art-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  flex: 1;
}

.art-label,
.photo-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.art-label {
  color: rgba(29, 25, 29, 0.62);
}

.art-label::before,
.photo-note::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero-quote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.hero-quote {
  max-width: none;
  font-size: clamp(1.3rem, 4.5vw, 2.25rem);
  line-height: 1.08;
}

.quote-inline {
  color: var(--text-main);
  font-size: 0.7em;
  line-height: 0;
}

.hero-art-footer {
  display: flex;
  align-items: center;
  margin-top: 0.45rem;
}

.hero-signature {
  display: inline-block;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.content-section,
.cta-section {
  position: relative;
  padding: 2.4rem 0 6rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
}

.section-heading h2,
.cta-card h2,
.about-copy h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  max-width: 24ch;
  text-align: left;
  text-wrap: pretty;
  hyphens: none;
}

.identification-section .section-heading {
  max-width: 980px;
}

.identification-section .section-heading h2 {
  max-width: 30ch;
}

.list-panel,
.mode-card,
.about-copy {
  background: rgba(255, 243, 247, 0.86);
  border: 1px solid rgba(29, 25, 29, 0.08);
  box-shadow: var(--shadow-card);
}

.session-info,
.professional-id {
  margin: 0;
  font-size: 1.06rem;
}

.identification-panel {
  max-width: none;
  margin: 0;
  padding: 2rem;
  border-radius: 28px 28px 74px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 247, 0.84));
}

.identification-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 1.9rem;
  align-items: stretch;
  max-width: 760px;
}

.listening-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem;
  border-radius: 28px 28px 74px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 247, 0.84));
  overflow: hidden;
}

.therapy-listening-panel {
  width: 100%;
  max-width: none;
  min-height: 300px;
  align-self: center;
  margin-block: auto;
  justify-self: stretch;
  padding: 1.85rem 2.1rem;
  background: linear-gradient(180deg, rgba(224, 128, 140, 0.58), rgba(202, 134, 185, 0.46));
}

.therapy-listening-panel .hero-quote {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  text-align: justify;
  text-justify: inter-word;
}

.listening-panel .hero-quote {
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  line-height: 1.15;
}

.therapy-section {
  padding-top: 3.2rem;
}

.therapy-section .section-heading h2 {
  max-width: 24ch;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 2.2rem;
  align-items: start;
}

.therapy-section .split-layout {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 540px);
  gap: 0.45rem;
  align-items: center;
}

.therapy-section .split-layout::before {
  content: "";
  position: absolute;
  inset: -1.25rem 0 -1rem;
  border: 1px solid rgba(29, 25, 29, 0.08);
  border-radius: 34px 34px 80px 34px;
  background: linear-gradient(140deg, rgba(255, 243, 247, 0.56), rgba(202, 134, 185, 0.18));
  z-index: -1;
}

.therapy-copy {
  padding: 1.8rem 1rem 1.8rem 1.6rem;
  max-width: 54ch;
}

.therapy-copy p {
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
  text-wrap: pretty;
}

.icon-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  position: relative;
  padding-left: 2.2rem;
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: var(--cta);
  box-shadow: 0 0 0 6px rgba(146, 92, 145, 0.12);
}

.icon-list.warm li::before {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(224, 128, 140, 0.22);
}

.benefits-note {
  margin: 0.35rem 0 0;
  max-width: 100%;
  padding: 1rem 1.2rem;
  border-left: 3px solid rgba(146, 92, 145, 0.5);
  background: rgba(255, 243, 247, 0.86);
  font-size: 0.98rem;
  color: var(--text-soft);
  text-align: left;
}

.benefits-note strong {
  color: var(--text-main);
}

.about-section {
  padding-top: 3rem;
}

.about-copy h2 {
  max-width: 16ch;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 0.92fr);
  gap: 1.6rem;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
  padding: 1rem 1rem 2rem;
  transform: translateY(-1rem);
}

.about-photo-wrap::before,
.about-photo-wrap::after {
  content: "";
  position: absolute;
}

.about-photo-wrap::before {
  left: 0;
  top: 5%;
  width: 100%;
  height: 88%;
  border: 1px solid rgba(29, 25, 29, 0.1);
  border-radius: 46% 54% 36% 64% / 42% 34% 66% 58%;
  transform: rotate(-4deg);
}

.about-photo-wrap::after {
  right: -1rem;
  bottom: 3rem;
  width: 160px;
  height: 160px;
  border-radius: 62% 38% 52% 48% / 42% 57% 43% 58%;
  background: rgba(224, 128, 140, 0.42);
}

.about-photo-frame {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), rgba(202, 134, 185, 0.18));
  padding: 1.4rem 1rem 0.4rem;
  border-radius: 40% 60% 58% 42% / 32% 38% 62% 68%;
  box-shadow: var(--shadow-soft);
}

.about-photo-frame::before {
  content: "";
  position: absolute;
  inset: 14% 8% 10%;
  border-radius: 42% 58% 40% 60% / 34% 30% 70% 66%;
  background:
    radial-gradient(circle at 50% 22%, rgba(224, 128, 140, 0.34), transparent 58%),
    radial-gradient(circle at 58% 72%, rgba(202, 134, 185, 0.26), transparent 52%);
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(29, 25, 29, 0.16));
}

.photo-note {
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  color: rgba(29, 25, 29, 0.56);
}

.about-copy {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 2.2rem 2.1rem 2rem;
  border-radius: 26px 26px 72px 26px;
  margin-top: 5rem;
  margin-left: -3.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(202, 134, 185, 0.2));
}

.about-copy p {
  text-wrap: pretty;
  text-align: justify;
  text-justify: inter-word;
}

.about-copy::before {
  content: "";
  position: absolute;
  left: 2.1rem;
  top: -1.2rem;
  width: 72px;
  height: 1px;
  background: rgba(29, 25, 29, 0.24);
}

.professional-id {
  margin-top: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-section .section-heading {
  max-width: 620px;
}

.process-section .section-heading h2 {
  max-width: 16ch;
}

.process-section .benefits-note {
  margin-top: 1.75rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.mode-card {
  position: relative;
  padding: 2rem;
  border-radius: 30px 30px 60px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(202, 134, 185, 0.2));
}

.mode-card::after {
  content: "";
  position: absolute;
  inset: auto 2rem 1.3rem;
  height: 1px;
  background: linear-gradient(to right, rgba(29, 25, 29, 0.18), transparent);
}

.mode-card h3 {
  margin: 0.9rem 0 0.55rem;
  font-size: 2.3rem;
}

.mode-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(29, 25, 29, 0.08);
  box-shadow: inset 0 0 0 10px rgba(224, 128, 140, 0.24);
}

.mode-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.mode-icon {
  color: var(--accent);
}

.mode-icon-office {
  color: #BB476F;
}

.mode-card:last-child .mode-icon {
  box-shadow: inset 0 0 0 10px rgba(202, 134, 185, 0.24);
}

.session-info {
  margin-top: 1.6rem;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-section {
  padding-bottom: 5.2rem;
}

.cta-card h2 {
  max-width: 16ch;
  margin-inline: auto;
  text-align: center;
}

.cta-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.9rem, 3.2vw, 3rem);
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(146, 92, 145, 0.26), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--accent);
  border-radius: 42px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-card::before {
  width: 140px;
  height: 140px;
  right: -32px;
  top: -18px;
}

.cta-card::after {
  width: 96px;
  height: 96px;
  left: -28px;
  bottom: -24px;
}

.cta-card h2 {
  color: var(--white);
}

.cta-message {
  max-width: min(100%, 34rem);
  margin: 1rem auto 1.7rem;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1.04rem;
  line-height: 1.7;
  text-align: center;
  text-wrap: pretty;
}

.section-separator {
  line-height: 0;
  color: var(--surface);
}

.section-separator svg {
  display: block;
  width: 100%;
  height: 86px;
  fill: currentColor;
}

.section-separator.reverse {
  color: rgba(255, 243, 247, 0.86);
}

.site-footer {
  padding: 1.6rem 0 2.5rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0.95rem 1.2rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, rgba(146, 92, 145, 1), rgba(187, 71, 111, 1));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.floating-whatsapp-dot {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--soft-pink);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
  color: var(--text-soft);
  transition: color var(--transition), transform var(--transition);
}

.contact-link {
  position: relative;
  display: inline-flex;
  margin-left: 0.35rem;
  color: var(--text-main);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.08rem;
  width: 100%;
  height: 1px;
  background: rgba(187, 71, 111, 0.45);
  transform-origin: left;
  transition: background-color var(--transition), transform var(--transition);
}

.social-link:hover,
.social-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.floating-whatsapp-label {
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (min-width: 1025px) {
  .footer-inner > div:last-child {
    padding-right: 12rem;
  }
}

.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(187, 71, 111, 0.65);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-999px, -999px);
  will-change: transform, opacity;
  transition:
    opacity 180ms ease,
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease;
}

.cursor-ring.is-active {
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  will-change: transform, opacity;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

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

  .about-copy {
    margin-top: 0;
    margin-left: 0;
  }

  .about-copy p {
    text-align: justify;
    text-justify: inter-word;
  }
}

@media (max-width: 1080px) {
  .top-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .nav-crp {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .split-layout,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .therapy-section .split-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .header-inner {
    min-height: 78px;
  }

  .site-footer {
    padding-bottom: calc(8rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-copy::before,
  .hero-section::after {
    display: none;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    text-align: left;
  }

  .hero-art {
    justify-content: center;
  }

  .hero-shell {
    padding: clamp(1.5rem, 5vw, 2.4rem);
  }

  .hero-pills {
    gap: 0.75rem;
  }

  .hero-photo-stage {
    width: min(100%, 340px);
  }

  .hero-photo-card {
    width: min(100%, 280px);
    margin-inline: auto;
    transform: none;
  }

  .identification-cards {
    grid-template-columns: 1fr;
  }

  .therapy-section .split-layout::before {
    inset: -0.6rem 0 0;
  }

  .therapy-copy {
    max-width: 100%;
    padding: 1.6rem 1rem 0 1.2rem;
  }

  .therapy-listening-panel {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    justify-self: stretch;
  }

  .therapy-copy p {
    text-align: left;
    text-justify: auto;
  }

  .about-photo-wrap {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    backdrop-filter: blur(12px);
  }

  body.menu-open {
    overflow: hidden;
  }

  body::before,
  body::after {
    display: none;
  }

  .site-footer {
    padding-bottom: calc(8rem + env(safe-area-inset-bottom, 0px));
  }

  .hero-section {
    padding-top: 1.4rem;
    padding-bottom: 3.2rem;
  }

  .hero-backdrop {
    height: 560px;
  }

  .header-inner,
  .footer-inner,
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-toggle {
    align-self: flex-end;
    margin-top: -3.35rem;
  }

  .btn {
    width: 100%;
  }

  .hero-shell::after {
    inset: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .section-heading h2,
  .cta-card h2,
  .about-copy h2 {
    max-width: 100%;
    hyphens: none;
  }

  .hero-pills {
    gap: 0.7rem;
  }

  .hero-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-photo-stage {
    width: min(100%, 275px);
  }

  .hero-photo-card {
    width: min(100%, 230px);
  }

  .mode-card,
  .list-panel,
  .cta-card,
  .about-copy {
    border-radius: 24px;
  }

  .hero-quote {
    text-wrap: balance;
  }

  .therapy-copy {
    padding-inline: 0.85rem;
  }

  .therapy-copy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .therapy-listening-panel {
    padding: 1.5rem;
  }

  .therapy-listening-panel .hero-quote {
    font-size: 1.2rem;
    text-align: left;
    text-justify: auto;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: calc(100% - 2rem);
    min-height: 54px;
    padding: 0.85rem 1rem;
  }

  .floating-whatsapp-label {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (pointer: coarse) {
  .cursor-ring {
    display: none;
  }
}

