/**
 * Landing page — Dra. Vanessa Specterow
 */

:root {
  --color-primary: #0c7c68;
  --color-primary-hover: #096151;
  --color-heading: #343b30;
  --color-text: #3f433b;
  --color-text-muted: #62655b;
  --color-background: #fff8f2;
  --color-surface: #fffdf9;
  --color-surface-muted: #eeede3;
  --color-border: #d8d0c1;
  --color-accent: #c86742;
  --color-accent-strong: #a94d30;
  --color-accent-soft: #fce4d5;
  --color-focus: #9d4329;
  --color-peach: #f8bf9a;
  --color-peach-light: #fee5d4;
  --color-peach-pale: #fff1e7;
  --color-olive: #9b9982;
  --color-olive-light: #e5e4d7;
  --color-olive-dark: #084c41;
  --color-terracotta: #ad5638;
  --color-cream: #fffaf4;
  --color-plum: #765361;
  --color-gold: #b77b2f;
  --color-sage: #4f8f82;
  /* Opções de verde oliva aprovadas:
     Mais quente e natural: #747238
     Mais sofisticado e acinzentado: #646B45 */
  --color-action-olive: #646b45;
  --color-action-olive-hover: #515738;
  --font-heading: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-soft: 0 20px 60px rgba(85, 87, 70, 0.13);
  --shadow-card: 0 14px 36px rgba(85, 87, 70, 0.1);
  --radius-small: 12px;
  --radius-medium: 22px;
  --radius-large: 34px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(248, 191, 154, 0.13) 0 2px, transparent 2.5px),
    radial-gradient(circle at 85% 70%, rgba(155, 153, 130, 0.11) 0 1.5px, transparent 2px);
  background-size: 34px 34px, 29px 29px;
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
}

a:hover {
  color: var(--color-primary-hover);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-focus), white 18%);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--color-heading);
  font-family: var(--font-heading);
}

h1 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.15vw, 3.62rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.heading-highlight {
  color: var(--color-accent-strong);
  background: linear-gradient(transparent 82%, rgba(248, 191, 154, 0.5) 82%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.mobile-break {
  display: none;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
}

p {
  margin-top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  background: color-mix(in srgb, #fff8f2, transparent 8%);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, background-color 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, #fffaf5, transparent 3%);
  border-color: var(--color-border);
  box-shadow: 0 8px 28px rgba(85, 87, 70, 0.1);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
  transition: min-height 180ms ease;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--color-heading);
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(199, 124, 93, 0.16));
  transition: height 180ms ease, transform 180ms ease, filter 180ms ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 5px 12px rgba(199, 124, 93, 0.25));
  transform: translateY(-1px);
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--color-primary-hover);
  background: transparent;
}

