:root {
  --purple: #540164;
  --purple-strong: #42104f;
  --purple-soft: #7a3b85;
  --pink: #ef5394;
  --teal: #045b64;
  --text: #29232b;
  --muted: #62606a;
  --line: rgba(84, 1, 100, 0.12);
  --background: #ffffff;
  --background-soft: #faf8fa;
  --whatsapp: #25d366;
  --shadow: 0 18px 45px rgba(42, 32, 48, 0.08);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(4, 91, 100, 0.38);
  outline-offset: 4px;
}

.text-reveal {
  --reveal-delay: 0ms;
}

.reveal-ready .text-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(7px);
  clip-path: inset(0 0 12% 0);
}

.reveal-ready .hero h1.text-reveal {
  transform: translate3d(0, 30px, 0);
  clip-path: inset(0 0 18% 0);
}

.reveal-ready .text-reveal.is-visible {
  animation: text-reveal 860ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay) both;
}

.button-reveal {
  --button-reveal-delay: 0ms;
}

.brand-reveal {
  --brand-reveal-delay: 0ms;
}

.card-reveal {
  --card-reveal-delay: 0ms;
}

.medical-info-reveal {
  --medical-info-reveal-delay: 0ms;
}

.reveal-ready .button-reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.98);
  filter: blur(5px);
}

.reveal-ready .brand-reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(4px);
}

.reveal-ready .card-reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.97);
  filter: blur(6px);
}

.reveal-ready .medical-info-reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(18px, 0, 0);
  filter: blur(5px);
}

.reveal-ready .button-reveal.is-visible {
  animation: button-reveal 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--button-reveal-delay) backwards;
}

.reveal-ready .brand-reveal.is-visible {
  animation: brand-reveal 780ms cubic-bezier(0.16, 1, 0.3, 1) var(--brand-reveal-delay) backwards;
}

.reveal-ready .card-reveal.is-visible {
  animation: card-reveal 820ms cubic-bezier(0.16, 1, 0.3, 1) var(--card-reveal-delay) backwards;
}

.reveal-ready .card-reveal.is-visible .situation-card__icon {
  animation: icon-settle 760ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--card-reveal-delay) + 170ms) backwards;
}

.reveal-ready .medical-info-reveal.is-visible {
  animation: medical-info-reveal 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--medical-info-reveal-delay) backwards;
}

.reveal-ready .medical-info-reveal.is-visible .medical-info-item__icon {
  animation: medical-icon-reveal 680ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--medical-info-reveal-delay) + 120ms) backwards;
}

@keyframes text-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(7px);
    clip-path: inset(0 0 18% 0);
  }

  62% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes brand-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes button-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
    filter: blur(5px);
  }

  70% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes card-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.97);
    filter: blur(6px);
  }

  68% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes icon-settle {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.82);
  }

  70% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.06);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes medical-info-reveal {
  0% {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
    filter: blur(5px);
  }

  72% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes medical-icon-reveal {
  0% {
    opacity: 0;
    transform: translate3d(-6px, 0, 0) scale(0.78);
  }

  70% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(84, 1, 100, 0.08);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 24px rgba(42, 32, 48, 0.05);
}

.header-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 36px;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .header-shell {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(120px, 9vw, 142px);
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand {
  width: clamp(108px, 7.8vw, 124px);
}

.brand__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  color: var(--purple-strong);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  padding-block: 10px;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 24px;
  background: var(--purple);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(84, 1, 100, 0.12);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.header-cta,
.btn,
.whatsapp-float,
.final-cta__whatsapp-button,
.mobile-menu__cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.header-cta::after,
.btn::after,
.whatsapp-float::after,
.final-cta__whatsapp-button::after,
.mobile-menu__cta::after {
  content: "";
  position: absolute;
  inset: -30% -45%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 34%,
    rgba(255, 255, 255, 0.34) 48%,
    transparent 62%
  );
  transform: translateX(-78%) skewX(-14deg);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--secondary::after,
.whatsapp-float::after {
  background: linear-gradient(
    110deg,
    transparent 34%,
    rgba(84, 1, 100, 0.09) 48%,
    transparent 62%
  );
}

.header-cta:hover::after,
.btn:hover::after,
.whatsapp-float:hover::after,
.final-cta__whatsapp-button:hover::after,
.mobile-menu__cta:hover::after {
  transform: translateX(78%) skewX(-14deg);
}

.header-cta:hover,
.btn--primary:hover {
  background: var(--purple-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(84, 1, 100, 0.18);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(500px, 33.5vw, 620px);
  display: flex;
  align-items: stretch;
  background: #fff;
  --hero-bg-x: 0px;
  --hero-bg-y: 0px;
}

.hero > .container {
  width: min(100% - clamp(28px, 3.2vw, 64px), 1680px);
}

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

.hero::before {
  z-index: 0;
  inset: -70px -40px -86px;
  background-image: url("../img/hero-background.png");
  background-repeat: no-repeat;
  background-size: clamp(1200px, 80vw, 1520px) auto;
  background-position: calc(100% + 8px) calc(34% + var(--hero-bg-y));
  transform: scale(1.035);
  transform-origin: 72% 50%;
  will-change: background-position;
}

.hero::after {
  z-index: 1;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.98) 25%,
    rgba(255, 255, 255, 0.68) 32%,
    rgba(255, 255, 255, 0.22) 38%,
    rgba(255, 255, 255, 0) 45%
  );
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  align-items: center;
  min-height: clamp(500px, 33.5vw, 620px);
}

.hero__content {
  padding: 38px 0 34px;
}

.hero__eyebrow {
  margin: 0 0 15px;
  color: var(--teal);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.35vw, 61px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--purple);
  overflow-wrap: break-word;
  hyphens: auto;
}

