:root {
  --ink: #17231f;
  --muted: #5e6f69;
  --green: #1f5c4f;
  --green-soft: #dbece6;
  --sage: #88aa9d;
  --rose: #a66257;
  --gold: #c7974d;
  --paper: #fbfaf6;
  --mist: #eef5f2;
  --white: #ffffff;
  --line: rgba(31, 92, 79, 0.16);
  --shadow: 0 16px 40px rgba(23, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 210px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand-mark img {
  height: 29px;
  width: 29px;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--green);
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.desktop-nav a,
.mobile-menu a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: var(--green-soft);
  color: var(--green);
}

.nav-cta,
.btn {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: none;
  height: 44px;
  place-items: center;
  position: relative;
  width: 44px;
}

.menu-toggle span {
  background: var(--green);
  border-radius: 99px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 20px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  background: var(--paper);
  border-left: 1px solid var(--line);
  bottom: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 320px;
  padding: 86px 18px 22px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(106%);
  transition: transform 0.25s ease;
  width: 82vw;
  z-index: 900;
}

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

.mobile-menu a {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.hero {
  align-items: center;
  background: var(--mist);
  display: grid;
  gap: clamp(34px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  min-height: calc(100vh - 72px);
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: var(--green);
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  opacity: 0.88;
  position: absolute;
  right: 0;
}

.eyebrow {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5.4vw, 5.6rem);
  max-width: 880px;
}

h2 {
  color: var(--green);
  font-size: clamp(2rem, 3.8vw, 4rem);
  max-width: 880px;
}

h3 {
  color: var(--ink);
  font-size: 1.18rem;
}

.lead,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
  max-width: 720px;
}

.lead {
  margin-top: 22px;
}

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

.btn-primary {
  background: var(--green);
  box-shadow: 0 10px 24px rgba(31, 92, 79, 0.2);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
}

.btn-whatsapp {
  background: #1f8f60;
  color: var(--white);
}

.contact-pending {
  opacity: 0.78;
}

.trust-strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  max-width: 680px;
  overflow: hidden;
}

.trust-strip div {
  padding: 18px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip dt {
  color: var(--green);
  font-size: 1.02rem;
  font-weight: 900;
}

.trust-strip dd {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 3px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.portrait-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  max-width: 430px;
  padding: 18px;
  width: 100%;
}

.portrait-frame {
  align-items: center;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--green-soft), #ffffff);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.portrait-frame img {
  height: min(48%, 190px);
  object-fit: contain;
  width: min(48%, 190px);
}

.portrait-caption {
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 16px;
}

.portrait-caption span {
  color: var(--rose);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.portrait-caption p {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.portrait-caption strong {
  color: var(--green);
}

.family-band,
.first-visit {
  background: var(--paper);
}

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

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p {
  margin-top: 16px;
}

.care-grid,
.trust-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

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

.care-card,
.trust-grid article,
.timeline article,
.contact-card,
.care-tool {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.care-card {
  display: grid;
  gap: 14px;
  min-height: 270px;
  padding: 24px;
}

.care-card i,
.trust-grid i,
.contact-card i {
  color: var(--rose);
  font-size: 1.35rem;
}

.care-card p,
.trust-grid p,
.timeline p,
.care-result p {
  color: var(--muted);
  font-size: 0.98rem;
}

.accent-card {
  background: var(--green);
  color: var(--white);
}

.accent-card h3,
.accent-card p,
.accent-card i {
  color: var(--white);
}

.split-section {
  align-items: start;
  background: var(--green-soft);
  display: grid;
  gap: clamp(26px, 4vw, 56px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
}

.care-tool {
  box-shadow: 0 12px 28px rgba(31, 92, 79, 0.12);
  display: grid;
  gap: 22px;
  padding: clamp(18px, 3vw, 30px);
}

.choice-group {
  display: grid;
  gap: 10px;
}

.choice-label {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 800;
  min-height: 42px;
  padding: 9px 12px;
}

.choice-btn:hover,
.choice-btn.is-selected {
  background: var(--green);
  color: var(--white);
}

.care-result {
  background: var(--mist);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 20px;
}

.result-kicker {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.care-result .btn {
  justify-self: start;
  margin-top: 4px;
}

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

.timeline article {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 24px;
}

.timeline span {
  align-items: center;
  background: var(--green-soft);
  border-radius: 8px;
  color: var(--green);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 54px;
}

.patient-trust {
  background: var(--mist);
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.trust-grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.contact-section {
  background: var(--green);
  color: var(--white);
  display: grid;
  gap: clamp(26px, 4vw, 56px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
}

.contact-section .eyebrow,
.contact-section h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  opacity: 0.86;
}

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

.contact-card {
  color: var(--ink);
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 22px;
  text-decoration: none;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.contact-card[href]:hover {
  box-shadow: 0 12px 24px rgba(23, 35, 31, 0.16);
  transform: translateY(-1px);
}

.mobile-booking-bar {
  background: rgba(251, 250, 246, 0.98);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: none;
  gap: 8px;
  left: 0;
  padding: 10px;
  position: fixed;
  right: 0;
  z-index: 1000;
}

.mobile-booking-bar a {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  flex: 1;
  font-size: 0.86rem;
  font-weight: 900;
  gap: 7px;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
}

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  padding: 24px clamp(18px, 5vw, 72px);
  text-align: center;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

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

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

@media (max-width: 840px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .trust-strip,
  .care-grid,
  .timeline,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .portrait-panel {
    max-width: 520px;
  }

  .care-card,
  .timeline article {
    min-height: auto;
  }

  .mobile-booking-bar {
    display: flex;
  }

  footer {
    padding-bottom: 82px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 52px 16px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

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

  .btn,
  .choice-btn {
    width: 100%;
  }

  .mobile-booking-bar a {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