.site-nav a[aria-current="true"] {
  font-weight: 600;
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

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

.button-primary {
  color: #fff;
  background: var(--color-action-olive);
  box-shadow: 0 11px 28px rgba(67, 70, 49, 0.3);
}

.button-primary:hover {
  color: #fff;
  background: var(--color-action-olive-hover);
  box-shadow: 0 15px 34px rgba(67, 70, 49, 0.36);
}

.button i {
  font-size: 1.04em;
}

.button span {
  min-width: 0;
}

.button-primary i,
.button-light i {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.button-secondary {
  color: var(--color-accent-strong);
  background: rgba(255, 253, 249, 0.68);
  border-color: rgba(169, 77, 48, 0.52);
}

.button-secondary:hover {
  color: #fff;
  background: var(--color-accent-strong);
  border-color: var(--color-accent-strong);
}

.button-light {
  color: var(--color-heading);
  background: var(--color-peach);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.button-light:hover {
  color: var(--color-heading);
  background: #ffd9bf;
}

.button-large {
  min-height: 54px;
  padding: 14px 24px;
}

.button-small {
  min-height: 46px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.header-cta {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 18px;
  transition: min-height 180ms ease, padding 180ms ease, transform 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--color-heading);
  background: var(--color-peach-pale);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

main {
  display: block;
}

section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.section-label[id],
.faq-list-header[id] {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + 74px) 0 92px;
  background:
    radial-gradient(ellipse at 8% 18%, rgba(248, 191, 154, 0.55), transparent 30%),
    radial-gradient(ellipse at 86% 72%, rgba(155, 153, 130, 0.35), transparent 31%),
    linear-gradient(125deg, #fff8f2 0%, #fff3e9 48%, #eeede3 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 115px;
  left: -135px;
  width: 340px;
  height: 460px;
  background:
    radial-gradient(circle at 42% 35%, rgba(255, 255, 255, 0.62), transparent 16%),
    linear-gradient(145deg, rgba(248, 191, 154, 0.45), rgba(185, 99, 67, 0.08));
  border: 1px solid rgba(185, 99, 67, 0.16);
  border-radius: 58% 42% 68% 32% / 43% 62% 38% 57%;
  content: "";
  transform: rotate(17deg);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle, transparent 54%, rgba(155, 153, 130, 0.12) 55% 57%, transparent 58%),
    radial-gradient(circle at 35% 35%, rgba(248, 191, 154, 0.34), transparent 48%);
  border: 1px solid rgba(104, 105, 85, 0.14);
  border-radius: 46% 54% 37% 63% / 54% 42% 58% 46%;
  content: "";
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--color-accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 660px;
  padding: 9px 13px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(200, 103, 66, 0.32);
  box-shadow: 0 8px 24px rgba(169, 77, 48, 0.08);
  border-radius: 16px;
  letter-spacing: 0.045em;
}

.eyebrow span {
  min-width: 0;
}

.eyebrow i {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--color-accent);
  border-radius: 9px;
  font-size: 0.85rem;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--color-text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.58;
}

.hero-lead strong {
  color: var(--color-heading);
  font-weight: 700;
}

.hero-credential {
  display: flex;
  max-width: 710px;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin-bottom: 30px;
  color: var(--color-heading);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-credential strong {
  font-weight: 700;
}

.hero-credential span {
  min-width: 0;
  color: var(--color-text-muted);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 32px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-chips li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  color: var(--color-heading);
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid rgba(200, 103, 66, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-chips i {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  background: var(--color-action-olive);
  border-radius: 50%;
  font-size: 1rem;
}

.photo-frame {
  position: relative;
  margin: 0;
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-photo {
  width: min(100%, 520px);
  aspect-ratio: 9 / 11;
  margin-left: auto;
  border: 5px solid rgba(255, 253, 249, 0.9);
  border-radius: 48% 48% 28px 28px;
  box-shadow:
    16px 18px 0 rgba(155, 153, 130, 0.22),
    0 18px 44px rgba(85, 87, 70, 0.16);
}

.about-photo {
  width: min(100%, 500px);
  aspect-ratio: 36 / 41;
  border-radius: var(--radius-large);
}

.photo-frame > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo > img {
  object-position: 67% center;
}

.about-photo > img {
  object-position: 27% center;
  transform: scale(1.06);
  transform-origin: center center;
}

.photo-frame > img.is-missing {
  display: none;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
  color: var(--color-text-muted);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(234, 243, 241, 0.92)),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(15, 92, 94, 0.04) 14px,
      rgba(15, 92, 94, 0.04) 15px);
  text-align: center;
}

.photo-placeholder[hidden] {
  display: none;
}

.photo-placeholder strong {
  margin-bottom: 6px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.photo-placeholder span:last-child {
  max-width: 280px;
  font-size: 0.79rem;
  overflow-wrap: anywhere;
}

.photo-placeholder-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}

.photo-placeholder-icon i {
  font-size: 2rem;
}

.photo-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  max-width: 245px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--color-heading);
  background: rgba(255, 248, 242, 0.94);
  border: 1px solid rgba(248, 191, 154, 0.62);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.photo-note i {
  flex: 0 0 auto;
  width: 22px;
  color: var(--color-accent);
  font-size: 1.2rem;
  text-align: center;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading p:not(.section-label) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 1.06rem;
}

.section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered p:not(.section-label) {
  margin-right: auto;
  margin-left: auto;
}

.section-label {
  position: relative;
}

.section-label::before {
  width: 28px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
}

.section-identification {
  background:
    radial-gradient(circle at 92% 12%, rgba(248, 191, 154, 0.38), transparent 25%),
    linear-gradient(160deg, #fffdf9 0%, #fff1e7 100%);
}

.section-identification::before {
  position: absolute;
  top: 60px;
  right: -70px;
  width: 230px;
  height: 230px;
  background:
    radial-gradient(ellipse at 50% 18%, transparent 43%, rgba(155, 153, 130, 0.25) 44% 47%, transparent 48%),
    radial-gradient(ellipse at 18% 50%, transparent 43%, rgba(248, 191, 154, 0.35) 44% 47%, transparent 48%);
  border-radius: 50%;
  content: "";
  opacity: 0.75;
  transform: rotate(28deg);
}

.philosophy-panel {
  position: relative;
  display: grid;
  max-width: 1080px;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 4.4vw, 62px);
  margin: 0 auto;
  padding: 0;
}

.philosophy-illustration {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
}

.philosophy-illustration::before {
  position: absolute;
  top: 9%;
  left: -7%;
  z-index: -1;
  width: 70%;
  height: 76%;
  background: rgba(248, 191, 154, 0.22);
  border: 1px solid rgba(185, 99, 67, 0.12);
  border-radius: 56% 44% 64% 36% / 42% 62% 38% 58%;
  content: "";
  transform: rotate(-10deg);
}

.philosophy-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.philosophy-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  padding-left: 0;
}

.philosophy-pillar {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 32px;
}

.philosophy-pillar:not(:last-child)::after {
  position: absolute;
  top: 48px;
  bottom: 8px;
  left: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(185, 99, 67, 0.28), rgba(155, 153, 130, 0.12));
  content: "";
}

.philosophy-pillar:first-child {
  padding-top: 0;
}

.philosophy-pillar:last-child {
  padding-bottom: 0;
}

.philosophy-pillar-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--color-accent-strong);
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(185, 99, 67, 0.28);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(85, 87, 70, 0.08);
}

.philosophy-pillar-icon i {
  font-size: 1.05rem;
  line-height: 1;
}

.philosophy-pillar > div {
  min-width: 0;
}

