:root {
  --ink: #25312d;
  --muted: #596661;
  --paper: #fbf8f3;
  --sand: #f1e7db;
  --sage: #6f8379;
  --sage-dark: #40564c;
  --terracotta: #b56f59;
  --lilac: #d9d0dc;
  --white: #fffdfa;
  --line: rgba(37, 49, 45, 0.14);
  --shadow: 0 24px 60px rgba(37, 49, 45, 0.12);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }
.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;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(37, 49, 45, .08); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sage);
  border-radius: 50% 50% 44% 56%;
  font-family: var(--serif);
  font-size: 23px;
  color: var(--sage-dark);
  transform: rotate(-5deg);
}
.brand-copy { display: grid; line-height: 1.25; }
.brand-copy strong { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.brand-copy small { color: var(--muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 600; }
.site-nav a:not(.nav-cta):hover { color: var(--terracotta); }
.nav-cta { padding: 11px 18px; border: 1px solid var(--sage-dark); border-radius: 999px; }
.nav-cta:hover { color: var(--white); background: var(--sage-dark); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .8fr);
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 78px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px 96px;
  overflow: hidden;
}
.hero-content { max-width: 690px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: 1.06; }
h1 { margin-bottom: 26px; font-size: clamp(48px, 6vw, 78px); }
h2 { margin-bottom: 22px; font-size: clamp(37px, 4.5vw, 55px); }
h3 { line-height: 1.2; }
.hero-intro { max-width: 610px; margin: 0 0 34px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--sage-dark); box-shadow: 0 12px 24px rgba(64, 86, 76, .18); }
.button-primary:hover { background: #33483f; }
.text-link { font-weight: 700; text-underline-offset: 4px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px 28px; margin: 40px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--sage-dark); font-weight: 800; }