.h1-mobile {
  display: none;
}

.hero__lead {
  max-width: 545px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.86;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  min-width: 218px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  padding: 0 25px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn span {
  font-size: 24px;
  line-height: 0;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 24px rgba(84, 1, 100, 0.13);
}

.btn--secondary {
  border: 1px solid rgba(84, 1, 100, 0.58);
  color: var(--purple);
  background: #fff;
}

.btn--secondary:hover {
  border-color: var(--purple);
  background: rgba(84, 1, 100, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(84, 1, 100, 0.08);
}

.hero__modes {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 42px 0 0;
  color: #686071;
  font-size: 14px;
  line-height: 1.4;
}

.hero__modes svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-values {
  background: #fbf8fc;
  border-block: 1px solid rgba(84, 1, 100, 0.055);
}

.brand-values__inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  padding-inline: 20px;
}

.brand-value {
  color: var(--purple);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-value--science {
  color: var(--teal);
}

.brand-value--empathy {
  color: var(--pink);
}

.brand-value--trust {
  color: var(--purple);
}

.brand-values__separator {
  color: rgba(84, 1, 100, 0.34);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1;
}

.second-opinion-situations {
  scroll-margin-top: 124px;
  padding: 36px 0 42px;
  background: #fff;
}

.second-opinion-situations h2 {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--purple);
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 1.75vw, 1.75rem);
  line-height: 1.26;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 28px;
}

.situation-card {
  min-height: 154px;
  height: 100%;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 20px 18px 18px;
  border: 1px solid rgba(84, 1, 100, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(40, 20, 50, 0.025);
  text-align: center;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 180ms ease, box-shadow 220ms ease;
}

.situation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(84, 1, 100, 0.22);
  box-shadow: 0 16px 34px rgba(40, 20, 50, 0.065);
}

.situation-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.situation-card:hover .situation-card__icon {
  transform: translateY(-2px) scale(1.04);
}

.situation-card__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
}

.situation-card--teal .situation-card__icon {
  color: var(--teal);
  background: rgba(4, 91, 100, 0.095);
}

.situation-card--pink .situation-card__icon {
  color: var(--pink);
  background: rgba(239, 83, 148, 0.105);
}

.situation-card--purple .situation-card__icon {
  color: var(--purple);
  background: rgba(84, 1, 100, 0.08);
}

.situation-card h3 {
  max-width: 190px;
  margin: 15px 0 0;
  color: var(--purple-strong);
  font-size: 0.95rem;
  line-height: 1.22;
  font-weight: 700;
}

.situation-card p {
  max-width: 210px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.48;
}

.second-opinion-detail {
  scroll-margin-top: 124px;
  padding: 40px 0 42px;
  background: #fff;
  border-block: 1px solid rgba(84, 1, 100, 0.07);
}

.second-opinion-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(42px, 5vw, 78px);
}

.second-opinion-detail__content {
  max-width: 500px;
}