.philosophy-pillar h3 {
  margin-bottom: 8px;
  color: var(--color-heading);
  font-size: 1.2rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.philosophy-pillar p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

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

.conditions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.identification-item {
  --icon-color: var(--color-terracotta);
  --icon-color-deep: #8e402b;
  --icon-glow: rgba(173, 86, 56, 0.25);
  display: flex;
  min-height: 160px;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(85, 87, 70, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.conditions-grid .identification-item {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 253, 249, 0.92);
  border-color: rgba(155, 153, 130, 0.24);
  border-radius: 20px;
  cursor: pointer;
}

.conditions-grid .identification-item:nth-child(n) {
  --icon-color: var(--color-terracotta);
  --icon-color-deep: #8e402b;
  --icon-glow: rgba(173, 86, 56, 0.18);
  background: rgba(255, 253, 249, 0.92);
  border-color: rgba(155, 153, 130, 0.24);
}

.conditions-grid .identification-item:nth-child(2n) {
  --icon-color: var(--color-primary);
  --icon-color-deep: var(--color-primary-hover);
}

.identification-item:hover {
  border-color: color-mix(in srgb, var(--color-primary), transparent 58%);
  box-shadow: 0 18px 38px rgba(85, 87, 70, 0.12);
  transform: translateY(-3px);
}

.identification-item:nth-child(4n + 1) {
  background: rgba(248, 191, 154, 0.28);
  border-color: rgba(215, 127, 88, 0.22);
}

.identification-item:nth-child(4n + 2) {
  --icon-color: var(--color-plum);
  --icon-color-deep: #59404a;
  --icon-glow: rgba(118, 83, 97, 0.25);
  background: rgba(229, 228, 215, 0.72);
  border-color: rgba(155, 153, 130, 0.3);
}

.identification-item:nth-child(4n + 3) {
  --icon-color: var(--color-sage);
  --icon-color-deep: #4d5b46;
  --icon-glow: rgba(102, 118, 93, 0.25);
  background: rgba(229, 235, 223, 0.82);
  border-color: rgba(102, 118, 93, 0.3);
}

.identification-item:nth-child(4n) {
  --icon-color: var(--color-gold);
  --icon-color-deep: #8d5c20;
  --icon-glow: rgba(183, 123, 47, 0.25);
  background: rgba(253, 231, 217, 0.64);
  border-color: rgba(248, 191, 154, 0.5);
}

.identification-icon {
  position: relative;
  flex: 0 0 82px;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 21px;
  box-shadow:
    0 10px 18px rgba(85, 87, 70, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: visible;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.identification-icon::before {
  display: none;
}

.identification-icon img {
  position: relative;
  z-index: 1;
  width: 84px;
  max-width: none;
  height: 84px;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.04) drop-shadow(0 3px 5px rgba(85, 87, 70, 0.12));
  transform: none;
}

.conditions-grid .identification-icon img {
  width: 88px;
  height: 88px;
}

.identification-icon i {
  position: relative;
  z-index: 1;
  color: var(--icon-color);
  font-size: 2rem;
  line-height: 1;
}

.conditions-grid .identification-icon {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 18px;
}

.identification-icon-thyroid img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106px;
  height: 106px;
  transform: translate(-50%, -50%);
}

.identification-icon-menopause img {
  width: 94px;
  height: 94px;
  transform: translate(-3px, -1px);
}

.identification-item:hover .identification-icon {
  box-shadow:
    0 13px 22px rgba(85, 87, 70, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-2px) scale(1.035);
}

.identification-item h3 {
  margin: 0 0 6px;
  color: var(--color-heading);
  font-size: 1rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.identification-item > div {
  min-width: 0;
}

.conditions-grid .identification-item h3 {
  margin-bottom: 0;
  font-size: 1.14rem;
  line-height: 1.26;
}

.identification-detail {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.42;
}

.section-care {
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.7) 0 2px, transparent 2.5px),
    linear-gradient(135deg, #e8e6d9 0%, #f5efe5 52%, #fde5d5 100%);
  background-size: 30px 30px, auto;
}

.section-care::after {
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 390px;
  height: 390px;
  background: rgba(248, 191, 154, 0.25);
  border: 1px solid rgba(185, 99, 67, 0.13);
  border-radius: 67% 33% 54% 46% / 42% 62% 38% 58%;
  content: "";
  transform: rotate(-16deg);
}

.care-card {
  --card-accent: var(--color-terracotta);
  --card-tint: #fce5d8;
  position: relative;
  display: flex;
  min-height: 100%;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--card-accent);
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 30px rgba(85, 87, 70, 0.08);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.care-card::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--card-accent), color-mix(in srgb, var(--card-accent), transparent 72%));
  border-radius: 0 999px 999px 0;
  content: "";
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.care-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.35fr);
  align-items: stretch;
  gap: 22px;
}

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

.care-card-featured {
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px;
}

.care-side-grid .care-card {
  min-height: 210px;
  padding: 24px;
}

.care-card:hover {
  border-color: color-mix(in srgb, var(--color-primary), transparent 58%);
  box-shadow: 0 18px 42px rgba(85, 87, 70, 0.13);
  transform: translateY(-4px);
}

.care-card:hover::before {
  opacity: 1;
  transform: scaleY(1.08);
}

.care-card::after {
  position: absolute;
  top: -38px;
  right: -35px;
  width: 112px;
  height: 112px;
  background: rgba(248, 191, 154, 0.22);
  border-radius: 50%;
  content: "";
}

.care-side-grid .care-card:nth-child(1)::after,
.care-side-grid .care-card:nth-child(2)::after,
.care-side-grid .care-card:nth-child(4)::after {
  background: rgba(155, 153, 130, 0.2);
}

.section-care .col-md-6:nth-child(2) .care-card::after,
.section-care .col-md-6:nth-child(3) .care-card::after {
  background: rgba(155, 153, 130, 0.2);
}

.care-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  color: #fff;
  background: var(--card-accent);
  border-radius: 16px;
  box-shadow: 0 9px 20px color-mix(in srgb, var(--card-accent), transparent 72%);
  font-size: 1.45rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.care-card:hover .care-card-icon {
  box-shadow: 0 13px 26px color-mix(in srgb, var(--card-accent), transparent 66%);
  transform: translateY(-2px) rotate(-2deg);
}

.care-side-grid .care-card:nth-child(1) {
  --card-accent: var(--color-plum);
  --card-tint: #eee3e7;
}

.section-care .col-md-6:nth-child(2) .care-card {
  --card-accent: var(--color-plum);
  --card-tint: #eee3e7;
}