.hero-art { position: relative; min-height: 560px; }
.art-halo {
  position: absolute;
  inset: 3% 0 3% 4%;
  border-radius: 49% 51% 45% 55% / 56% 42% 58% 44%;
  background: linear-gradient(145deg, var(--sand), #e8dcd6 55%, var(--lilac));
  transform: rotate(4deg);
}
.portrait-frame {
  position: absolute;
  z-index: 2;
  inset: 0 4% 4% 8%;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 250, .78);
  border-radius: 48% 52% 44% 56% / 38% 44% 56% 62%;
  background-image:
    linear-gradient(180deg, transparent 64%, rgba(37, 49, 45, .24)),
    url("./assets/vanessa-retrato.jpg");
  background-position: center, left 27%;
  background-size: cover, 280% auto;
  background-repeat: no-repeat;
  box-shadow: 0 24px 54px rgba(37, 49, 45, .16);
}
.portrait-caption {
  position: absolute;
  z-index: 4;
  left: 12%;
  bottom: 8%;
  max-width: 210px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-shadow: 0 2px 8px rgba(0,0,0,.42);
  text-transform: uppercase;
}
.art-note {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: 40px;
  width: 230px;
  padding: 20px 23px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 20px;
  background: rgba(255,253,250,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.art-note span { display: block; height: 16px; font-family: var(--serif); color: var(--terracotta); font-size: 36px; line-height: 1; }
.art-note p { margin: 5px 0 0; font-family: var(--serif); font-size: 18px; line-height: 1.3; }

.section-shell { max-width: 1180px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.care-section { padding-top: 112px; padding-bottom: 112px; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; align-items: end; margin-bottom: 52px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .section-heading p:last-child { margin-bottom: 0; }
.section-heading p:last-child { color: var(--muted); }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.care-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.care-card:hover { transform: translateY(-5px); border-color: rgba(111, 131, 121, .45); box-shadow: 0 18px 40px rgba(37, 49, 45, .08); }
.care-card:nth-child(2) { background: #eef0ea; }
.care-card:nth-child(3) { background: #f4ece8; }
.card-number { color: var(--terracotta); font-family: var(--serif); font-size: 14px; }
.care-card h3 { margin: 54px 0 16px; font-family: var(--serif); font-size: 26px; font-weight: 500; }
.care-card p { margin: 0; color: var(--muted); font-size: 15px; }
.approach-note {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 22px;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}
.approach-note .eyebrow { margin-bottom: 10px; color: #e9bba9; }
.approach-note h3 { margin: 0; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.approach-note > p { margin: 0; color: #dce3df; }

.process-section { padding: 110px 0 80px; background: #e9e7df; }
.process-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 72px; align-items: start; }
.process-copy > p:not(.eyebrow) { color: var(--muted); }
.steps { display: grid; gap: 0; margin: 36px 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(37, 49, 45, .15); }
.steps li:last-child { border-bottom: 1px solid rgba(37, 49, 45, .15); }
.steps li > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--sage); border-radius: 50%; color: var(--sage-dark); font-size: 13px; font-weight: 800; }
.steps strong { display: block; margin-bottom: 3px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }
.faq { border-top: 1px solid rgba(37, 49, 45, .15); }
.faq > button { display: flex; justify-content: space-between; width: 100%; padding: 18px 0; border: 0; border-bottom: 1px solid rgba(37, 49, 45, .15); color: var(--ink); background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.faq .plus { font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq button[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-answer { padding: 3px 24px 18px 0; border-bottom: 1px solid rgba(37, 49, 45, .15); }
.faq-answer p { margin: 0; color: var(--muted); font-size: 14px; }

.contact-card { position: sticky; top: 105px; padding: 42px; border-radius: 34px; background: var(--white); box-shadow: var(--shadow); }
.contact-card h2 { font-size: clamp(35px, 4vw, 48px); }
.contact-card > p:not(.eyebrow):not(.contact-note) { color: var(--muted); }
.contact-topics { margin: 28px 0 24px; padding: 0; border: 0; }
.contact-topics legend { margin-bottom: 12px; font-size: 13px; font-weight: 750; }
.topic-options { display: flex; flex-wrap: wrap; gap: 9px; }
.topic { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--paper); cursor: pointer; }
.topic:hover, .topic.is-selected { border-color: var(--sage-dark); color: var(--white); background: var(--sage-dark); }
.button-whatsapp { width: 100%; color: white; background: #446b5d; }
.button-whatsapp:hover { background: #34574b; box-shadow: 0 12px 25px rgba(52, 87, 75, .22); }
.button-whatsapp svg { width: 20px; fill: currentColor; }
.contact-note { margin: 13px 10px 0; color: var(--muted); font-size: 12px; text-align: center; }
.urgent-note { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.urgent-note strong { font-size: 13px; }
.urgent-note p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }

footer { display: flex; justify-content: space-between; gap: 24px; padding: 32px max(32px, calc((100vw - 1116px) / 2)); color: #d6dfdb; background: var(--ink); font-size: 12px; }
footer div { display: grid; }
footer strong { color: white; font-family: var(--serif); font-size: 16px; font-weight: 400; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .site-header { padding: 14px 20px; }
  .menu-button { display: grid; gap: 6px; }
  .menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: absolute; top: 69px; left: 20px; right: 20px; display: none; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 13px 14px; }
  .nav-cta { margin-top: 5px; text-align: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 24px 80px; }
  .hero-content { max-width: 760px; }
  .hero-art { min-height: 420px; max-width: 560px; width: 100%; margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; gap: 8px; }
  .section-heading .eyebrow { grid-column: 1; }
  .section-heading h2 { margin-bottom: 18px; }
  .care-grid { grid-template-columns: 1fr; }
  .care-card { min-height: 0; }
  .care-card h3 { margin-top: 34px; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}

@media (max-width: 600px) {
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 10px; }
  .hero { padding: 42px 20px 70px; }
  h1 { font-size: 44px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .button-primary { width: 100%; }
  .text-link { text-align: center; }
  .trust-list { gap: 10px 16px; margin-top: 30px; }
  .hero-art { min-height: 330px; }
  .portrait-frame { inset: 0 3% 2% 5%; background-position: center, left 25%; }
  .portrait-caption { left: 10%; bottom: 7%; font-size: 9px; }
  .art-note { right: 0; bottom: 5px; width: 195px; padding: 16px 18px; }
  .art-note p { font-size: 16px; }
  .section-shell { padding-left: 20px; padding-right: 20px; }
  .care-section { padding-top: 82px; padding-bottom: 82px; }
  .care-card { padding: 24px; border-radius: 23px; }
  .approach-note { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .approach-note h3 { font-size: 27px; }
  .process-section { padding-top: 82px; }
  .process-grid { gap: 48px; }
  .contact-card { padding: 29px 22px; border-radius: 26px; }
  .topic-options { display: grid; grid-template-columns: 1fr 1fr; }
  .topic { font-size: 13px; }
  footer { flex-direction: column; padding: 28px 20px; }
  footer p { margin: 0; }
}