.second-opinion-detail__content h2 {
  margin: 0;
  color: var(--purple);
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.24;
  font-weight: 600;
  letter-spacing: 0;
}

.second-opinion-detail__content p {
  max-width: 510px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.medical-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 4.7vw, 68px);
  row-gap: 30px;
  padding-left: clamp(42px, 5vw, 72px);
  border-left: 1px solid rgba(84, 1, 100, 0.12);
}

.medical-info-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--purple-strong);
  font-size: 0.92rem;
  line-height: 1.28;
  font-weight: 700;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms ease;
}

.medical-info-item:hover {
  transform: translateX(4px);
}

.medical-info-item__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  color: currentColor;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.medical-info-item:hover .medical-info-item__icon {
  transform: scale(1.08);
}

.medical-info-item__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.medical-info-item--teal {
  color: var(--teal);
}

.medical-info-item--pink {
  color: var(--pink);
}

.medical-info-item--purple {
  color: var(--purple);
}

.medical-info-item__label {
  color: var(--purple-strong);
  overflow-wrap: anywhere;
}

.how-it-works {
  scroll-margin-top: 124px;
  padding: 32px 0 38px;
  background: #fff;
  border-bottom: 1px solid rgba(84, 1, 100, 0.07);
}

.how-it-works__title {
  margin: 0;
  color: var(--purple);
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.how-it-works__timeline {
  position: relative;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin: 18px auto 0;
  padding-top: 18px;
}

.how-it-works__timeline::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 16.666%;
  right: 16.666%;
  height: 1px;
  background: rgba(84, 1, 100, 0.22);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-step__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(42, 32, 48, 0.08);
}

.process-step--one .process-step__number {
  background: var(--teal);
}

.process-step--two .process-step__number {
  background: var(--pink);
}

.process-step--three .process-step__number {
  background: var(--purple);
}

.process-step__content {
  max-width: 240px;
  margin-top: 22px;
}

.process-step h3 {
  margin: 0;
  color: var(--purple-strong);
  font-size: 0.95rem;
  line-height: 1.28;
  font-weight: 700;
}

.process-step--one h3 {
  color: var(--teal);
}

.process-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.specialists {
  scroll-margin-top: 124px;
  padding: 30px 0 42px;
  background: #fff;
  border-bottom: 1px solid rgba(84, 1, 100, 0.07);
}

.specialists__title {
  margin: 0;
  color: var(--purple);
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.specialists__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  margin-top: 22px;
}

.specialist-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(170px, 36%) minmax(0, 1fr);
  gap: 20px;
  padding: 14px;
  border: 1px solid rgba(84, 1, 100, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(40, 20, 50, 0.025);
}

.specialist-card__photo {
  min-height: 318px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--background-soft);
}

.specialist-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.specialist-card:first-child .specialist-card__photo img {
  object-position: 52% 28%;
}

.specialist-card:nth-child(2) .specialist-card__photo img {
  object-position: 52% 34%;
}

.specialist-card__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 4px 4px 0 0;
}

.specialist-card h3 {
  margin: 0;
  color: var(--purple);
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 1.35vw, 1.38rem);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.specialist-card__role {
  margin: 6px 0 0;
  color: var(--teal);
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 700;
}

.specialist-card__credentials {
  margin: 12px 0 0;
  padding-left: 17px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.42;
}

.specialist-card__credentials li {
  margin: 0 0 6px;
  padding-left: 2px;
}

.specialist-card__credentials li::marker {
  color: rgba(84, 1, 100, 0.62);
  font-size: 0.7em;
}

.specialist-card__availability {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid rgba(84, 1, 100, 0.1);
}

.specialist-card__availability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 600;
}

.specialist-card__availability-row + .specialist-card__availability-row {
  margin-top: 8px;
}

.specialist-card__availability span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.specialist-card__availability svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-modes {
  scroll-margin-top: 124px;
  padding: 32px 0 44px;
  background: #fff;
  border-bottom: 1px solid rgba(84, 1, 100, 0.07);
}

.consultation-modes__title {
  margin: 0;
  color: var(--purple);
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.consultation-modes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
  margin-top: 26px;
}

