:root {
  --page: #ffffff;
  --surface: #f7faf6;
  --card: #edf6eb;
  --card-strong: #e5f2e2;
  --text: #415447;
  --muted: #657368;
  --line: #dbe7dc;
  --accent: #6d9d72;
  --accent-soft: #cfeacc;
  --gold: #f5c75d;
  --gold-hover: #e8b948;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-hover: #1fbd5a;
  --shadow: 0 8px 26px rgba(50, 76, 57, 0.07);
  --radius: 18px;
}

html[data-theme="dark"] {
  --page: #101811;
  --surface: #151e17;
  --card: #1c2a1f;
  --card-strong: #213125;
  --text: #e2ebe2;
  --muted: #bcc8bd;
  --line: #2b3c2e;
  --accent: #91bd91;
  --accent-soft: #29462f;
  --white: #101811;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--text);
  background: var(--page);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
}

iframe,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

a,
button,
.btn,
.info-card,
.treatment-card,
.whatsapp-float {
  transition: color 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 70%, transparent);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.05rem;
}

p {
  color: var(--muted);
}

address {
  margin: 0;
  font-style: normal;
}

.page-shell {
  max-width: 1110px;
}

.section-space {
  padding: 88px 0;
}

.section-space-sm {
  padding: 24px 0 72px;
}

