:root {
  --violet: #2d145f;
  --violet-bright: #59328f;
  --violet-deep: #180d31;
  --lavender: #b8a5d6;
  --lime: #dce7bd;
  --cream: #f1ede5;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #17141b;
  --ink-soft: #5e5a63;
  --line: rgba(23, 20, 27, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --font: "Outfit", sans-serif;
  --page: min(1380px, calc(100vw - 72px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  color: var(--white);
  background: var(--violet-bright);
}

[hidden] {
  display: none !important;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1300;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(220, 231, 189, 0.72);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 900;
  top: 18px;
  right: 24px;
  left: 24px;
  display: grid;
  width: min(1380px, calc(100vw - 48px));
  min-height: 72px;
  margin: 0 auto;
  padding: 0 12px 0 24px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  background: rgba(20, 10, 43, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(20px) saturate(130%);
  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 360ms var(--ease);
  will-change: transform;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  border-color: var(--line);
  box-shadow: 0 12px 42px rgba(23, 20, 27, 0.1);
}

.site-header.is-hidden:not(:focus-within),
.site-header.is-reading-hidden:not(:focus-within) {
  transform: translateY(calc(-100% - 32px));
}

.brand {
  position: relative;
  display: block;
  width: 112px;
  height: 46px;
  justify-self: start;
}

.brand img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 112px;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
}

.brand__color,
.site-header.is-scrolled .brand__white {
  opacity: 0;
}

.brand__white,
.site-header.is-scrolled .brand__color {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
  font-size: 0.81rem;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-self: end;
  gap: 14px;
  color: var(--violet-deep);
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms var(--ease);
}

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

.header-action::before,
.button::before {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -55%;
  width: 35%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: skewX(-22deg);
  transition: left 650ms var(--ease);
  pointer-events: none;
}

.header-action:hover::before,
.button:hover::before {
  left: 125%;
}

.header-action:active,
.button:active {
  transform: translateY(0) scale(0.985);
}

.site-header.is-scrolled .header-action {
  color: var(--white);
  background: var(--violet);
}

.header-action svg {
  width: 18px;
  height: 18px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  --pointer-x: 50%;
  --pointer-y: 40%;
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  padding: 150px 36px 92px;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(107, 63, 167, 0.62), transparent 37%),
    radial-gradient(circle at 7% 82%, rgba(138, 105, 181, 0.3), transparent 30%),
    linear-gradient(145deg, #1a0e36 0%, #2f145f 53%, #210f48 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: var(--pointer-opacity, 0);
  background: radial-gradient(
    circle 260px at var(--pointer-x) var(--pointer-y),
    rgba(220, 231, 189, 0.14),
    rgba(184, 165, 214, 0.07) 42%,
    transparent 72%
  );
  transition: opacity 450ms ease;
  pointer-events: none;
}

.hero__atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.hero__orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.hero__orb--one {
  top: -27vw;
  left: 50%;
  width: min(76vw, 1100px);
  height: min(76vw, 1100px);
  transform: translateX(-50%);
  animation: orbit-one 16s ease-in-out infinite alternate;
}

.hero__orb--two {
  right: -19vw;
  bottom: -39vw;
  width: min(68vw, 960px);
  height: min(68vw, 960px);
  animation: orbit-two 20s ease-in-out infinite alternate;
}

.hero__line {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 1px;
  height: 68%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: line-breathe 5.5s ease-in-out infinite;
}

.hero__emblem {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: clamp(240px, 27vw, 450px);
  height: auto;
  opacity: 0.035;
  transform: translate(-50%, -49%) rotate(5deg);
}

.hero__content {
  display: flex;
  width: min(1280px, 100%);
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero__eyebrow,
.overline {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: var(--lime);
}

.hero h1 {
  max-width: 1280px;
  margin: clamp(30px, 4vw, 56px) auto 0;
  font-size: clamp(4rem, 7.4vw, 7.7rem);
  font-weight: 300;
  letter-spacing: -0.062em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 strong {
  font-weight: 600;
}

.inline-symbol {
  display: inline-flex;
  width: clamp(82px, 8vw, 132px);
  height: 0.63em;
  margin: 0 0.08em;
  align-items: center;
  justify-content: center;
  vertical-align: 0.06em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  animation: symbol-breathe 5s ease-in-out infinite;
}

.inline-symbol img {
  width: auto;
  height: 64%;
  animation: symbol-turn 7s ease-in-out infinite;
}

.hero__lead {
  max-width: 710px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.23rem);
  font-weight: 300;
  line-height: 1.7;
}

.hero__actions,
.closing-cta__actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease);
}

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

.button svg {
  width: 18px;
  height: 18px;
}

.button--light {
  color: var(--violet-deep);
  background: var(--lime);
  border-color: var(--lime);
}

.button--light:hover {
  background: var(--white);
  border-color: var(--white);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.button--primary {
  color: var(--white);
  background: var(--violet);
  border-color: var(--violet);
}

.button--primary:hover {
  background: var(--violet-bright);
  border-color: var(--violet-bright);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  background: var(--violet);
  border-color: var(--violet);
}

.button--whatsapp-brand {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 38%),
    var(--violet);
  border-color: var(--violet);
}

.button--whatsapp-brand:hover {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 44%),
    var(--violet-bright);
  border-color: var(--violet-bright);
}

.button--full {
  width: 100%;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.69rem;
  font-weight: 500;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  overflow: hidden;
}

.hero__scroll span::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 1px;
  content: "";
  background: var(--white);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%,
  100% {
    transform: translateX(-12px);
  }
  55% {
    transform: translateX(36px);
  }
}

.assurance {
  display: flex;
  min-height: 74px;
  padding: 18px 36px;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 70px);
  color: var(--violet-deep);
  background: var(--lime);
  overflow-x: auto;
}

.assurance p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.assurance p + p::before {
  width: 4px;
  height: 4px;
  content: "";
  background: var(--violet);
  border-radius: 50%;
}

.assurance p:first-child span {
  width: 8px;
  height: 8px;
  background: #37a76f;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(55, 167, 111, 0.18);
  animation: availability-pulse 2.4s ease-out infinite;
}

.care-choice {
  padding: clamp(72px, 7vw, 106px) max(36px, calc((100vw - 1380px) / 2))
    clamp(82px, 8vw, 124px);
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 0%, rgba(89, 50, 143, 0.075), transparent 28%),
    var(--paper);
}

.care-choice__intro {
  display: grid;
  margin-bottom: 46px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: end;
}

.care-choice__intro .overline {
  margin: 0 0 18px;
}

.care-choice__intro h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 4.7vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.96;
  text-wrap: balance;
}