.consultation-mode-card {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(84, 1, 100, 0.13);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(40, 20, 50, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.consultation-mode-card:hover {
  transform: translateY(-2px);
  border-color: rgba(84, 1, 100, 0.2);
  box-shadow: 0 10px 22px rgba(40, 20, 50, 0.04);
}

.consultation-mode-card__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: currentColor;
}

.consultation-mode-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-mode-card--teal {
  color: var(--teal);
}

.consultation-mode-card--pink {
  color: var(--pink);
}

.consultation-mode-card--purple {
  color: var(--purple);
}

.consultation-mode-card--teal .consultation-mode-card__icon {
  background: rgba(4, 91, 100, 0.11);
}

.consultation-mode-card--pink .consultation-mode-card__icon {
  background: rgba(239, 83, 148, 0.1);
}

.consultation-mode-card--purple .consultation-mode-card__icon {
  background: rgba(84, 1, 100, 0.08);
}

.consultation-mode-card h3 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  line-height: 1.25;
  font-weight: 700;
}

.consultation-mode-card p {
  max-width: 330px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq {
  scroll-margin-top: 124px;
  padding: 32px 0 48px;
  background: #fff;
}

.faq__title {
  margin: 0;
  color: var(--purple);
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.faq__accordion {
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(84, 1, 100, 0.13);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(40, 20, 50, 0.02);
}

.faq-item {
  border-bottom: 1px solid rgba(84, 1, 100, 0.1);
  background: #fff;
}

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

.faq-item__heading {
  margin: 0;
}

.faq-item__question {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 0;
  padding: 17px 24px;
  background: transparent;
  color: var(--purple);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.faq-item__question:hover,
.faq-item.is-open .faq-item__question {
  background: #fdfbfd;
}

.faq-item__question:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid rgba(84, 1, 100, 0.42);
  outline-offset: -3px;
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--purple);
  transition: transform 220ms ease;
}

.faq-item__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 260ms ease;
}

.faq-item__answer-inner {
  max-width: 1060px;
  padding: 0 24px 20px;
}

.faq-item__answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-item__answer p + p {
  margin-top: 10px;
}

.faq-item__answer a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-item__answer a:hover {
  color: var(--teal);
}

.faq-item__note {
  color: #76717d;
}

.final-cta {
  scroll-margin-top: 124px;
  padding: 34px 0 42px;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fdf9fb 46%, #fff 100%);
  border-top: 1px solid rgba(84, 1, 100, 0.07);
}

.final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  min-height: 200px;
  padding: 4px 0;
}

.final-cta__content {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  padding-left: clamp(174px, 18vw, 282px);
}

.final-cta__ribbon {
  position: absolute;
  left: clamp(-98px, -6vw, -42px);
  bottom: -48px;
  z-index: 0;
  display: block;
  width: clamp(240px, 22vw, 360px);
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.final-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.final-cta__copy h2 {
  margin: 0;
  color: var(--purple);
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.35vw, 2.35rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0;
}

.final-cta__copy p {
  max-width: 630px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.final-cta__contact {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 16px;
}

.final-cta__whatsapp-button {
  width: min(100%, 430px);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  padding: 0 24px;
  background: var(--purple);
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(84, 1, 100, 0.13);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.final-cta__whatsapp-button:hover {
  background: var(--purple-strong);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(84, 1, 100, 0.16);
}

.final-cta__whatsapp-button:focus-visible,
.final-cta__contact-item:focus-visible {
  outline: 2px solid rgba(84, 1, 100, 0.38);
  outline-offset: 4px;
}

.final-cta__whatsapp-button svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  fill: currentColor;
  stroke: none;
}

.final-cta__contact-item {
  width: fit-content;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--teal);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.final-cta__contact-item:hover {
  color: var(--purple);
}

.final-cta__contact-item span {
  overflow-wrap: anywhere;
}

.final-cta__contact-item svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: currentColor;
  stroke: none;
}

.final-cta__notes {
  max-width: 430px;
  margin-top: 2px;
}

.final-cta__notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.final-cta__notes p + p {
  margin-top: 5px;
  font-size: 0.88rem;
  color: #76717d;
}

.site-footer {
  padding: 36px 0 24px;
  background: linear-gradient(120deg, #3d2163 0%, #2b174b 100%);
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(330px, 1.2fr) minmax(230px, 0.8fr);
  column-gap: clamp(32px, 4.8vw, 64px);
  row-gap: 22px;
  align-items: start;
}

.site-footer__brand {
  grid-row: 1 / span 2;
  min-width: 0;
}

.site-footer__logo {
  width: clamp(200px, 16vw, 240px);
  height: auto;
  border-radius: 4px;
}

.site-footer__brand p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.5;
}

.site-footer__values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__value--science {
  color: #6dc8cf;
}

.site-footer__value--empathy {
  color: #ff7daf;
}

.site-footer__value--trust {
  color: #d7b8e5;
}

.site-footer__separator {
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0;
}

.site-footer__contact,
.site-footer__professionals,
.site-footer__copyright {
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: clamp(28px, 3.6vw, 48px);
}

.site-footer__contact {
  display: grid;
  gap: 18px;
  margin: 0;
  font-style: normal;
}

.site-footer__contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer__contact a:hover,
.site-footer__professionals a:hover {
  color: #ffd9e7;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer__contact a:focus-visible,
.site-footer__professionals a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
}

.site-footer__contact svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__contact span {
  overflow-wrap: anywhere;
}

.site-footer__professionals {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  align-content: start;
  gap: 18px;
}

.site-footer__professionals a {
  width: fit-content;
  max-width: 100%;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer__copyright {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

.whatsapp-float {
  position: fixed;
  right: clamp(20px, 2vw, 32px);
  bottom: clamp(20px, 2vw, 32px);
  z-index: 70;
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  padding: 0;
  background: var(--whatsapp);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28), 0 8px 18px rgba(42, 32, 48, 0.16);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #1fb85a;
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.34), 0 10px 22px rgba(42, 32, 48, 0.18);
}

.whatsapp-float.button-reveal,
.reveal-ready .whatsapp-float.button-reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
  filter: none;
}