.care-side-grid .care-card:nth-child(2) {
  --card-accent: var(--color-sage);
  --card-tint: #e5ebdf;
}

.section-care .col-md-6:nth-child(3) .care-card {
  --card-accent: var(--color-sage);
  --card-tint: #e5ebdf;
}

.care-side-grid .care-card:nth-child(3) {
  --card-accent: var(--color-gold);
  --card-tint: #f8ebd8;
}

.section-care .col-md-6:nth-child(4) .care-card {
  --card-accent: var(--color-gold);
  --card-tint: #f8ebd8;
}

.section-care .col-md-6:nth-child(5) .care-card {
  --card-accent: var(--color-primary);
  --card-tint: #f5ded4;
}

.section-care .col-md-6:nth-child(5) .care-card::after {
  background: rgba(155, 153, 130, 0.2);
}

.care-side-grid .care-card:nth-child(4) {
  --card-accent: var(--color-primary);
  --card-tint: #f5ded4;
}

.card-number {
  display: block;
  margin-bottom: 5px;
  color: var(--card-accent);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.care-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  overflow-wrap: anywhere;
}

.care-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  overflow-wrap: anywhere;
}

.care-card > div:not(.care-card-icon) {
  min-width: 0;
}

.care-card-note {
  margin-top: 16px;
  padding-top: 14px;
  color: var(--color-text) !important;
  border-top: 1px solid var(--color-border);
  font-size: 0.88rem;
  font-weight: 500;
}

.care-pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.care-pillar-card {
  --card-accent: var(--color-terracotta);
  position: relative;
  min-height: 232px;
  padding: 22px 18px 20px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(155, 153, 130, 0.28);
  border-top: 4px solid var(--card-accent);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(85, 87, 70, 0.08);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.care-pillar-card::before {
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 116px;
  height: 116px;
  background: color-mix(in srgb, var(--card-accent), transparent 84%);
  border-radius: 50%;
  content: "";
}

.care-pillar-card:hover {
  border-color: color-mix(in srgb, var(--card-accent), transparent 52%);
  box-shadow: 0 16px 36px rgba(85, 87, 70, 0.12);
  transform: translateY(-3px);
}

.care-pillar-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.care-pillar-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: #fff;
  background: var(--card-accent);
  border-radius: 15px;
  box-shadow: 0 9px 20px color-mix(in srgb, var(--card-accent), transparent 72%);
  font-size: 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.care-pillar-card:hover .care-pillar-icon {
  box-shadow: 0 12px 24px color-mix(in srgb, var(--card-accent), transparent 64%);
  transform: translateY(-2px);
}

.care-pillar-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.care-pillar-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.52;
  overflow-wrap: anywhere;
}

.care-pillar-card:nth-child(2) {
  --card-accent: var(--color-plum);
}

.care-pillar-card:nth-child(3) {
  --card-accent: var(--color-sage);
}

.care-pillar-card:nth-child(4) {
  --card-accent: var(--color-gold);
}

.care-pillar-card:nth-child(5) {
  --card-accent: var(--color-primary);
}

.section-process {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(235, 239, 222, 0.35), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(248, 191, 154, 0.13), transparent 30%),
    linear-gradient(145deg, #9eab88 0%, #7f9169 52%, #687a56 100%);
  overflow: hidden;
}

.section-process::before {
  position: absolute;
  top: -220px;
  right: -110px;
  width: 480px;
  height: 480px;
  border: 2px solid rgba(95, 98, 71, 0.17);
  border-radius: 44% 56% 68% 32% / 56% 42% 58% 44%;
  content: "";
  transform: rotate(22deg);
}

.section-process .section-label {
  color: #fff;
}

.section-process .section-label::before {
  background: rgba(255, 255, 255, 0.78);
}

.section-process h2 {
  max-width: 760px;
  color: #343b30;
}

.section-process .section-heading p:not(.section-label) {
  color: rgba(255, 255, 255, 0.82);
}

.section-process .heading-highlight {
  color: #8f452f;
  background: none;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 50px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
}

.process-item {
  --step-accent: #dd9872;
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  color: #4f5548;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(76, 80, 57, 0.2);
  border-top: 3px solid var(--step-accent);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(72, 79, 52, 0.09);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.process-item:hover {
  background: rgba(255, 253, 249, 0.86);
  border-color: rgba(95, 98, 71, 0.38);
  box-shadow: 0 18px 34px rgba(72, 79, 52, 0.12);
  transform: translateY(-4px);
}

.process-item:hover .process-marker {
  transform: translateY(-2px) scale(1.04);
}

.process-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--color-heading);
  background: var(--step-accent);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease;
}

.process-item h3 {
  margin-bottom: 13px;
  color: var(--color-heading);
  font-size: 1.18rem;
  line-height: 1.25;
}

.process-item p {
  margin-bottom: 0;
  color: #596052;
  font-size: 0.97rem;
  line-height: 1.6;
}

