:root {
  --color-bg: #fbf8f3;
  --color-surface: #fffdf9;
  --color-sand: #e9ded0;
  --color-sage: #829082;
  --color-sage-dark: #4f5e51;
  --color-rose: #c9a59a;
  --color-earth: #6c5748;
  --color-text: #2f2b27;
  --color-muted: #6f675f;
  --shadow-soft: 0 24px 70px rgba(78, 65, 53, 0.12);
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(233, 222, 208, 0.3), transparent 420px),
    var(--color-bg);
  color: var(--color-text);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 70px;
  padding: 7px clamp(18px, 4vw, 58px);
  background: rgba(251, 248, 243, 0.9);
  border-bottom: 1px solid rgba(108, 87, 72, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand {
  gap: 11px;
  min-width: 0;
}

.brand-symbol {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--color-sage-dark);
  box-shadow: 0 8px 20px rgba(79, 94, 81, 0.12);
}

.brand-text {
  display: grid;
  gap: 3px;
  color: var(--color-sage-dark);
  line-height: 1;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 700;
}

.brand-text small {
  color: var(--color-earth);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.logo-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--color-sage-dark);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(79, 94, 81, 0.28);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(79, 94, 81, 0.28);
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--color-sage-dark);
  border-radius: 999px;
}

.hero,
.section,
.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 4.2vw, 52px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(22px, 4.6vw, 54px) 0 clamp(42px, 6vw, 72px);
}

.hero-content {
  max-width: 740px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--color-text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.28rem, 3.75vw, 3.65rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.hero-text,
.section-lead {
  max-width: 700px;
  margin-bottom: 26px;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.hero-actions,
.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--color-sage-dark);
  color: #fffdf9;
  box-shadow: 0 16px 36px rgba(79, 94, 81, 0.24);
}

.button.secondary {
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid rgba(108, 87, 72, 0.18);
  color: var(--color-earth);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(233, 222, 208, 0.62)),
    var(--color-surface);
  border: 1px solid rgba(108, 87, 72, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -54px;
  right: -54px;
  width: 190px;
  height: 190px;
  display: block;
  margin: 0;
  background:
    radial-gradient(circle at center, rgba(130, 144, 130, 0.22), transparent 62%);
  border-radius: 50%;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 32px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(201, 165, 154, 0.34);
  border-radius: 50%;
}

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

.card-label,
.content-tag {
  margin-bottom: 8px;
  color: var(--color-rose);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
}

.card-divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: rgba(108, 87, 72, 0.16);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--color-sage-dark);
  font-weight: 800;
}

.section {
  padding: clamp(58px, 9vw, 96px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

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

.two-column,
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 5vw, 58px);
}

.two-column {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.professional-id {
  display: inline-flex;
  margin: 12px 0 0;
  padding: 10px 14px;
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid rgba(108, 87, 72, 0.14);
  border-radius: 999px;
  color: var(--color-earth);
  font-weight: 800;
}

.service-grid,
.content-grid,
.appointment-grid,
.feature-list {
  display: grid;
  gap: 18px;
}

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

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

.appointment-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-list {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}

.service-card,
.content-grid article,
.appointment-grid article,
.feature-list article,
.split-panel article,
.calendar-placeholder,
.schedule {
  background: rgba(255, 253, 249, 0.75);
  border: 1px solid rgba(108, 87, 72, 0.13);
  border-radius: var(--radius);
}

.service-card,
.content-grid article,
.appointment-grid article,
.feature-list article,
.split-panel article {
  padding: 26px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.service-number {
  margin-bottom: 34px;
  color: var(--color-sage);
  font-weight: 800;
}

.split-panel {
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
  color: var(--color-muted);
}

.feature-list article {
  color: var(--color-muted);
  font-weight: 650;
}

.content-grid h3 {
  font-size: 1.25rem;
}

.content-grid span {
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-sage-dark);
  font-weight: 800;
}

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

details {
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(108, 87, 72, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--color-earth);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.schedule {
  display: block;
  padding: clamp(28px, 5vw, 48px);
  margin-bottom: clamp(58px, 8vw, 88px);
}

.schedule-intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.schedule h2 {
  margin-bottom: 14px;
}

.calendar-placeholder {
  display: grid;
  place-items: center;
  min-height: 230px;
  margin: 18px 0;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(130, 144, 130, 0.12), rgba(201, 165, 154, 0.14)),
    rgba(255, 253, 249, 0.78);
  border-style: dashed;
}

.calendar-placeholder p {
  margin: 0;
  color: var(--color-earth);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(108, 87, 72, 0.14);
  color: var(--color-muted);
}

.footer-logo {
  margin-bottom: 12px;
  width: 220px;
}

.footer-logo .logo-image {
  width: 100%;
  max-width: none;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-symbol {
  width: 46px;
  height: 46px;
}

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

.footer-brand .brand-text small {
  font-size: 0.72rem;
}

.site-footer p {
  margin-bottom: 5px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-style: normal;
  font-weight: 650;
  text-align: right;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  background: #5f7b63;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(79, 94, 81, 0.32);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .brand-symbol {
    width: 50px;
    height: 50px;
  }

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

  .brand-text small {
    font-size: 0.7rem;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .service-grid,
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-header {
    min-height: 68px;
  }

  .brand {
    max-width: calc(100vw - 92px);
  }

  .brand-symbol {
    width: 50px;
    height: 50px;
  }

  .site-nav {
    position: fixed;
    inset: 74px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--color-surface);
    border: 1px solid rgba(108, 87, 72, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    font-size: 0.96rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    border-radius: var(--radius);
  }

  .hero,
  .section-heading,
  .two-column,
  .split-panel,
  .appointment-grid,
  .feature-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 7px 16px;
  }

  .logo-image {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .brand {
    gap: 9px;
    max-width: calc(100vw - 82px);
  }

  .brand-symbol {
    width: 46px;
    height: 46px;
  }

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

  .brand-text small {
    font-size: 0.64rem;
    letter-spacing: 0;
  }

  .footer-logo {
    width: 190px;
    max-width: 70vw;
  }

  .hero,
  .section,
  .site-footer {
    width: min(100% - 32px, var(--max-width));
  }

  h1 {
    font-size: 2.02rem;
    line-height: 1.08;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-text {
    margin-bottom: 24px;
    font-size: 1.02rem;
  }

  .service-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .schedule-actions,
  .hero-actions {
    width: 100%;
  }

  .button {
    padding-inline: 16px;
  }

  .service-card {
    min-height: auto;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}