.whatsapp-float::after {
  background: linear-gradient(
    110deg,
    transparent 34%,
    rgba(255, 255, 255, 0.34) 48%,
    transparent 62%
  );
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mobile-bottom-nav,
.menu-overlay,
.mobile-menu {
  display: none;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 56px, 1040px);
  }

  .header-shell {
    gap: 24px;
  }

  .brand {
    width: 132px;
  }

  .desktop-nav {
    gap: 24px;
    font-size: 13px;
  }

  .header-cta {
    padding-inline: 20px;
  }

  .btn {
    min-width: 190px;
  }

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

  .second-opinion-detail__grid {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 36px;
  }

  .medical-info-grid {
    column-gap: 28px;
    padding-left: 36px;
  }

  .how-it-works__timeline {
    max-width: 900px;
    gap: 26px;
  }

  .process-step__content {
    max-width: 220px;
  }

  .specialists__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .specialist-card {
    grid-template-columns: minmax(180px, 32%) minmax(0, 1fr);
  }

  .specialist-card__photo {
    min-height: 300px;
  }

  .specialist-card__credentials {
    font-size: 0.86rem;
  }

  .consultation-modes__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consultation-mode-card {
    max-width: 760px;
    margin-inline: auto;
  }

  .consultation-mode-card p {
    max-width: 520px;
  }

  .faq__accordion {
    margin-inline: auto;
  }

  .final-cta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 34px;
  }

  .final-cta__content {
    padding-left: 180px;
  }

  .final-cta__ribbon {
    left: -58px;
    bottom: -34px;
    width: 260px;
  }

  .final-cta__copy h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  }

  .final-cta__copy p {
    font-size: 1rem;
  }

  .site-footer__grid {
    grid-template-columns: minmax(205px, 0.86fr) minmax(280px, 1.14fr) minmax(190px, 0.78fr);
    column-gap: 28px;
  }

  .site-footer__logo {
    width: 200px;
  }

  .site-footer__contact,
  .site-footer__professionals,
  .site-footer__copyright {
    padding-left: 28px;
  }
}