.section-about {
  background:
    radial-gradient(ellipse at 8% 90%, rgba(155, 153, 130, 0.34), transparent 28%),
    radial-gradient(ellipse at 92% 15%, rgba(248, 191, 154, 0.35), transparent 27%),
    linear-gradient(155deg, #fffaf4, #fff1e7 55%, #eeede3);
}

.section-about::after {
  position: absolute;
  top: 45px;
  right: 4%;
  width: 180px;
  height: 250px;
  background:
    radial-gradient(ellipse at 50% 14%, transparent 42%, rgba(185, 99, 67, 0.18) 43% 46%, transparent 47%),
    radial-gradient(ellipse at 18% 48%, transparent 42%, rgba(155, 153, 130, 0.23) 43% 46%, transparent 47%);
  content: "";
  opacity: 0.7;
  transform: rotate(35deg);
}

.about-photo {
  border: 5px solid rgba(255, 253, 249, 0.86);
  box-shadow:
    -18px 20px 0 rgba(248, 191, 154, 0.35),
    16px -16px 0 rgba(155, 153, 130, 0.26),
    var(--shadow-soft);
}

.about-copy > p:not(.section-label) {
  color: var(--color-text-muted);
  font-size: 1.04rem;
}

.professional-card {
  margin-top: 30px;
  padding: 24px;
  background:
    radial-gradient(circle at 95% 5%, rgba(248, 191, 154, 0.32), transparent 28%),
    rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(155, 153, 130, 0.42);
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 30px rgba(85, 87, 70, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.professional-card:hover {
  border-color: rgba(185, 99, 67, 0.28);
  box-shadow: 0 16px 36px rgba(85, 87, 70, 0.11);
  transform: translateY(-2px);
}

.professional-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.professional-monogram {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  padding: 3px;
  background: #fff;
  border: 3px solid var(--color-peach);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(23, 50, 77, 0.12);
  overflow: hidden;
}

.professional-monogram img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 30%;
}

.professional-card h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 3px;
  font-size: 1.16rem;
}

.verified-badge {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  color: #1976d2;
  filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.2));
}

.verified-badge i {
  font-size: 1.08rem;
  line-height: 1;
}

.professional-card-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.professional-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--color-text);
  font-size: 0.9rem;
}

.professional-card li + li {
  margin-top: 7px;
}

.professional-card strong {
  color: var(--color-accent-strong);
  font-weight: 800;
}

.verification-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0 0;
  padding: 12px 14px;
  color: #73442f;
  background: var(--color-accent-soft);
  border: 1px solid rgba(185, 99, 67, 0.26);
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.verification-warning i {
  flex: 0 0 auto;
  margin-top: 1px;
}

.section-modalities {
  background:
    repeating-linear-gradient(135deg, rgba(155, 153, 130, 0.045) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, #fff8f2 0%, #f9e8dc 48%, #e9e8dd 100%);
}

.section-modalities .row > [class*="col-"] {
  display: flex;
}

.modality-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100%;
  height: 100%;
  flex-direction: column;
  padding: 0;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.modality-card:hover {
  border-color: rgba(169, 77, 48, 0.44);
  box-shadow: 0 18px 44px rgba(85, 87, 70, 0.13);
  transform: translateY(-4px);
}

.modality-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: var(--color-olive-light);
  border-radius: calc(var(--radius-medium) - 1px) calc(var(--radius-medium) - 1px) 0 0;
  clip-path: inset(0 round calc(var(--radius-medium) - 1px) calc(var(--radius-medium) - 1px) 0 0);
  contain: paint;
  overflow: hidden;
  transform: translateZ(0);
}

.modality-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(47, 54, 47, 0.16)),
    linear-gradient(120deg, rgba(248, 191, 154, 0.08), transparent 42%);
  content: "";
  pointer-events: none;
}

.modality-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.001);
  transform-origin: center;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.modality-card:hover .modality-photo img {
  transform: translateZ(0) scale(1.035);
}

.modality-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: 28px 30px 30px;
}

.modality-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 175px;
  height: 175px;
  background: rgba(248, 191, 154, 0.24);
  border-radius: 50%;
  content: "";
}

.modality-card-featured {
  background: #fefbf7;
  border-color: rgba(169, 77, 48, 0.36);
  border-top-color: var(--color-accent);
}

.modality-card-featured::after {
  background: rgba(155, 153, 130, 0.25);
}

.modality-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 5px 10px;
  color: #fff;
  background: var(--color-accent-strong);
  box-shadow: 0 7px 16px rgba(169, 77, 48, 0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.modality-badge-location {
  background: rgba(76, 80, 57, 0.9);
  box-shadow: 0 7px 16px rgba(76, 80, 57, 0.2);
}

.modality-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: -58px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--color-primary), var(--color-olive-dark));
  border: 4px solid rgba(255, 253, 249, 0.96);
  border-radius: 19px;
  box-shadow: 0 10px 24px rgba(76, 80, 57, 0.2);
  font-size: 1.45rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.modality-card:hover .modality-icon {
  box-shadow: 0 14px 28px rgba(76, 80, 57, 0.24);
  transform: translateY(-2px);
}

.modality-card-featured .modality-icon {
  color: #fff;
  background: linear-gradient(145deg, var(--color-accent), var(--color-accent-strong));
}

.modality-card h3 {
  margin-bottom: 13px;
  font-size: 1.4rem;
}

.modality-card p {
  color: var(--color-text-muted);
}

.modality-points {
  display: grid;
  gap: 11px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
  list-style: none;
}

.modality-points li {
  position: relative;
  padding-left: 24px;
}

.modality-points li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
}

.modality-card .button {
  width: 100%;
  margin-top: auto;
}

.modality-card .text-link {
  margin: 2px 0 16px;
}

.modality-meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
}

.modality-meta i {
  color: var(--color-accent);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  color: var(--color-accent-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link:hover {
  color: var(--color-primary-hover);
  gap: 10px;
}

.text-link i {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--color-accent);
  border-radius: 50%;
  font-size: 0.75rem;
}

.section-faq {
  background:
    radial-gradient(circle at 10% 15%, rgba(248, 191, 154, 0.3), transparent 24%),
    linear-gradient(150deg, #fffdf9 0%, #fff5ed 60%, #eeede3 100%);
}

.section-faq::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(155, 153, 130, 0.18);
  border-radius: 61% 39% 45% 55% / 44% 58% 42% 56%;
  content: "";
  transform: rotate(18deg);
}

.faq-layout {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
}

.faq-layout > [class*="col-"] {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-intro p:not(.section-label) {
  color: var(--color-text-muted);
}

.faq-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 0 4px;
}

.faq-list-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent-strong);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-list-header span i {
  font-size: 1rem;
}