.care-choice__intro > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.care-choice__fonasa {
  display: flex;
  min-height: 54px;
  margin: 0;
  padding: 14px 18px;
  align-items: center;
  gap: 8px;
  color: var(--violet-deep);
  background: var(--lime);
  font-size: 0.76rem;
  line-height: 1.5;
}

.care-choice__fonasa strong {
  flex: 0 0 auto;
  font-weight: 700;
}

.care-choice__options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.82fr;
  border-left: 1px solid var(--line);
}

.care-choice__option {
  display: flex;
  min-height: 205px;
  padding: 24px;
  justify-content: space-between;
  flex-direction: column;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 260ms ease,
    background 260ms ease,
    transform 320ms var(--ease);
}

.care-choice__option:hover {
  z-index: 1;
  color: var(--white);
  background: var(--violet);
  transform: translateY(-5px);
}

.care-choice__number {
  color: var(--violet-bright);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.care-choice__option strong,
.care-choice__option small {
  display: block;
}

.care-choice__option strong {
  max-width: 230px;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.care-choice__option small {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.45;
  transition: color 260ms ease;
}

.care-choice__action {
  display: flex;
  margin-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.68rem;
  font-weight: 700;
}

.care-choice__action::after {
  content: "→";
  font-size: 1rem;
  transition: transform 240ms var(--ease);
}

.care-choice__option:hover .care-choice__number,
.care-choice__option:hover small {
  color: rgba(255, 255, 255, 0.68);
}

.care-choice__option:hover .care-choice__action::after {
  transform: translateX(5px);
}

.care-choice__option--guidance {
  color: var(--white);
  background: var(--violet-deep);
}

.care-choice__option--guidance .care-choice__number {
  color: var(--lime);
  font-size: 0.92rem;
}

.care-choice__option--guidance small {
  color: rgba(255, 255, 255, 0.62);
}

.access-benefits {
  padding-top: clamp(100px, 8vw, 140px);
  padding-bottom: clamp(80px, 7vw, 120px);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(89, 50, 143, 0.09), transparent 27%),
    var(--paper);
}

.benefits-intro {
  display: grid;
  margin-bottom: clamp(62px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: end;
}

.benefits-intro h2 {
  max-width: 1000px;
  margin: 28px 0 0;
  font-size: clamp(3.2rem, 5.8vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}

.benefits-intro__aside > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.benefits-intro__aside .text-action {
  margin-top: 28px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.2fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 420px;
  padding: clamp(32px, 3.8vw, 54px);
  justify-content: space-between;
  flex-direction: column;
  gap: 54px;
  background: rgba(255, 255, 255, 0.46);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition:
    background 260ms ease,
    transform 360ms var(--ease);
}

.benefit-card:hover {
  z-index: 1;
  background: var(--white);
  transform: translateY(-8px);
}

.benefit-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.benefit-card__top > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--violet);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.69rem;
  font-weight: 700;
}

.benefit-card__top small {
  color: var(--violet-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.benefit-card h3 {
  max-width: 470px;
  margin: auto 0 0;
  font-size: clamp(2.35rem, 3.2vw, 3.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.benefit-card > p,
.benefit-card > div:last-child > p:last-child {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.benefit-card--fonasa {
  color: var(--white);
  background:
    radial-gradient(circle at 95% 5%, rgba(184, 165, 214, 0.42), transparent 34%),
    var(--violet);
}

.benefit-card--fonasa::after {
  position: absolute;
  right: -115px;
  bottom: -175px;
  width: 390px;
  height: 390px;
  content: "";
  border: 55px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.benefit-card--fonasa:hover {
  background:
    radial-gradient(circle at 95% 5%, rgba(184, 165, 214, 0.52), transparent 36%),
    var(--violet-bright);
}

.benefit-card--fonasa > * {
  position: relative;
  z-index: 1;
}

.benefit-card--fonasa .benefit-card__top > span {
  color: var(--lime);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit-card--fonasa .benefit-card__top small {
  color: rgba(255, 255, 255, 0.58);
}

.benefit-card--fonasa h3 {
  max-width: 560px;
}

.benefit-card--fonasa > div:last-child > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.benefit-card__badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 28px;
  padding: 10px 14px;
  align-items: center;
  gap: 9px;
  color: var(--violet-deep);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefit-card__badge i {
  width: 7px;
  height: 7px;
  background: #37a76f;
  border-radius: 50%;
  animation: availability-pulse 2.4s ease-out infinite;
}

.agreements-panel {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(89, 50, 143, 0.42), transparent 43%),
    var(--ink);
  overflow: hidden;
}

.agreements-panel__intro {
  padding: clamp(34px, 4vw, 54px);
  border-right: 1px solid var(--line-light);
}

.agreements-panel__intro .overline {
  color: var(--lime);
}

.agreements-panel__intro h3 {
  max-width: 370px;
  margin: 22px 0 0;
  font-size: clamp(2.5rem, 3.8vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.agreements-panel__intro > p:last-child {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  line-height: 1.7;
}

.agreements-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  list-style: none;
  background: var(--line-light);
}

.agreement-item {
  display: grid;
  min-height: 142px;
  padding: 28px 30px;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  background: rgba(23, 20, 27, 0.94);
}

.agreement-item__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(220, 231, 189, 0.45);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.agreement-item strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-wrap: balance;
}

.agreement-item small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  line-height: 1.45;
}

.agreements-panel__footer {
  display: flex;
  padding: 24px clamp(30px, 3vw, 42px);
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, 0.055);
  border-top: 1px solid var(--line-light);
}

.agreements-panel__footer p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  line-height: 1.6;
}

.agreements-panel__footer .text-action {
  flex: 0 0 auto;
}

.benefits-note {
  max-width: 760px;
  margin: 20px 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.6;
  text-align: right;
}

.online-focus {
  display: grid;
  padding-top: clamp(90px, 8vw, 130px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.68fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(89, 50, 143, 0.07), transparent 30%),
    var(--paper);
}

.online-focus__copy h2 {
  max-width: 850px;
  margin: 28px 0 0;
}

.online-focus__copy > p:not(.overline) {
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.online-focus__actions {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.online-focus__signal {
  position: relative;
  min-height: 650px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 32%, rgba(121, 83, 173, 0.7), transparent 43%),
    var(--violet-deep);
  background-size: 72px 72px, 72px 72px, auto, auto;
  overflow: hidden;
}

.online-focus__signal::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 42%, rgba(24, 13, 49, 0.88) 82%);
  pointer-events: none;
}

.online-focus__signal > img {
  position: absolute;
  z-index: 1;
  top: 42%;
  left: 50%;
  width: 72px;
  height: auto;
  opacity: 0.82;
  transform: translate(-50%, -50%);
  animation: telemedicine-emblem 6s ease-in-out infinite;
}

.online-focus__ring {
  position: absolute;
  z-index: 0;
  top: 42%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.online-focus__ring--outer {
  width: min(37vw, 500px);
  height: min(37vw, 500px);
  animation: telemedicine-ring 5.5s ease-out infinite;
}

.online-focus__ring--inner {
  width: min(23vw, 310px);
  height: min(23vw, 310px);
  animation: telemedicine-ring 5.5s 1.1s ease-out infinite;
}

.online-focus__status {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 30px;
  display: flex;
  min-height: 40px;
  padding: 0 15px;
  align-items: center;
  gap: 10px;
  color: var(--violet-deep);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.online-focus__status > span {
  width: 7px;
  height: 7px;
  background: var(--violet);
  border-radius: 50%;
  animation: availability-pulse 2.4s ease-out infinite;
}

.online-focus__services {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 26px;
  left: 30px;
}

.online-focus__services p {
  display: flex;
  min-height: 58px;
  margin: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  font-size: 0.78rem;
}

.online-focus__services strong {
  color: var(--lime);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  padding: clamp(110px, 11vw, 180px) max(36px, calc((100vw - 1380px) / 2));
}

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

.overline {
  color: var(--violet-bright);
}

.overline--light {
  color: var(--lime);
}

.section-intro {
  display: grid;
  max-width: 1240px;
  margin-bottom: clamp(64px, 8vw, 110px);
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  column-gap: 70px;
  align-items: end;
}

.section-intro .overline {
  grid-column: 1 / -1;
  margin-bottom: 28px;
}

.section-intro h2,
.online-focus h2,
.journey h2,
.contact-block h2,
.faq-block h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-intro > p:last-child {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.care {
  background:
    radial-gradient(circle at 100% 0%, rgba(89, 50, 143, 0.06), transparent 28%),
    var(--paper);
}

.care-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.bento-cell {
  background: var(--paper);
}

.care-intro {
  position: relative;
  display: flex;
  min-height: 440px;
  padding: clamp(34px, 5vw, 68px);
  grid-column: span 7;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}

.care-intro h3 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.care-intro > p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 56px 0 0;
  color: var(--ink-soft);
}

.care-intro__ring {
  position: absolute;
  right: -18%;
  bottom: -52%;
  width: min(41vw, 580px);
  height: min(41vw, 580px);
  border: clamp(36px, 5vw, 72px) solid var(--cream);
  border-radius: 50%;
  animation: ring-breathe 10s ease-in-out infinite alternate;
}

.care-guide {
  position: relative;
  display: flex;
  min-height: 440px;
  padding: clamp(34px, 5vw, 68px);
  grid-column: span 5;
  align-items: flex-end;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 165, 214, 0.35), transparent 36%),
    var(--violet);
  overflow: hidden;
}

.care-guide > img {
  position: absolute;
  top: -43px;
  right: 34px;
  width: 126px;
  opacity: 0.08;
  transform: rotate(10deg);
  animation: guide-emblem 8s ease-in-out infinite alternate;
}

.care-guide h3 {
  max-width: 430px;
  margin: 22px 0 44px;
  font-size: clamp(2.35rem, 3.6vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.text-action {
  display: inline-flex;
  padding: 8px 0;
  align-items: center;
  gap: 12px;
  color: var(--violet);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
}

.text-action svg {
  width: 17px;
  height: 17px;
  transition: transform 220ms var(--ease);
}

.text-action:hover svg {
  transform: translateX(4px);
}

.text-action:active {
  transform: translateY(1px);
}

.text-action--light {
  color: var(--white);
}

.service-tile {
  display: flex;
  min-height: 500px;
  padding: clamp(30px, 3vw, 44px);
  grid-column: span 4;
  flex-direction: column;
  transition:
    color 380ms ease,
    background 380ms ease,
    transform 380ms var(--ease);
}

.service-tile:hover {
  color: var(--white);
  background: var(--violet-deep);
  transform: translateY(-7px);
}

.service-tile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-tile:hover .service-tile__head,
.service-tile:hover > div > p,
.service-tile:hover li {
  color: rgba(255, 255, 255, 0.64);
}

.service-tile h3 {
  max-width: 390px;
  margin: 54px 0 22px;
  font-size: clamp(2.1rem, 3vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.service-tile > div > p {
  min-height: 104px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
  transition: color 380ms ease;
}

.service-tile ul {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.service-tile li {
  padding: 10px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  transition: color 380ms ease;
}

.service-tile__footer {
  display: flex;
  margin-top: auto;
  padding-top: 35px;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.service-tile__footer strong {
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-tile:hover .text-action {
  color: var(--lime);
}

.price-note {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.67rem;
  text-align: right;
}

.journey {
  display: block;
  background: var(--cream);
}

.journey__sticky {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.journey__sticky h2 {
  max-width: 790px;
  margin-top: 28px;
}

.journey-symbol {
  position: relative;
  display: grid;
  width: 148px;
  height: 148px;
  margin-top: 0;
  place-items: center;
  background: var(--lime);
  border-radius: 50%;
  overflow: hidden;
}

.journey-symbol::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(23, 20, 27, 0.18);
  border-radius: 50%;
}

.journey-symbol img {
  width: 35px;
  height: auto;
}

.journey__cards {
  display: grid;
  margin-top: 64px;
  padding: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.journey-card {
  position: relative;
  top: auto;
  display: flex;
  min-height: 360px;
  margin: 0;
  padding: clamp(34px, 4vw, 54px);
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: none;
}

.journey-card:nth-child(2) {
  top: auto;
}

.journey-card:nth-child(3) {
  top: auto;
}

.journey-card > span {
  color: var(--violet-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-card h3 {
  max-width: 520px;
  margin: auto 0 26px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.journey-card p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
}

.journey-card--violet {
  color: var(--white);
  background: var(--violet);
}

.journey-card--dark {
  color: var(--white);
  background: var(--ink);
}

.journey-card--violet > span,
.journey-card--dark > span {
  color: var(--lime);
}

.journey-card--violet p,
.journey-card--dark p {
  color: rgba(255, 255, 255, 0.62);
}

.team {
  background:
    radial-gradient(circle at 92% 8%, rgba(89, 50, 143, 0.08), transparent 24%),
    var(--paper);
}

.section-intro--wide {
  max-width: 1380px;
}

.professionals-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  align-items: stretch;
}

.professional-discipline {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.professional-discipline--psychiatry {
  display: flex;
  min-height: 760px;
  padding: clamp(34px, 3.5vw, 52px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(126, 86, 180, 0.58), transparent 34%),
    linear-gradient(145deg, var(--violet) 0%, var(--violet-deep) 72%);
  flex-direction: column;
}

.professional-discipline--psychiatry::after {
  position: absolute;
  right: -180px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  content: "";
  border: 64px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.professional-discipline--psychology {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}

.professional-discipline__header {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.professional-discipline--psychology .professional-discipline__header {
  padding: clamp(32px, 3.2vw, 46px);
  border-bottom: 1px solid var(--line);
}

.professional-discipline__header .overline {
  color: var(--lime);
}

.professional-discipline--psychology .professional-discipline__header .overline {
  color: var(--violet);
}

.professional-discipline__header h3 {
  margin: 16px 0 0;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.professional-discipline__header > span {
  padding-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.professional-discipline--psychology .professional-discipline__header > span {
  color: var(--ink-soft);
}

.professional-featured {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  flex-direction: column;
  align-items: flex-start;
}

.professional-monogram {
  position: relative;
  display: grid;
  width: 148px;
  height: 148px;
  margin: 70px 0 48px;
  place-items: center;
  border: 1px solid rgba(220, 231, 189, 0.48);
  border-radius: 50%;
}

.professional-monogram::before,
.professional-monogram i {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.professional-monogram::before {
  inset: 16px;
}

.professional-monogram i {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 0;
  transform: translate(-50%, -50%);
  animation: availability-pulse 2.4s ease-out infinite;
}

.professional-monogram span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.professional-modality {
  margin: 0 0 15px;
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.professional-featured h4 {
  margin: 0;
  font-size: clamp(2.4rem, 3.5vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.professional-role {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.professional-details {
  width: 100%;
  margin: 42px 0 0;
}

.professional-details > div {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.professional-details dt,
.professional-row__focus > span {
  color: var(--lime);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.professional-details dd {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.65;
}

.professional-featured .text-action {
  margin-top: 18px;
}

.professional-list {
  display: grid;
}

.professional-row {
  display: grid;
  min-height: 210px;
  padding: clamp(28px, 3vw, 42px);
  grid-template-columns: 58px minmax(140px, 0.7fr) minmax(220px, 1.2fr) minmax(110px, 0.45fr);
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  border-bottom: 1px solid var(--line);
  transition:
    background 260ms ease,
    transform 300ms var(--ease);
}

.professional-row:last-child {
  border-bottom: 0;
}

.professional-row:hover {
  z-index: 1;
  background: var(--white);
  transform: translateX(-5px);
}

.professional-row__mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--violet);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.professional-row:hover .professional-row__mark {
  color: var(--violet-deep);
  background: var(--lime);
  border-color: var(--lime);
}

.professional-row__identity h4 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.professional-row__identity p {
  margin: 9px 0 0;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 600;
}

.professional-row__focus > span {
  color: var(--violet);
}

.professional-row__focus p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.55;
}

.professional-row__focus small {
  display: block;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.55;
}

.professional-row__action {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 20px;
}

.professional-row__action > span {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.professional-row__action button {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: var(--violet);
  border: 0;
  border-radius: 50%;
  transition:
    background 220ms ease,
    transform 260ms var(--ease);
}

.professional-row__action button:hover {
  background: var(--violet-bright);
  transform: translateX(4px);
}

.professional-row__action svg {
  width: 20px;
  height: 20px;
}

.professional-card {
  display: flex;
  min-width: 0;
  height: 100%;
  padding: 22px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(23, 20, 27, 0.05);
  overflow: hidden;
  transition:
    border-color 260ms ease,
    box-shadow 300ms ease,
    opacity 260ms ease,
    filter 260ms ease,
    transform 320ms var(--ease);
}

.professional-card.is-muted {
  opacity: 0.32;
  filter: saturate(0.55);
}

.professional-card:hover {
  border-color: rgba(89, 50, 143, 0.3);
  box-shadow: 0 22px 52px rgba(23, 20, 27, 0.09);
  transform: translateY(-4px);
}

.professional-card__header {
  display: grid;
  min-height: 124px;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
}

.professional-card__photo {
  --photo-position: center;
  position: relative;
  width: 104px;
  height: 124px;
  margin: 0;
  background: #e9e3ef;
  border: 1px solid rgba(89, 50, 143, 0.13);
  border-radius: 16px;
  overflow: hidden;
}

.professional-card__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  box-shadow: inset 0 -28px 40px rgba(24, 13, 49, 0.05);
  pointer-events: none;
}

.professional-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-position);
  transition: transform 700ms var(--ease);
}

.professional-card:hover .professional-card__photo img {
  transform: scale(1.045);
}

.professional-card__photo--victor,
.professional-card__photo--constanza {
  --photo-position: center 34%;
}

.professional-card__photo--eduardo {
  --photo-position: center 28%;
}

.professional-card__photo--rodrigo {
  --photo-position: center 18%;
}

.professional-card__photo--pamela {
  --photo-position: center;
}

.professional-card__photo--camila {
  --photo-position: center 25%;
}

.professional-card__photo--macarena {
  --photo-position: center;
}

.professional-card__identity {
  min-width: 0;
}

.professional-card__specialty {
  margin: 2px 0 7px;
  color: var(--violet);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.professional-card__identity h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.professional-card__profession {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 500;
  line-height: 1.42;
}

.professional-card__mode {
  align-self: flex-start;
  max-width: 100%;
  padding: 6px 9px;
  margin-top: 14px;
  color: var(--violet-deep);
  background: #e7def2;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.professional-card__section {
  padding-top: 14px;
  margin-top: 15px;
  border-top: 1px solid var(--line);
}

.professional-card__section h4 {
  margin: 0;
  color: var(--violet);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.professional-card__tags {
  display: flex;
  margin: 10px 0 0;
  padding: 0;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
}

.professional-card__tags li {
  padding: 6px 8px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.63rem;
  line-height: 1.25;
}

.professional-card__description {
  margin: 15px 0 18px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.professional-card .button {
  min-height: 44px;
  padding: 11px 16px;
  margin-top: auto;
  font-size: 0.72rem;
}

.reviews {
  position: relative;
  padding-top: clamp(88px, 8vw, 118px);
  padding-bottom: clamp(94px, 8vw, 124px);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 165, 214, 0.22), transparent 32%),
    linear-gradient(180deg, #f5f1ea 0%, var(--paper) 100%);
  overflow: hidden;
}

.reviews[id] {
  scroll-margin-top: 0;
}

.reviews::before {
  position: absolute;
  top: clamp(80px, 10vw, 150px);
  right: max(36px, calc((100vw - 1380px) / 2));
  width: clamp(210px, 24vw, 380px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(89, 50, 143, 0.1);
  border-radius: 50%;
  transform: translate(32%, -44%);
  pointer-events: none;
}

.reviews__intro {
  position: relative;
  display: grid;
  max-width: 1280px;
  margin-bottom: clamp(38px, 4vw, 54px);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.38fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
}

.reviews__heading h2 {
  max-width: 760px;
  margin: 16px 0 18px;
  color: var(--violet-deep);
  font-size: clamp(2.7rem, 4.2vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.reviews__heading > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.reviews__rating {
  position: relative;
  padding: 22px 24px 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 231, 189, 0.18), transparent 44%),
    var(--violet-deep);
  border-radius: 12px 30px 12px 12px;
  box-shadow: 0 22px 54px rgba(45, 20, 95, 0.16);
}

.reviews__rating-label {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews__rating-score {
  display: flex;
  align-items: end;
  gap: 8px;
}

.reviews__rating-score strong {
  font-size: clamp(3.3rem, 4.6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
  font-variant-numeric: tabular-nums;
}

.reviews__rating-score > span {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1;
}

.review-stars {
  color: #d6b85c;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.review-stars--large {
  display: block;
  margin-top: 14px;
  color: var(--lime);
  font-size: 0.88rem;
}

.reviews__rating p {
  margin: 6px 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.reviews__google-link {
  display: inline-flex;
  min-height: 36px;
  padding-bottom: 4px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease);
}

.reviews__google-link:hover {
  color: var(--lime);
  border-color: var(--lime);
  transform: translateX(3px);
}

.reviews__google-link svg {
  width: 17px;
  height: 17px;
}

.reviews-grid {
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 280px;
  padding: 22px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 20, 95, 0.1);
  border-radius: 11px 24px 11px 11px;
  box-shadow: 0 16px 42px rgba(45, 20, 95, 0.06);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 280ms var(--ease);
}

.review-card:hover {
  border-color: rgba(89, 50, 143, 0.25);
  box-shadow: 0 22px 52px rgba(45, 20, 95, 0.1);
  transform: translateY(-3px);
}

.review-card--violet {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 231, 189, 0.14), transparent 40%),
    var(--violet);
  border-color: transparent;
}

.review-card--lavender {
  background: #e9e1f1;
}

.review-card--cream {
  background: var(--cream);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.review-card__source {
  color: var(--ink-soft);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card--violet .review-card__source {
  color: rgba(255, 255, 255, 0.58);
}

.review-card blockquote {
  margin: 24px 0 26px;
  flex: 1;
  color: var(--violet-deep);
  font-size: clamp(1.04rem, 1.25vw, 1.2rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.4;
  text-wrap: pretty;
}

.review-card--violet blockquote {
  color: var(--white);
}

.review-card footer {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
}

.review-card__avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--violet);
  background: var(--lime);
  border-radius: 9px;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.review-card footer > span:last-child {
  display: grid;
  gap: 2px;
}

.review-card footer strong {
  font-size: 0.76rem;
  font-weight: 600;
}

.review-card footer small {
  color: var(--ink-soft);
  font-size: 0.63rem;
  line-height: 1.35;
}

.review-card--violet footer small {
  color: rgba(255, 255, 255, 0.6);
}

.reviews__footnote {
  display: flex;
  max-width: 1280px;
  margin-top: 22px;
  padding-top: 16px;
  justify-content: space-between;
  gap: 30px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.66rem;
}

.reviews__footnote p {
  max-width: 560px;
  margin: 0;
}

.contact-faq {
  display: grid;
  gap: clamp(120px, 14vw, 220px);
  background: var(--paper);
}

.contact-block {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.contact-block__copy {
  position: sticky;
  top: 140px;
}

.contact-block h2 {
  max-width: 700px;
  margin-top: 27px;
}

.contact-block__copy > p:not(.overline) {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--ink-soft);
}

.clinic-details {
  display: grid;
  max-width: 640px;
  margin-top: 44px;
  grid-template-columns: 0.8fr 1.2fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clinic-details > div {
  padding: 22px 24px 22px 0;
}

.clinic-details > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.clinic-details span,
.clinic-details strong,
.clinic-details p {
  display: block;
}

.clinic-details span {
  margin-bottom: 9px;
  color: var(--violet-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.clinic-details strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.clinic-details p,
.clinic-details a {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.clinic-details a {
  display: inline;
  border-bottom: 1px solid var(--line);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.clinic-details a:hover {
  color: var(--violet);
  border-color: var(--violet);
}

.contact-whatsapp {
  margin-top: 28px;
}

.booking-invitation {
  position: relative;
  display: flex;
  min-height: 610px;
  padding: clamp(34px, 5vw, 68px);
  justify-content: space-between;
  flex-direction: column;
  gap: 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 5%, rgba(184, 165, 214, 0.34), transparent 31%),
    linear-gradient(145deg, var(--violet), var(--violet-deep));
  box-shadow: 0 30px 90px rgba(35, 17, 66, 0.18);
  overflow: hidden;
}

.booking-invitation::before {
  position: absolute;
  right: -190px;
  bottom: -230px;
  width: 540px;
  height: 540px;
  content: "";
  border: 72px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.booking-invitation > * {
  position: relative;
  z-index: 1;
}

.booking-invitation__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.booking-invitation__top > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-invitation__top i {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(220, 231, 189, 0.1);
  animation: availability-pulse 2.2s ease-out infinite;
}

.booking-invitation__top img {
  width: 72px;
  opacity: 0.72;
}

.booking-invitation h3 {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.booking-invitation > div > p:last-child {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.booking-invitation .button {
  width: 100%;
}

.booking-invitation > small {
  margin-top: -36px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
}

.modal-open {
  overflow: hidden;
}

.booking-modal {
  width: min(1120px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  overflow: visible;
}

.booking-modal::backdrop {
  background: rgba(15, 8, 29, 0.76);
  backdrop-filter: blur(12px);
  animation: modal-backdrop-in 260ms ease both;
}

.booking-modal[open] {
  animation: modal-surface-in 440ms var(--ease) both;
}

.booking-modal__surface {
  position: relative;
  display: grid;
  max-height: calc(100dvh - 32px);
  grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1fr);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  box-shadow: 0 42px 120px rgba(10, 5, 20, 0.44);
  overflow: auto;
  overscroll-behavior: contain;
}

.booking-modal__header {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 42px 52px 48px;
  justify-content: flex-end;
  flex-direction: column;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 0%, rgba(184, 165, 214, 0.34), transparent 36%),
    var(--violet-deep);
  overflow: hidden;
}

.booking-modal__header > *:not(.booking-modal__emblem) {
  position: relative;
  z-index: 1;
}

.booking-modal__status {
  display: flex;
  margin-bottom: auto;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-modal__status span {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(220, 231, 189, 0.1);
}

.booking-modal__header h2 {
  max-width: 440px;
  margin: 18px 0 0;
  font-size: clamp(3.1rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.booking-modal__header > p:last-child {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.booking-modal__emblem {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 310px;
  opacity: 0.055;
  transform: rotate(-8deg);
}

.booking-modal__close {
  position: absolute !important;
  z-index: 3 !important;
  top: 28px;
  right: 28px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.booking-modal__close:hover {
  color: var(--violet-deep);
  background: var(--lime);
  transform: rotate(5deg);
}

.booking-modal__close svg {
  width: 20px;
  height: 20px;
}

.crm-form-shell {
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 26px 80px rgba(54, 31, 68, 0.08);
}

.crm-form-shell--modal {
  max-width: none;
  align-self: start;
  border: 0;
  box-shadow: none;
}

.crm-form-shell__body {
  min-height: 646px;
  background: var(--white);
}

.crm-form-shell iframe {
  display: block;
  width: 100%;
  min-height: 646px;
}

.crm-form-shell__privacy {
  margin: 0;
  padding: 16px 32px 18px;
  color: var(--ink-soft);
  background: var(--cream);
  border-top: 1px solid var(--line);
  font-size: 0.65rem;
  line-height: 1.5;
}

@keyframes modal-backdrop-in {
  from {
    opacity: 0;
  }
}

@keyframes modal-surface-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.965);
  }
}

.faq-block {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(520px, 1fr);
  gap: clamp(70px, 11vw, 170px);
}

.faq-block__heading h2 {
  margin-top: 27px;
}

.accordion {
  border-top: 1px solid var(--ink);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 88px;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 1.05rem;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

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

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details > p {
  max-width: 690px;
  margin: -4px 0 0;
  padding: 0 60px 28px 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.accordion details[open] > p {
  animation: faq-content-in 320ms var(--ease) both;
}

.closing-cta {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 120px 36px;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 100%, rgba(184, 165, 214, 0.36), transparent 38%),
    var(--violet);
  text-align: center;
  overflow: hidden;
}

.closing-cta > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 28vw, 470px);
  opacity: 0.045;
  transform: translate(-50%, -47%) rotate(-7deg);
  animation: closing-emblem 14s ease-in-out infinite alternate;
}

.closing-cta > div {
  position: relative;
  z-index: 1;
}

.closing-cta h2 {
  max-width: 1080px;
  margin: 32px auto 0;
  font-size: clamp(4rem, 7.2vw, 8rem);
}

.site-footer {
  display: grid;
  padding: 80px max(36px, calc((100vw - 1380px) / 2)) 36px;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 56px;
  color: rgba(255, 255, 255, 0.64);
  background: #100d14;
  font-size: 0.76rem;
}

.site-footer__brand img {
  width: 142px;
  height: auto;
}

.site-footer__brand p {
  margin: 22px 0 0;
}

.site-footer > div:not(.site-footer__brand) {
  display: grid;
  align-content: start;
  gap: 11px;
}

.site-footer > div > span {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.site-footer button {
  width: fit-content;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--white);
}

.site-footer__legal {
  padding-top: 32px;
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-light);
  font-size: 0.65rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 850;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: auto;
  min-width: 196px;
  min-height: 62px;
  padding: 7px 17px 7px 8px;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, var(--violet-bright), var(--violet-deep));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow:
    0 16px 40px rgba(24, 13, 49, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 0.74rem;
  font-weight: 700;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.floating-whatsapp:hover {
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(135deg, #68409c, var(--violet));
  box-shadow:
    0 21px 48px rgba(45, 20, 95, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.floating-whatsapp:active {
  transform: translateY(-1px) scale(0.985);
}

.floating-whatsapp svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  flex: 0 0 auto;
  color: var(--violet-deep);
  background: var(--lime);
  border-radius: 50%;
  fill: currentColor;
  stroke: none;
}

.floating-whatsapp span {
  display: grid;
  gap: 1px;
  color: var(--white);
}

.floating-whatsapp span strong {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}

.floating-whatsapp span small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.61rem;
  font-weight: 500;
  line-height: 1.25;
}

.mobile-sticky {
  display: none;
}

:where(.button, .header-action, .text-action, .menu-button, .reviews__google-link) {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 4px;
}

@keyframes orbit-one {
  0% {
    transform: translateX(-50%) scale(0.97);
  }
  100% {
    transform: translateX(-47%) translateY(24px) scale(1.035);
  }
}

@keyframes orbit-two {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-28px, -18px, 0) scale(1.06);
  }
}

@keyframes line-breathe {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.82);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes symbol-breathe {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 0 rgba(220, 231, 189, 0);
  }
  50% {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 9px rgba(220, 231, 189, 0.035);
  }
}

@keyframes symbol-turn {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-3px) rotate(5deg);
  }
}

@keyframes availability-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(55, 167, 111, 0.32);
  }
  75%,
  100% {
    box-shadow: 0 0 0 8px rgba(55, 167, 111, 0);
  }
}

@keyframes ring-breathe {
  0% {
    transform: rotate(-5deg) scale(0.96);
  }
  100% {
    transform: rotate(7deg) scale(1.06);
  }
}

@keyframes guide-emblem {
  0% {
    transform: translateY(0) rotate(6deg);
  }
  100% {
    transform: translateY(20px) rotate(14deg);
  }
}

@keyframes faq-content-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes closing-emblem {
  0% {
    transform: translate(-50%, -47%) rotate(-7deg) scale(0.96);
  }
  100% {
    transform: translate(-50%, -51%) rotate(4deg) scale(1.04);
  }
}

@keyframes telemedicine-emblem {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(220, 231, 189, 0));
    transform: translate(-50%, -50%) rotate(-3deg) scale(0.96);
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(220, 231, 189, 0.26));
    transform: translate(-50%, -52%) rotate(4deg) scale(1.05);
  }
}

@keyframes telemedicine-ring {
  0% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(0.82);
  }
  55% {
    opacity: 0.62;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

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

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    justify-self: end;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
  }

  .menu-button span:not(.sr-only) {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 17px;
    height: 1px;
    margin: 0;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-button span:first-child {
    transform: translate(-50%, -4px);
  }

  .menu-button span:nth-child(2) {
    transform: translate(-50%, 4px);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    padding: 28px;
    gap: 0;
    color: var(--white);
    background: var(--violet-deep);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(16, 13, 20, 0.24);
  }

  .mobile-menu a,
  .mobile-menu button {
    width: 100%;
    padding: 16px 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-light);
    text-align: left;
  }

  .mobile-menu__action {
    margin-top: 12px;
    color: var(--violet-deep);
    background: var(--lime);
    border: 0 !important;
    border-radius: 999px;
    text-align: center;
  }

  .care-intro {
    grid-column: span 7;
  }

  .care-guide {
    grid-column: span 5;
  }

  .service-tile {
    grid-column: span 4;
  }

  .journey {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .contact-block,
  .faq-block {
    gap: 70px;
  }

  .professionals-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .care-choice__options {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 900px) {
  :root {
    --page: calc(100vw - 40px);
  }

  .site-header {
    top: 12px;
    right: 14px;
    left: 14px;
    width: calc(100vw - 28px);
    min-height: 64px;
    padding-left: 20px;
  }

  .brand,
  .brand img {
    width: 98px;
  }

  .brand {
    height: 40px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 780px;
    padding: 125px 22px 90px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.6rem, 10vw, 6rem);
  }

  .hero__lead {
    max-width: 610px;
  }

  .assurance {
    justify-content: flex-start;
  }

  .care-choice {
    padding-right: 28px;
    padding-left: 28px;
  }

  .care-choice__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .care-choice__intro > p {
    max-width: 620px;
  }

  .section {
    padding: 110px 28px;
  }

  .benefits-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefits-intro__aside {
    max-width: 620px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-card--fonasa {
    min-height: 380px;
    grid-column: 1 / -1;
  }

  .agreements-panel {
    grid-template-columns: 1fr;
  }

  .agreements-panel__intro {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .online-focus {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .online-focus__copy {
    max-width: 760px;
  }

  .online-focus__signal {
    min-height: 580px;
  }

  .online-focus__ring--outer {
    width: min(72vw, 480px);
    height: min(72vw, 480px);
  }

  .online-focus__ring--inner {
    width: min(46vw, 300px);
    height: min(46vw, 300px);
  }

  .section-intro h2 {
    max-width: 760px;
  }

  .section-intro > p:last-child {
    margin-top: 28px;
  }

  .care-intro,
  .care-guide {
    grid-column: 1 / -1;
  }

  .service-tile {
    min-height: 510px;
    grid-column: span 6;
  }

  .service-tile:last-child {
    grid-column: 1 / -1;
  }

  .service-tile > div > p {
    min-height: 0;
  }

  .journey {
    grid-template-columns: 1fr;
  }

  .journey__sticky {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .journey__cards {
    grid-template-columns: 1fr;
  }

  .journey__sticky,
  .contact-block__copy {
    position: static;
  }

  .journey-symbol {
    margin-top: 50px;
  }

  .journey__cards {
    padding-bottom: 0;
  }

  .journey-card,
  .journey-card:nth-child(2),
  .journey-card:nth-child(3) {
    position: relative;
    top: auto;
    min-height: 390px;
    margin-bottom: 18px;
  }

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

  .professional-card__photo {
    width: 104px;
    height: 124px;
  }

  .professional-card__header {
    min-height: 124px;
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .professional-discipline--psychiatry {
    min-height: 0;
  }

  .professional-featured {
    max-width: 760px;
    margin-top: 72px;
  }

  .professional-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .professional-row {
    grid-template-columns: 54px minmax(150px, 0.65fr) minmax(220px, 1fr) minmax(110px, 0.42fr);
  }

  .contact-block,
  .faq-block {
    grid-template-columns: 1fr;
  }

  .booking-invitation {
    max-width: 720px;
  }

  .booking-modal {
    width: min(760px, calc(100vw - 24px));
  }

  .booking-modal__surface {
    display: block;
  }

  .booking-modal__header {
    min-height: 330px;
  }

  .booking-modal__status {
    margin-bottom: 50px;
  }

  .crm-form-shell {
    max-width: 720px;
  }

  .site-footer {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .site-footer > div:nth-child(4) {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
  }

  .professionals-directory {
    grid-template-columns: 1fr;
  }

  .assurance {
    display: grid;
    min-height: 0;
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-content: stretch;
    gap: 14px 18px;
    overflow: visible;
  }

  .assurance p {
    align-items: flex-start;
    white-space: normal;
    font-size: 0.66rem;
    line-height: 1.4;
  }

  .assurance p + p::before {
    width: 6px;
    height: 6px;
    margin-top: 4px;
    flex: 0 0 auto;
  }

  .hero {
    min-height: 760px;
    padding: 118px 20px 88px;
  }

  .hero::before {
    background-size: 56px 56px;
  }

  .hero__eyebrow {
    max-width: 290px;
    line-height: 1.6;
  }

  .hero h1 {
    margin-top: 30px;
    font-size: clamp(3.4rem, 14vw, 4.65rem);
    line-height: 0.93;
  }

  .inline-symbol {
    width: 69px;
    margin: 0 0.04em;
  }

  .hero__lead {
    margin-top: 28px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero__actions,
  .closing-cta__actions {
    width: 100%;
    margin-top: 32px;
    flex-direction: column;
  }

  .hero__actions .button,
  .closing-cta__actions .button {
    width: 100%;
  }

  .hero__scroll {
    bottom: 20px;
  }

  .assurance {
    padding-right: 22px;
    padding-left: 22px;
    gap: 26px;
  }

  .care-choice {
    padding: 68px 20px 78px;
  }

  .care-choice__intro {
    margin-bottom: 34px;
  }

  .care-choice__fonasa {
    padding: 16px 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    font-size: 0.72rem;
  }

  .care-choice__intro h2 {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
  }

  .care-choice__options {
    grid-template-columns: 1fr;
  }

  .care-choice__option {
    display: grid;
    min-height: 0;
    padding: 22px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 20px 12px;
  }

  .care-choice__option strong {
    font-size: 1.45rem;
  }

  .care-choice__action {
    margin: 0;
    grid-column: 2;
  }

  .section {
    padding: 90px 20px;
  }

  .benefits-intro {
    margin-bottom: 48px;
    gap: 28px;
  }

  .benefits-intro h2 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card--fonasa {
    min-height: 350px;
    padding: 30px;
    grid-column: auto;
  }

  .benefit-card h3 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  .agreements-panel {
    margin-bottom: 12px;
  }

  .agreements-panel__intro {
    padding: 34px 28px;
  }

  .agreements-panel__intro h3 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .agreements-list {
    grid-template-columns: 1fr;
  }

  .agreement-item {
    min-height: 104px;
    padding: 22px 24px;
  }

  .agreements-panel__footer {
    padding: 26px 28px 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .benefits-note {
    margin-left: 0;
    text-align: left;
  }

  .section-intro {
    margin-bottom: 54px;
  }

  .section-intro .overline {
    margin-bottom: 20px;
  }

.section-intro h2,
  .online-focus h2,
  .journey h2,
  .contact-block h2,
  .faq-block h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .care-bento {
    display: block;
    padding: 0;
    background: transparent;
  }

  .online-focus {
    gap: 48px;
  }

  .online-focus__copy > p:not(.overline) {
    font-size: 0.96rem;
  }

  .online-focus__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .online-focus__actions .button {
    width: 100%;
  }

  .online-focus__actions .text-action {
    width: fit-content;
  }

  .online-focus__signal {
    min-height: 520px;
  }

  .online-focus__status {
    top: 22px;
    left: 22px;
  }

  .online-focus__services {
    right: 22px;
    bottom: 18px;
    left: 22px;
  }

  .care-bento > * {
    margin-bottom: 12px;
    border: 1px solid var(--line);
  }

  .care-intro,
  .care-guide {
    min-height: 480px;
    padding: 30px;
  }

  .care-intro h3,
  .care-guide h3 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .care-intro__ring {
    right: -40%;
    bottom: -24%;
    width: 400px;
    height: 400px;
    border-width: 48px;
  }

  .service-tile {
    min-height: 460px;
    padding: 30px;
  }

  .service-tile h3 {
    margin-top: 58px;
  }

  .price-note {
    text-align: left;
  }

  .journey {
    gap: 58px;
  }

  .journey__sticky {
    display: block;
  }

  .journey-symbol {
    width: 110px;
    height: 110px;
    margin-top: 40px;
  }

  .journey-card,
  .journey-card:nth-child(2),
  .journey-card:nth-child(3) {
    min-height: 310px;
    padding: 30px;
  }

  .journey-card h3 {
    font-size: 2.65rem;
  }

  .professional-discipline--psychiatry {
    padding: 32px 28px 38px;
  }

  .professional-discipline--psychology .professional-discipline__header {
    padding: 32px 28px;
  }

  .professional-discipline__header {
    gap: 14px;
  }

  .professional-discipline__header h3 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .professional-discipline__header > span {
    max-width: 100px;
    line-height: 1.45;
    text-align: right;
    white-space: normal;
  }

  .professional-featured {
    margin-top: 54px;
  }

  .professional-monogram {
    width: 116px;
    height: 116px;
    margin: 0 0 38px;
  }

  .professional-featured h4 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .professional-details {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .professional-row {
    min-height: 0;
    padding: 28px 24px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 22px 18px;
  }

  .professional-row:hover {
    transform: none;
  }

  .professional-row__mark {
    width: 48px;
    height: 48px;
  }

  .professional-row__focus,
  .professional-row__action {
    grid-column: 1 / -1;
  }

  .professional-row__focus p {
    font-size: 1rem;
  }

  .professional-row__focus small {
    font-size: 0.82rem;
  }

  .professional-row__action {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
  }

  .professional-row__action > span {
    text-align: left;
  }

  .professional-card:hover {
    transform: none;
  }

  .professional-card {
    padding: 20px;
  }

  .professional-card__photo {
    width: 104px;
    height: 124px;
  }

  .professional-card__header {
    min-height: 124px;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
  }

  .professional-card__mode {
    display: inline-flex;
  }

  .professional-card__description {
    font-size: 0.8rem;
  }

  .professional-card__tags li {
    font-size: 0.66rem;
  }

  .reviews.section {
    padding: 52px 20px 72px;
  }

  .reviews__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reviews__heading h2 {
    margin: 13px 0 15px;
    font-size: clamp(2.35rem, 10.8vw, 2.8rem);
    line-height: 1.02;
  }

  .reviews__heading > p:last-child {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .reviews__rating {
    display: grid;
    max-width: none;
    padding: 18px 20px 19px;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
  }

  .reviews__rating-label {
    margin-bottom: 12px;
    grid-column: 1 / -1;
  }

  .reviews__rating-score {
    grid-row: 2 / span 2;
  }

  .reviews__rating-score strong {
    font-size: 3.15rem;
  }

  .reviews__rating .review-stars--large {
    margin-top: 0;
    grid-column: 2;
  }

  .reviews__rating p {
    margin: 3px 0 0;
    grid-column: 2;
  }

  .reviews__google-link {
    margin-top: 12px;
    grid-column: 1 / -1;
  }

  .reviews-grid {
    display: grid;
    margin-right: -20px;
    padding-right: 20px;
    grid-template-columns: none;
    grid-auto-columns: min(82vw, 320px);
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .review-card {
    min-height: 270px;
    padding: 22px 20px;
    scroll-snap-align: start;
  }

  .review-card:hover {
    transform: none;
  }

  .review-card blockquote {
    margin: 24px 0 26px;
    font-size: 1.12rem;
  }

  .reviews__footnote {
    flex-direction: column;
    gap: 10px;
  }

  .booking-invitation {
    min-height: 570px;
    padding: 30px 24px;
    gap: 44px;
  }

  .booking-invitation__top img {
    width: 56px;
  }

  .booking-invitation h3 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .booking-invitation > small {
    margin-top: -28px;
    line-height: 1.5;
  }

  .booking-modal {
    width: calc(100vw - 12px);
    max-height: calc(100dvh - 12px);
  }

  .booking-modal__surface {
    max-height: calc(100dvh - 12px);
    border-radius: 22px;
  }

  .booking-modal__header {
    min-height: 310px;
    padding: 34px 24px 38px;
  }

  .booking-modal__status {
    max-width: 220px;
    margin-bottom: 44px;
    line-height: 1.45;
  }

  .booking-modal__header h2 {
    max-width: 320px;
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  .booking-modal__header > p:last-child {
    padding-right: 8px;
    font-size: 0.8rem;
  }

  .booking-modal__close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .booking-modal__emblem {
    right: -82px;
    bottom: -80px;
    width: 250px;
  }

  .crm-form-shell__privacy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .clinic-details {
    grid-template-columns: 1fr;
  }

  .clinic-details > div {
    padding: 20px 0;
  }

  .clinic-details > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .faq-block {
    gap: 50px;
  }

  .accordion summary {
    min-height: 82px;
    font-size: 0.94rem;
  }

  .accordion details > p {
    padding-right: 0;
  }

  .closing-cta {
    min-height: 670px;
    padding: 90px 20px;
  }

  .closing-cta h2 {
    font-size: clamp(3.7rem, 16vw, 5.3rem);
  }

  .site-footer {
    padding: 66px 20px 28px;
    grid-template-columns: 1fr 1fr;
    gap: 46px 24px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer > div:nth-child(4) {
    grid-column: auto;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 68px;
    padding: 8px;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    background: rgba(251, 250, 247, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 280ms var(--ease);
  }

  .mobile-sticky a,
  .mobile-sticky button {
    display: grid;
    padding: 0;
    place-items: center;
    color: var(--white);
    background: var(--violet);
    border: 0;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
  }

  .mobile-sticky > :last-child {
    color: var(--violet-deep);
    background: #e6dcf3;
  }

}

@media (min-width: 901px) and (max-width: 1120px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .reviews__intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .reviews__rating {
    max-width: 390px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