@media (max-width: 900px) {
  .header-shell {
    min-height: 78px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    min-height: 560px;
  }

  .hero__actions {
    gap: 14px;
  }

  .btn {
    min-width: 0;
    flex: 1;
  }

  .brand-values__inner {
    min-height: 58px;
  }

  .second-opinion-detail__grid {
    gap: 30px;
  }

  .medical-info-grid {
    column-gap: 22px;
    row-gap: 26px;
    padding-left: 30px;
  }

  .medical-info-item {
    gap: 12px;
    font-size: 0.88rem;
  }

  .medical-info-item__icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .medical-info-item__icon svg {
    width: 22px;
    height: 22px;
  }

  .how-it-works__timeline {
    max-width: 820px;
    gap: 20px;
  }

  .process-step__content {
    max-width: 205px;
  }

  .process-step h3 {
    font-size: 0.9rem;
  }

  .process-step p {
    font-size: 0.84rem;
  }

  .specialist-card {
    grid-template-columns: minmax(176px, 34%) minmax(0, 1fr);
    gap: 18px;
  }

  .specialist-card__photo {
    min-height: 292px;
  }

  .consultation-mode-card {
    max-width: 680px;
    padding: 22px 24px;
  }

  .final-cta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 28px;
  }

  .final-cta__content {
    padding-left: 132px;
  }

  .final-cta__ribbon {
    left: -50px;
    bottom: -22px;
    width: 190px;
    opacity: 0.86;
  }

  .final-cta__whatsapp-button {
    padding-inline: 18px;
    font-size: 0.94rem;
  }

  .site-footer {
    padding-top: 32px;
  }

  .site-footer__grid {
    grid-template-columns: minmax(190px, 0.86fr) minmax(260px, 1.08fr) minmax(174px, 0.78fr);
    column-gap: 22px;
  }

  .site-footer__logo {
    width: 184px;
  }

  .site-footer__brand p,
  .site-footer__contact a,
  .site-footer__professionals a {
    font-size: 0.93rem;
  }

  .site-footer__values {
    gap: 7px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .site-footer__contact,
  .site-footer__professionals,
  .site-footer__copyright {
    padding-left: 22px;
  }

  .site-footer__contact {
    gap: 14px;
  }

}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 36px, 680px);
  }

  .site-header {
    position: sticky;
  }

  .header-shell {
    min-height: 78px;
    justify-content: center;
  }

  .brand {
    width: 126px;
  }

  .desktop-nav,
  .header-cta,
  .whatsapp-float {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    inset: -42px 0 -70px;
    background-position: 61% calc(100% + var(--hero-bg-y));
    background-size: auto clamp(620px, 145vw, 720px);
    transform: scale(1.055);
    transform-origin: 60% 78%;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0.98) 46%,
      rgba(255, 255, 255, 0.76) 62%,
      rgba(255, 255, 255, 0.18) 100%
    );
  }

  .hero__grid {
    display: block;
    min-height: calc(100svh - 78px);
  }

  .hero__content {
    padding: 42px 0 270px;
  }

  .hero__eyebrow {
    margin-bottom: 13px;
    font-size: 15px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(26px, 8.5vw, 36px);
    line-height: 1.06;
  }

  .h1-desktop {
    display: none;
  }

  .h1-mobile {
    display: inline;
  }

  .hero__lead {
    max-width: none;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.78;
  }

  .hero__actions {
    display: grid;
    gap: 13px;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .hero__modes {
    margin-top: 27px;
    font-size: 13px;
  }

  .brand-values__inner {
    min-height: 52px;
    gap: 12px;
    padding-inline: 14px;
  }

  .brand-value {
    font-size: clamp(0.72rem, 2.75vw, 0.9rem);
    letter-spacing: 0.13em;
  }

  .brand-values__separator {
    font-size: 0.82rem;
  }

  .second-opinion-situations {
    scroll-margin-top: 92px;
    padding: 30px 0 32px;
  }

  .second-opinion-situations h2 {
    max-width: 360px;
    font-size: clamp(1.32rem, 6vw, 1.62rem);
    line-height: 1.24;
  }

  .situations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .situation-card {
    min-height: 148px;
    padding: 20px 20px 18px;
  }

  .second-opinion-detail {
    scroll-margin-top: 92px;
    padding: 32px 0 34px;
  }

  .second-opinion-detail__grid {
    display: block;
  }

  .second-opinion-detail__content {
    max-width: none;
  }

  .second-opinion-detail__content h2 {
    font-size: clamp(1.3rem, 5.3vw, 1.58rem);
  }

  .second-opinion-detail__content p {
    max-width: none;
    margin-top: 13px;
    font-size: 0.92rem;
  }

  .medical-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 22px;
    margin-top: 28px;
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(84, 1, 100, 0.11);
    border-left: 0;
  }

  .medical-info-item {
    align-items: flex-start;
    gap: 11px;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .medical-info-item__icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .medical-info-item__icon svg {
    width: 21px;
    height: 21px;
  }

  .how-it-works {
    scroll-margin-top: 92px;
    padding: 31px 0 36px;
  }

  .how-it-works__title {
    font-size: clamp(1.36rem, 5.6vw, 1.62rem);
  }

  .how-it-works__timeline {
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 26px;
    padding-top: 0;
  }

  .how-it-works__timeline::before {
    top: 21px;
    bottom: 21px;
    left: 21px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-step {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 16px;
    justify-items: stretch;
    text-align: left;
  }

  .process-step__number {
    grid-column: 1;
    grid-row: 1;
  }

  .process-step__content {
    grid-column: 2;
    max-width: none;
    margin-top: 0;
    padding-top: 2px;
  }

  .process-step h3 {
    font-size: 0.92rem;
  }

  .process-step p {
    max-width: 300px;
    font-size: 0.84rem;
  }

  .specialists {
    scroll-margin-top: 92px;
    padding: 31px 0 36px;
  }

  .specialists__title {
    font-size: clamp(1.38rem, 5.8vw, 1.65rem);
  }

  .specialists__grid {
    gap: 18px;
    margin-top: 22px;
  }

  .specialist-card {
    display: block;
    padding: 12px;
  }

  .specialist-card__photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .specialist-card:first-child .specialist-card__photo img {
    object-position: 52% 24%;
  }

  .specialist-card:nth-child(2) .specialist-card__photo img {
    object-position: 52% 29%;
  }

  .specialist-card__content {
    padding: 20px 8px 4px;
  }

  .specialist-card h3 {
    font-size: clamp(1.18rem, 5vw, 1.34rem);
  }

  .specialist-card__role {
    font-size: 0.82rem;
  }

  .specialist-card__credentials {
    margin-top: 13px;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .specialist-card__availability {
    margin-top: 16px;
  }

  .specialist-card__availability-row {
    display: grid;
    gap: 8px;
    font-size: 0.8rem;
  }

  .consultation-modes {
    scroll-margin-top: 92px;
    padding: 31px 0 38px;
  }

  .consultation-modes__title {
    font-size: clamp(1.42rem, 6vw, 1.72rem);
  }

  .consultation-modes__grid {
    gap: 16px;
    margin-top: 22px;
  }

  .consultation-mode-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    max-width: none;
    padding: 18px 16px;
  }

  .consultation-mode-card__icon {
    width: 62px;
    height: 62px;
  }

  .consultation-mode-card__icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.9;
  }

  .consultation-mode-card h3 {
    font-size: 1.02rem;
  }

  .consultation-mode-card p {
    max-width: none;
    margin-top: 7px;
    font-size: 0.9rem;
  }

  .faq {
    scroll-margin-top: 92px;
    padding: 31px 0 calc(110px + env(safe-area-inset-bottom));
  }

  .faq__title {
    font-size: clamp(1.42rem, 6vw, 1.72rem);
  }

  .faq__accordion {
    margin-top: 22px;
  }

  .faq-item__question {
    min-height: 56px;
    align-items: start;
    gap: 14px;
    padding: 16px 16px;
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .faq-item__icon {
    margin-top: 1px;
  }

  .faq-item__answer-inner {
    padding: 0 16px 18px;
  }

  .faq-item__answer p {
    font-size: 0.91rem;
    line-height: 1.62;
  }

  .final-cta {
    scroll-margin-top: 92px;
    margin-top: calc(-72px - env(safe-area-inset-bottom));
    padding: 34px 0 calc(112px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, #fff 0%, #fdf9fb 100%);
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 0;
  }

  .final-cta__content {
    align-items: flex-start;
    padding-left: 0;
  }

  .final-cta__ribbon {
    display: none;
  }

  .final-cta__copy h2 {
    max-width: 410px;
    font-size: clamp(1.65rem, 8vw, 2.12rem);
    line-height: 1.12;
  }

  .final-cta__copy p {
    max-width: 420px;
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .final-cta__contact {
    gap: 15px;
  }

  .final-cta__whatsapp-button {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
    font-size: 0.94rem;
  }

  .final-cta__whatsapp-button svg {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .final-cta__contact-item {
    width: 100%;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .final-cta__contact-item svg {
    margin-top: 1px;
  }

  .final-cta__notes {
    max-width: none;
    margin-top: 1px;
  }

  .final-cta__notes p {
    font-size: 0.9rem;
  }

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

  .site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__contact,
  .site-footer__professionals,
  .site-footer__copyright {
    grid-column: auto;
    grid-row: auto;
    border-left: 0;
    padding-left: 0;
  }

  .site-footer__logo {
    width: min(200px, 72vw);
    margin-inline: auto;
  }

  .site-footer__brand p {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .site-footer__values {
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: clamp(0.72rem, 2.7vw, 0.82rem);
    letter-spacing: 0.12em;
  }

  .site-footer__contact,
  .site-footer__professionals,
  .site-footer__copyright {
    width: min(100%, 360px);
    margin-inline: auto;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .site-footer__contact {
    justify-items: start;
    gap: 12px;
    text-align: left;
  }

  .site-footer__contact a {
    min-height: 46px;
    font-size: 0.95rem;
  }

  .site-footer__contact svg {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .site-footer__professionals {
    justify-items: center;
    gap: 12px;
  }

  .site-footer__professionals a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
  }

  .site-footer__copyright {
    margin-bottom: 0;
    font-size: 0.86rem;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(84, 1, 100, 0.12);
    box-shadow: 0 -12px 28px rgba(42, 32, 48, 0.08);
    backdrop-filter: blur(14px);
  }

  .mobile-bottom-nav a,
  .mobile-nav-button {
    min-height: 58px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--purple);
    cursor: pointer;
  }

  .mobile-bottom-nav svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav a svg {
    fill: var(--whatsapp);
    stroke: none;
  }

  .mobile-bottom-nav .mobile-bottom-nav__instagram {
    color: var(--pink);
  }

  .mobile-bottom-nav .mobile-bottom-nav__instagram svg {
    fill: none;
    stroke: currentColor;
  }

  .mobile-bottom-nav span {
    font-size: 11px;
    font-weight: 800;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    background: rgba(41, 35, 43, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
  }

  .menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: none;
    grid-template-rows: auto 1fr;
    width: min(86vw, 360px);
    padding: max(20px, env(safe-area-inset-top)) 24px calc(28px + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: -20px 0 44px rgba(42, 32, 48, 0.14);
    transform: translateX(105%);
    transition: transform 300ms ease;
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu.is-visible {
    transform: translateX(0);
  }

  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    color: var(--purple);
    font-size: 18px;
    font-weight: 800;
  }

  .mobile-menu__close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(84, 1, 100, 0.15);
    border-radius: 8px;
    background: #fff;
    color: var(--purple);
    cursor: pointer;
  }

  .mobile-menu__close svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
  }

  .mobile-menu__links {
    display: grid;
    align-content: start;
    gap: 10px;
    padding-top: 28px;
  }

  .mobile-menu__links a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(84, 1, 100, 0.1);
    color: var(--purple-strong);
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-menu__links .mobile-menu__cta {
    justify-content: center;
    margin-top: 18px;
    border: 0;
    border-radius: 8px;
    background: var(--purple);
    color: #fff;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 30px, 400px);
  }

  .header-shell {
    min-height: 74px;
  }

  .brand {
    width: 118px;
  }

  h1 {
    font-size: clamp(26px, 8.3vw, 34px);
  }

  .hero__content {
    padding-bottom: 240px;
  }
}

@media (max-width: 360px) {
  .brand {
    width: 112px;
  }

  .brand-values__inner {
    gap: 8px;
  }

  .brand-value {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: 26px;
  }

  .hero__modes {
    align-items: flex-start;
  }

  .hero__content {
    padding-bottom: 220px;
  }

  .medical-info-grid {
    grid-template-columns: 1fr;
  }

  .consultation-mode-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .final-cta__ribbon {
    display: none;
  }

  .final-cta__copy h2 {
    font-size: 1.58rem;
  }

  .final-cta__whatsapp-button {
    gap: 10px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .final-cta__contact-item {
    font-size: 0.9rem;
  }

  .site-footer__logo {
    width: min(184px, 76vw);
  }

  .site-footer__values {
    gap: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .site-footer__contact,
  .site-footer__professionals,
  .site-footer__copyright {
    width: 100%;
  }

  .site-footer__contact a {
    gap: 12px;
    font-size: 0.9rem;
  }
}

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

  .hero::before {
    transform: scale(1.035) !important;
    will-change: auto;
  }

  .reveal-ready .brand-reveal,
  .reveal-ready .card-reveal,
  .reveal-ready .medical-info-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