.faq-list-header small {
  color: var(--color-text-muted);
  font-size: 0.76rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  position: relative;
  min-height: 76px;
  padding: 0 22px 0 66px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(155, 153, 130, 0.25);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(85, 87, 70, 0.055);
  overflow: hidden;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-list details.faq-extra {
  max-height: 440px;
  overflow: hidden;
  transition: max-height 320ms ease, min-height 320ms ease, opacity 240ms ease,
    transform 280ms ease, border-color 240ms ease, box-shadow 240ms ease;
  transition-delay: var(--faq-delay, 0ms);
}

.faq-list details.faq-extra.is-entering,
.faq-list details.faq-extra.is-hiding {
  min-height: 0;
  max-height: 0;
  opacity: 0;
  border-color: transparent;
  box-shadow: none;
  pointer-events: none;
  transform: translateY(-10px);
}

.faq-list details.faq-extra.is-entering::before,
.faq-list details.faq-extra.is-hiding::before {
  opacity: 0;
}

.faq-list details.faq-extra.is-entering summary,
.faq-list details.faq-extra.is-hiding summary {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.faq-list details::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--color-primary-hover);
  background: var(--color-olive-light);
  border-radius: 10px;
  content: "?";
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.faq-list details:hover {
  border-color: rgba(155, 153, 130, 0.48);
  box-shadow: 0 12px 30px rgba(85, 87, 70, 0.09);
  transform: translateY(-2px);
}

.faq-list details[open] {
  background: rgba(253, 231, 217, 0.58);
  border-color: rgba(248, 191, 154, 0.7);
  box-shadow: inset 4px 0 0 var(--color-accent);
  transform: none;
}

.faq-list details[open]::before {
  color: #fff;
  background: var(--color-accent);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 16px 48px 16px 0;
  color: var(--color-heading);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
  transition: color 180ms ease, min-height 240ms ease, padding 240ms ease;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 15px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--color-accent-strong);
}

.faq-list details[open] summary::before,
.faq-list details[open] summary::after {
  background: var(--color-accent-strong);
}

.faq-list details p {
  max-width: 690px;
  margin: -3px 0 22px;
  padding-right: 46px;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 240ms ease, transform 260ms ease;
}

.faq-list details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.faq-list details.is-closing p {
  opacity: 0;
  transform: translateY(-4px);
}

.faq-toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 20px;
  color: var(--color-primary-hover);
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid rgba(95, 98, 71, 0.38);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.faq-toggle:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.faq-toggle:disabled {
  cursor: default;
  opacity: 0.78;
  transform: none;
}

.faq-toggle i {
  transition: transform 180ms ease;
}

.faq-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.final-cta {
  padding: 0 0 104px;
  background:
    linear-gradient(180deg, #fff5ed 0%, #fffaf4 100%);
}

.final-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 52px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 90% 15%, rgba(248, 191, 154, 0.38), transparent 25%),
    radial-gradient(circle at 8% 90%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #515341, #6c6d57 62%, #555746);
  border-radius: var(--radius-large);
  overflow: hidden;
}

.final-cta-card::after {
  position: absolute;
  top: -85px;
  right: -40px;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(248, 191, 154, 0.36);
  border-radius: 43% 57% 61% 39% / 54% 43% 57% 46%;
  content: "";
  transform: rotate(22deg);
}

.final-cta-card > * {
  position: relative;
  z-index: 1;
}

.final-cta-card > div {
  max-width: 860px;
}

.final-cta-card h2 {
  margin-bottom: 14px;
  color: #fff;
}

.final-cta-card p:last-child {
  margin-bottom: 0;
}

.section-label-light {
  color: #ffe1cc;
}

.section-label-light::before {
  background: #f1bda6;
}

.final-cta-card .button-light i {
  color: #fff;
  background: var(--color-accent-strong);
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 10% 0, rgba(248, 191, 154, 0.12), transparent 26%),
    linear-gradient(145deg, #3f4136, #2f332e);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 0.8fr;
  gap: 54px;
  padding-bottom: 48px;
}

.brand-footer {
  margin-bottom: 20px;
  color: #fff;
}

.brand-footer .brand-logo {
  height: 108px;
  filter: drop-shadow(0 5px 14px rgba(199, 124, 93, 0.25));
}

.footer-brand > p {
  max-width: 350px;
  font-size: 0.9rem;
}

.footer-instagram {
  color: rgba(255, 255, 255, 0.52);
  overflow-wrap: anywhere;
}

.footer-instagram a {
  color: #ffd4b8;
  font-weight: 600;
}

.footer-instagram a:hover {
  color: #ffe3d3;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-legal p {
  margin-bottom: 6px;
  font-size: 0.88rem;
}

.footer-warning {
  max-width: 510px;
  margin-top: 14px !important;
  color: #f4d5c8;
  background: rgba(248, 191, 154, 0.12);
  border-color: rgba(248, 191, 154, 0.3);
}

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

.footer-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: #ffd4bd;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.site-credit {
  max-width: 520px;
  text-align: right;
}

.site-credit a {
  color: #ffd4b8;
}

.mobile-whatsapp {
  position: fixed;
  right: 18px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 18px;
  z-index: 980;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  color: #fff;
  background: var(--color-action-olive);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(85, 87, 70, 0.28);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 220ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.mobile-whatsapp:hover {
  color: #fff;
  background: var(--color-action-olive-hover);
}

.mobile-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-whatsapp.is-compact {
  opacity: 0;
  box-shadow: 0 8px 22px rgba(85, 87, 70, 0.24);
  pointer-events: none;
  transform: translateY(calc(100% + 18px)) scale(0.96);
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 970;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: #fff;
  color: var(--color-heading);
  background: var(--color-peach);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #f3a878;
}

.legal-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  background: var(--color-background);
}

.legal-header {
  padding: 76px 0 46px;
  background:
    radial-gradient(circle at 88% 20%, rgba(248, 191, 154, 0.42), transparent 27%),
    linear-gradient(145deg, var(--color-olive-light), var(--color-peach-pale));
}

.legal-header h1 {
  max-width: 850px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
}

.legal-header p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.legal-content {
  padding: 70px 0 100px;
}

.legal-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.legal-article h2 {
  margin-top: 40px;
  font-size: 1.45rem;
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article p,
.legal-article li {
  color: var(--color-text-muted);
}

.legal-article a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  padding: 14px 16px;
  color: #713f2f !important;
  background: var(--color-accent-soft);
  border: 1px solid #edcdbc;
  border-radius: 10px;
}

.legal-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(248, 191, 154, 0.26), transparent 34%),
    rgba(238, 240, 229, 0.52);
  border: 1px solid rgba(155, 153, 130, 0.28);
  border-radius: var(--radius-small);
}

.legal-summary p {
  margin: 0;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 6px;
}

.legal-toc a {
  padding: 8px 12px;
  color: var(--color-primary);
  background: rgba(255, 253, 249, 0.74);
  border: 1px solid rgba(15, 92, 94, 0.16);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.legal-toc a:hover {
  color: #fff;
  background: var(--color-primary);
}

.legal-contact-card {
  margin-top: 18px;
  padding: 22px;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(199, 124, 93, 0.24);
  border-radius: var(--radius-small);
  box-shadow: 0 10px 26px rgba(85, 87, 70, 0.06);
}

.legal-contact-card p:last-child {
  margin-bottom: 0;
}

.legal-article h2[id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

/*
 * Laptops e navegadores com pouca altura útil.
 * Compacta o hero sem afetar monitores mais altos ou o layout mobile.
 */
@media (min-width: 1200px) and (max-height: 850px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--header-height) + 34px) 0 40px;
  }

  .hero .row {
    --bs-gutter-y: 1.5rem;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 4vw, 3.55rem);
    line-height: 1.04;
  }

  .hero .eyebrow {
    margin-bottom: 16px;
  }

  .hero-lead {
    margin-bottom: 16px;
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .hero-credential {
    margin-bottom: 22px;
  }

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

  .hero-photo {
    width: auto;
    max-width: 100%;
    height: min(586px, calc(100svh - var(--header-height) - 72px));
  }
}

@media (max-width: 1199.98px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    gap: 14px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    max-height: calc(100vh - var(--header-height) - 32px);
    padding: 12px;
    background: #fffaf4;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }

  .site-nav a {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

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

  .identification-item:nth-child(6n + 1),
  .identification-item:nth-child(6n + 2) {
    --icon-color: var(--color-terracotta);
    --icon-color-deep: #8e402b;
    --icon-glow: rgba(173, 86, 56, 0.25);
    background: rgba(248, 191, 154, 0.28);
    border-color: rgba(215, 127, 88, 0.22);
  }

  .identification-item:nth-child(6n + 3),
  .identification-item:nth-child(6n + 4) {
    --icon-color: var(--color-plum);
    --icon-color-deep: #59404a;
    --icon-glow: rgba(118, 83, 97, 0.25);
    background: rgba(229, 228, 215, 0.72);
    border-color: rgba(155, 153, 130, 0.3);
  }

  .identification-item:nth-child(6n + 5),
  .identification-item:nth-child(6n) {
    --icon-color: var(--color-sage);
    --icon-color-deep: #4d5b46;
    --icon-glow: rgba(102, 118, 93, 0.25);
    background: rgba(229, 235, 223, 0.82);
    border-color: rgba(102, 118, 93, 0.3);
  }

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

  .conditions-grid .identification-item:nth-child(n) {
    background: rgba(255, 253, 249, 0.92);
    border-color: rgba(155, 153, 130, 0.24);
  }

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

  .care-card-featured {
    min-height: auto;
  }

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

  .care-pillar-card {
    min-height: 210px;
  }

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

  .process-list::before {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .site-header .brand-logo {
    height: 74px;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 62px);
  }

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

  .hero-photo {
    width: min(100%, 580px);
    margin-right: auto;
  }

  .about-photo {
    margin-right: auto;
    margin-left: auto;
  }

  .process-list {
    max-width: 760px;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 auto;
  }

  .process-list::before {
    top: 18px;
    bottom: 18px;
    left: 21px;
    display: block;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(185, 99, 67, 0.28), rgba(155, 153, 130, 0.12));
  }

  .process-item {
    display: grid;
    min-height: auto;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    padding: 0 0 20px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .process-item:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .process-item > div:last-child {
    padding: 20px 22px;
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid rgba(169, 77, 48, 0.15);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(59, 55, 45, 0.05);
  }

  .process-marker {
    margin-bottom: 0;
  }

  .faq-intro {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .final-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-footer {
    padding-bottom: calc(24px + 78px + env(safe-area-inset-bottom));
  }

  .footer-nav {
    grid-column: 1 / -1;
  }

  .mobile-whatsapp {
    display: flex;
  }

  .scroll-top {
    right: 18px;
    bottom: 84px;
  }
}

@media (max-width: 767.98px) {
  .header-cta {
    display: none;
  }

  .section-identification .section-heading {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .section-identification .section-heading p:not(.section-label) {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .section-identification .section-heading h2 {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  #filosofia-atendimento ~ p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .philosophy-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .philosophy-illustration {
    width: min(79vw, 308px);
    max-width: 308px;
    margin-right: auto;
    margin-left: auto;
  }

  .philosophy-illustration::before {
    top: 12%;
    left: -8%;
    width: 68%;
    height: 66%;
  }

  .philosophy-pillars {
    gap: 10px;
    padding-top: 0;
    padding-left: 0;
    border-top: 0;
    border-left: 0;
  }

  .philosophy-pillar {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    background: rgba(255, 253, 249, 0.78);
    border: 1px solid rgba(155, 153, 130, 0.18);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(85, 87, 70, 0.045);
  }

  .philosophy-pillar:not(:last-child)::after {
    display: none;
  }

  .philosophy-pillar:last-child {
    padding-bottom: 16px;
  }

  .philosophy-pillar h3 {
    max-width: none;
    margin-bottom: 5px;
    font-size: 1.03rem;
  }

  .philosophy-pillar p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .philosophy-pillar-icon {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    order: 3;
    margin-right: 0;
    margin-left: auto;
  }

  .brand-logo {
    height: 66px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 72px;
  }

  .eyebrow {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.28rem, 9.4vw, 2.55rem);
    letter-spacing: -0.035em;
    text-wrap: wrap;
  }

  .hero-copy,
  .hero-lead,
  .hero-credential,
  .hero-actions,
  .hero-chips {
    width: min(100%, calc(100vw - 24px));
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .mobile-break {
    display: block;
  }

  .hero::before {
    top: 220px;
    left: -220px;
    opacity: 0.55;
  }

  .hero::after {
    right: -280px;
    bottom: -160px;
    opacity: 0.7;
  }

  .hero-photo {
    border-width: 4px;
    box-shadow:
      10px 13px 0 rgba(155, 153, 130, 0.2),
      0 18px 45px rgba(85, 87, 70, 0.13);
  }

  .hero-credential {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 26px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 24px);
    flex-wrap: wrap;
    padding-right: 18px;
    padding-left: 18px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-actions .button i {
    flex: 0 0 27px;
  }

  .hero-chips {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-process {
    padding-top: 52px;
  }

  .section-process .section-heading {
    margin-bottom: 28px;
  }

  .section-identification::before,
  .section-about::after,
  .section-faq::after {
    opacity: 0.35;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

  .identification-item {
    min-height: 82px;
  }

  .conditions-grid .identification-item {
    min-height: 132px;
    padding: 22px;
  }

  .conditions-grid .identification-icon {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .conditions-grid .identification-icon i {
    font-size: 1.72rem;
  }

  .conditions-grid .identification-icon img {
    width: 82px;
    height: 82px;
  }

  .identification-item:nth-child(4n + 1),
  .identification-item:nth-child(4n + 2) {
    --icon-color: var(--color-terracotta);
    --icon-color-deep: #8e402b;
    --icon-glow: rgba(173, 86, 56, 0.25);
    background: rgba(248, 191, 154, 0.28);
    border-color: rgba(215, 127, 88, 0.22);
  }

  .identification-item:nth-child(4n + 3),
  .identification-item:nth-child(4n) {
    --icon-color: var(--color-sage);
    --icon-color-deep: #4d5b46;
    --icon-glow: rgba(102, 118, 93, 0.25);
    background: rgba(229, 235, 223, 0.82);
    border-color: rgba(102, 118, 93, 0.3);
  }

  .conditions-grid .identification-item:nth-child(n) {
    background: rgba(255, 253, 249, 0.92);
    border-color: rgba(155, 153, 130, 0.24);
  }

  .conditions-grid .identification-item:nth-child(2n) {
    --icon-color: var(--color-primary);
    --icon-color-deep: var(--color-primary-hover);
  }

  .care-card {
    padding: 24px;
  }

  .care-pillar-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .care-pillar-card {
    display: grid;
    min-height: auto;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 18px;
  }

  .care-pillar-top {
    grid-row: 1 / span 2;
    display: grid;
    justify-content: start;
    gap: 8px;
    margin-bottom: 0;
  }

  .care-pillar-icon {
    width: 48px;
    height: 48px;
  }

  .care-pillar-card h3 {
    margin-bottom: 6px;
    font-size: 1.08rem;
  }

  .care-pillar-card p {
    font-size: 0.95rem;
  }

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

  .about-photo {
    box-shadow: 0 16px 38px rgba(85, 87, 70, 0.12);
  }

  .modality-card {
    padding: 0;
  }

  .modality-card-body {
    padding: 26px 24px 28px;
  }

  .faq-list details {
    padding-right: 18px;
    padding-left: 58px;
  }

  .faq-list summary {
    min-height: 70px;
    padding-right: 36px;
    font-size: 1rem;
  }

  .faq-list summary::before,
  .faq-list summary::after {
    right: 8px;
  }

  .faq-list details p {
    padding-right: 30px;
  }

  .final-cta {
    padding-bottom: 78px;
  }

  .final-cta-card {
    padding: 34px 26px;
    border-radius: 24px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-nav {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-credit {
    text-align: left;
  }

  .legal-article {
    padding: 28px 22px;
  }
}

@media (max-width: 389.98px) {
  .brand-logo {
    height: 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .eyebrow {
    align-items: flex-start;
    border-radius: 14px;
  }

  .care-card {
    flex-direction: column;
  }

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

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

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