:root {
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --surface-soft: #F5EFEC;
  --gold: #BA9963;
  --gold-dark: #8E7044;
  --rose: #C49999;
  --rose-soft: #E2C4BF;
  --rose-pale: #F3E7E5;
  --ink: #332E2D;
  --ink-2: #504846;
  --muted: #786E6A;
  --line: rgba(51, 46, 45, .11);
  --shadow-sm: 0 12px 28px rgba(77, 57, 47, .07);
  --shadow-md: 0 22px 55px rgba(77, 57, 47, .11);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --max-width: 1180px;
  --header-height: 84px;
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { display: block; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(250, 248, 245, .93);
  border-bottom: 1px solid rgba(51, 46, 45, .06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-header-inner {
  width: min(calc(100% - 48px), var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
  flex: 0 0 auto;
}
.brand-logo {
  display: block;
  width: 260px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.brand-monogram {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(186, 153, 99, .55);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.06em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: var(--font-heading); font-size: 14px; font-weight: 500; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.main-navigation { display: flex; align-items: center; gap: 24px; }
.main-navigation a {
  position: relative;
  color: var(--ink-2);
  font-size: 16px;
  font-weight: 600;
  transition: color .25s ease;
}
.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.main-navigation a:hover { color: var(--gold-dark); }
.main-navigation a:hover::after { right: 0; }
.header-cta { min-height: 50px; padding: 0 22px; font-size: 13px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 1.5px; margin: 5px 0; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.mobile-navigation { display: none; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { min-height: 62px; padding-inline: 30px; color: #fff; background: var(--rose); box-shadow: 0 12px 26px rgba(196, 153, 153, .28); font-size: 15px; }
.btn-primary:hover { background: #B58485; box-shadow: 0 16px 32px rgba(196, 153, 153, .34); }
.btn-primary.header-cta { min-height: 50px; padding-inline: 22px; font-size: 13px; }
.btn-secondary { min-height: 62px; padding-inline: 30px; color: #fff; background: var(--rose); border-color: transparent; box-shadow: 0 12px 26px rgba(196, 153, 153, .28); font-size: 15px; }
.btn-secondary:hover { color: #fff; background: #B58485; border-color: transparent; box-shadow: 0 16px 32px rgba(196, 153, 153, .34); }
.btn-large { min-height: 68px; padding: 0 36px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(186, 153, 99, .45);
  padding-bottom: 4px;
}
.text-link span { color: var(--gold); }

.section { padding: 108px 0; }
.section-inner { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; }
.section-heading { max-width: 760px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.section-kicker::before { content: ""; width: 32px; height: 1px; background: var(--gold); }
.centered .section-kicker::after { content: ""; width: 32px; height: 1px; background: var(--gold); }
.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -.035em;
}
.section-intro { margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px 0 82px;
  background: linear-gradient(135deg, #FCFBF9 0%, var(--bg) 55%, #F5E9E6 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(54px, 7vw, 108px);
}
.hero-content { width: 54%; display: flex; flex-direction: column; align-items: flex-start; }
.hero-title {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.045em;
}
.hero-title-accent {
  display: inline;
  color: var(--rose);
  background: linear-gradient(98deg, #C49999 4%, #BA9963 58%, #A77F58 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead { max-width: 620px; margin: 26px 0 0; color: var(--muted); font-size: clamp(16px, 1.5vw, 18px); line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 600;
}
.hero-highlights li { display: flex; align-items: center; gap: 7px; }
.mini-check { width: 19px; height: 19px; display: grid; place-items: center; color: var(--gold-dark); border: 1px solid rgba(186,153,99,.45); border-radius: 50%; font-size: 10px; }
.hero-media { width: min(40%, 430px); position: relative; }
.hero-photo-shell {
  position: relative;
  width: 100%;
  aspect-ratio: .69;
  padding: 10px;
  border: 1px solid rgba(186, 153, 99, .24);
  border-radius: 160px 160px 30px 30px;
  background: rgba(255,255,255,.64);
  box-shadow: var(--shadow-md);
}
.hero-photo-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 34px -26px -24px 38px;
  border: 1px solid rgba(196, 153, 153, .36);
  border-radius: 160px 160px 32px 32px;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; border-radius: 150px 150px 22px 22px; }
.photo-stamp {
  position: absolute;
  left: -56px;
  bottom: 56px;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 14px 24px rgba(77,57,47,.16));
}
.stamp-logo { width: 100%; height: 100%; object-fit: contain; }
.hero-note { max-width: 280px; margin: 26px auto 0; color: var(--muted); font-size: 12px; text-align: center; }
.hero-orbit { position: absolute; pointer-events: none; border: 1px solid rgba(196, 153, 153, .15); border-radius: 50%; }
.hero-orbit-one { width: 560px; height: 560px; right: -210px; top: -220px; }
.hero-orbit-two { width: 260px; height: 260px; left: -160px; bottom: 28px; border-color: rgba(186,153,99,.18); }

.signal-section { background: var(--surface); }
.signal-inner { display: flex; flex-direction: column; }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; }
.signal-card {
  position: relative;
  isolation: isolate;
  min-height: 318px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 22px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 32px rgba(64,48,42,.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.signal-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(39,31,29,.02) 20%, rgba(39,31,29,.22) 52%, rgba(39,31,29,.86) 100%);
}
.signal-card::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(196,153,153,.06);
}
.signal-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(64,48,42,.16); }
.signal-card--hormonal { background-image: url("../images/cards/hormonal.webp"); }
.signal-card--weight { background-image: url("../images/cards/weight.webp"); }
.signal-card--sleep { background-image: url("../images/cards/sleep.webp"); }
.signal-card--gut { background-image: url("../images/cards/gut.webp"); }
.signal-card--prevention { background-image: url("../images/cards/prevention.webp"); }
.signal-card--longevity { background-image: url("../images/cards/longevity.webp"); background-position: center 34%; }
.signal-card-content { width: 100%; position: relative; z-index: 2; display: flex; flex-direction: column; }
.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--rose);
  border: 1px solid rgba(196,153,153,.24);
  border-radius: 13px;
  background: rgba(226,196,191,.17);
}
.feature-icon svg, .step-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.signal-card h3 { margin: 0 0 8px; color: #fff; font-family: var(--font-heading); font-size: 19px; font-weight: 500; text-shadow: 0 2px 18px rgba(0,0,0,.18); }
.signal-card p { max-width: 310px; margin: 0; color: rgba(255,255,255,.88); font-size: 13px; line-height: 1.65; text-shadow: 0 2px 14px rgba(0,0,0,.20); }

.approach-section { background: var(--rose-pale); }
.approach-layout { display: flex; align-items: center; gap: clamp(48px, 8vw, 108px); }
.approach-copy { width: 42%; display: flex; flex-direction: column; align-items: flex-start; }
.approach-quote { margin-top: 30px; padding: 20px 22px; border-left: 2px solid var(--gold); color: var(--ink-2); background: rgba(255,255,255,.42); font-family: var(--font-heading); font-size: 15px; line-height: 1.65; }
.pillars-grid { width: 58%; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pillar-card { position: relative; min-height: 220px; padding: 30px; border-radius: var(--radius-sm); background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.9); }
.pillar-card-alt { background: rgba(250,248,245,.72); }
.pillar-icon {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}
.pillar-card h3 { margin: 30px 0 9px; font-family: var(--font-heading); font-size: 18px; font-weight: 500; }
.pillar-card p { margin: 0; color: var(--muted); font-size: 13px; }

.consultation-section { position: relative; overflow: hidden; background: var(--bg); }
.consultation-heading { margin: 0 auto; text-align: center; }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 62px; }
.steps-grid::before { content: ""; position: absolute; left: 10%; right: 10%; top: 30px; height: 1px; background: linear-gradient(90deg, transparent, rgba(186,153,99,.45), transparent); }
.step-card { position: relative; padding: 0 24px; text-align: center; }
.step-number { position: relative; z-index: 2; width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto; color: var(--gold-dark); background: var(--surface); border: 1px solid rgba(186,153,99,.35); border-radius: 50%; font-size: 12px; font-weight: 800; box-shadow: 0 8px 22px rgba(77,57,47,.06); }
.step-icon { width: 34px; height: 34px; display: grid; place-items: center; margin: 28px auto 10px; color: var(--rose); }
.step-card h3 { margin: 0; font-family: var(--font-heading); font-size: 18px; font-weight: 500; }
.step-card p { margin: 10px auto 0; max-width: 240px; color: var(--muted); font-size: 12.5px; }
.consultation-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 62px; padding: 28px 30px; border: 1px solid rgba(186,153,99,.18); border-radius: var(--radius-sm); background: rgba(255,255,255,.68); }
.consultation-cta div { display: flex; flex-direction: column; gap: 5px; }
.consultation-cta strong { font-family: var(--font-heading); font-size: 17px; font-weight: 500; }
.consultation-cta span { max-width: 720px; color: var(--muted); font-size: 12.5px; }
.consultation-orbit { position: absolute; width: 420px; height: 420px; left: -280px; bottom: -120px; border: 1px solid rgba(196,153,153,.18); border-radius: 50%; }

.care-section { background: var(--surface); }
.care-heading { max-width: 780px; }
.care-showcase { display: flex; align-items: stretch; gap: clamp(28px, 4.5vw, 58px); margin-top: 52px; }
.care-grid { order: 2; width: 65%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.care-card { min-height: 242px; display: flex; align-items: flex-start; gap: 18px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 8px 24px rgba(77,57,47,.035); }
.care-card-featured { background: linear-gradient(145deg, #F7EFED 0%, #FCF9F7 100%); border-color: rgba(196,153,153,.2); }
.care-icon { width: 52px; height: 52px; flex: 0 0 auto; object-fit: contain; }
.care-card-content { min-width: 0; display: flex; flex-direction: column; }
.care-tag { width: fit-content; margin-bottom: 10px; padding: 5px 9px; border-radius: 999px; color: var(--gold-dark); background: rgba(186,153,99,.11); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.care-card h3 { margin: 0 0 9px; font-family: var(--font-heading); font-size: 18px; font-weight: 500; line-height: 1.35; }
.care-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.care-media { order: 1; width: 35%; display: flex; align-items: stretch; justify-content: center; }
.care-photo-shell { position: relative; width: 100%; min-height: 436px; padding: 10px; border: 1px solid rgba(186,153,99,.24); border-radius: 120px 28px 28px 28px; background: rgba(250,248,245,.78); box-shadow: var(--shadow-md); }
.care-photo-shell picture { display: block; width: 100%; height: 100%; }
.care-photo { width: 100%; height: 100%; min-height: 416px; object-fit: cover; object-position: 50% 30%; border-radius: 111px 20px 20px 20px; }
.care-photo-mark { position: absolute; left: -30px; bottom: 34px; width: 108px; height: 108px; border-radius: 50%; filter: drop-shadow(0 13px 22px rgba(77,57,47,.14)); }
.care-photo-mark img { width: 100%; height: 100%; object-fit: contain; }

/* Microinterações dos cards: discretas e apenas em dispositivos com hover real. */
.pillar-card,
.step-card,
.care-card,
.injectable-step,
.consultation-cta,
.contact-card,
.contact-list li {
  transition: transform .30s var(--ease), box-shadow .30s var(--ease), border-color .30s ease, background-color .30s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pillar-card:hover,
  .care-card:hover,
  .consultation-cta:hover,
  .contact-card:hover,
  .contact-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(77,57,47,.10);
  }
  .step-card:hover { transform: translateY(-4px); }
  .step-card:hover .step-number { box-shadow: 0 14px 28px rgba(77,57,47,.10); }
  .injectable-step:hover {
    transform: translateY(-5px);
    border-color: rgba(212,185,133,.24);
    background: rgba(255,255,255,.065);
    box-shadow: 0 18px 36px rgba(0,0,0,.13);
  }
}

.injectable-section { position: relative; overflow: hidden; padding: 112px 0; color: #F8F3F0; background: #322E2E; }
.injectable-layout { position: relative; z-index: 2; display: flex; align-items: center; gap: clamp(54px, 9vw, 118px); }
.injectable-copy { width: 51%; display: flex; flex-direction: column; align-items: flex-start; }
.section-kicker-light { color: #D4B985; }
.section-kicker-light::before { background: #D4B985; }
.section-title-light { color: #FFF9F5; }
.section-intro-light { color: rgba(255,249,245,.66); }
.injectable-note { margin: 24px 0 0; padding: 16px 18px; border-left: 1px solid #D4B985; color: rgba(255,249,245,.74); background: rgba(255,255,255,.035); font-size: 12.5px; }
.injectable-steps { width: 49%; display: flex; flex-direction: column; gap: 12px; }
.injectable-step { display: flex; align-items: flex-start; gap: 20px; padding: 24px; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); background: rgba(255,255,255,.045); }
.injectable-index { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: #D4B985; border: 1px solid rgba(212,185,133,.38); border-radius: 50%; font-size: 10px; font-weight: 800; }
.injectable-step h3 { margin: 0 0 5px; color: #fff; font-family: var(--font-heading); font-size: 16px; font-weight: 500; }
.injectable-step p { margin: 0; color: rgba(255,249,245,.62); font-size: 12.5px; }
.injectable-glow { position: absolute; width: 520px; height: 520px; right: -250px; top: -230px; border: 1px solid rgba(212,185,133,.15); border-radius: 50%; box-shadow: 0 0 120px rgba(196,153,153,.05) inset; }

.about-section { background: linear-gradient(180deg, #F8F2F0 0%, var(--bg) 100%); }
.about-layout { display: flex; align-items: center; gap: clamp(54px, 9vw, 118px); }
.about-media { width: 42%; }
.about-photo-shell { position: relative; width: min(100%, 440px); padding: 10px; border: 1px solid rgba(186,153,99,.24); border-radius: 30px 150px 30px 30px; background: rgba(255,255,255,.62); box-shadow: var(--shadow-md); }
.about-image { width: 100%; aspect-ratio: .68; object-fit: cover; object-position: center 30%; border-radius: 22px 140px 22px 22px; }
.about-badge { position: absolute; right: -44px; bottom: 36px; width: 142px; height: 142px; padding: 0; border: 0; border-radius: 50%; background: transparent; filter: drop-shadow(0 14px 24px rgba(77,57,47,.16)); }
.about-badge .stamp-logo { width: 100%; height: 100%; object-fit: contain; }
.about-content { width: 58%; display: flex; flex-direction: column; align-items: flex-start; }
.about-content > p { margin: 22px 0 0; color: var(--muted); font-size: 14px; }
.about-content .about-emphasis { color: var(--ink-2); font-size: 15px; font-weight: 600; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.about-points span { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid rgba(186,153,99,.22); border-radius: 999px; color: var(--ink-2); background: rgba(255,255,255,.55); font-size: 13px; }
.about-points i { color: var(--gold-dark); font-style: normal; }

.philosophy-section { padding: 0 0 108px; background: var(--bg); }
.philosophy-inner { position: relative; min-height: 190px; display: flex; align-items: center; justify-content: center; padding: 44px; overflow: hidden; border: 1px solid rgba(196,153,153,.20); border-radius: var(--radius-lg); background: linear-gradient(130deg, #F2E3E0, #FAF7F4 58%, #F1E7E3); text-align: center; }
.philosophy-inner p { position: relative; z-index: 2; max-width: 820px; margin: 0; font-family: var(--font-heading); font-size: clamp(22px, 3vw, 34px); font-weight: 400; line-height: 1.5; letter-spacing: -.02em; }
.philosophy-mark { position: absolute; right: -36px; bottom: -82px; width: 238px; height: 238px; object-fit: contain; opacity: .10; transform: rotate(-8deg); filter: saturate(.72); }

.faq-section { background: var(--surface); }
.faq-layout { display: flex; align-items: flex-start; gap: clamp(48px, 8vw, 100px); }
.faq-heading { position: sticky; top: calc(var(--header-height) + 28px); width: 38%; display: flex; flex-direction: column; align-items: flex-start; }
.faq-contact-link { margin-top: 24px; }
.faq-list { width: 62%; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); font-size: 16px; }
.faq-list summary { position: relative; list-style: none; cursor: pointer; padding: 23px 44px 23px 0; color: var(--ink); font-family: var(--font-heading); font-size: 16px; font-weight: 500; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 15px; height: 1px; background: var(--gold-dark); transition: transform .25s ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { max-width: 720px; margin: -4px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.contact-section { position: relative; overflow: hidden; background: var(--bg); }
.contact-card { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 70px; padding: 58px; border: 1px solid rgba(186,153,99,.20); border-radius: var(--radius-lg); background: #F6ECE9; box-shadow: 0 24px 60px rgba(77,57,47,.07); }
.contact-copy { width: 52%; display: flex; flex-direction: column; align-items: flex-start; }
.contact-copy .section-title { font-size: clamp(31px, 4vw, 48px); }
.contact-copy .btn { margin-top: 28px; }
.contact-list { width: 42%; list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; }
.contact-list li { display: flex; align-items: center; gap: 14px; padding: 15px 16px; border: 1px solid rgba(255,255,255,.82); border-radius: 15px; background: rgba(255,255,255,.66); }
.contact-icon { width: 38px; height: 38px; flex: 0 0 auto; display: block; padding: 8px; object-fit: contain; border: 1px solid rgba(186,153,99,.25); border-radius: 11px; background: rgba(255,255,255,.72); }
.contact-list div { min-width: 0; display: flex; flex-direction: column; }
.contact-list small { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.contact-list a, .contact-list span { margin-top: 2px; overflow-wrap: anywhere; color: var(--ink-2); font-size: 14px; font-weight: 600; }
.contact-pattern { position: absolute; width: 620px; height: 620px; right: -360px; top: -260px; border: 1px solid rgba(196,153,153,.16); border-radius: 50%; }


.locations-section { position: relative; overflow: hidden; padding-top: 96px; background: linear-gradient(180deg, var(--bg) 0%, #F7F0ED 100%); }
.locations-grid { width: min(920px, 100%); margin: 48px auto 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.location-card { display: flex; align-items: flex-start; gap: 20px; min-height: 220px; padding: 30px; border: 1px solid rgba(186,153,99,.22); border-radius: 24px; background: rgba(255,255,255,.76); box-shadow: 0 16px 38px rgba(77,57,47,.06); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease; }
.location-card:hover { transform: translateY(-5px); border-color: rgba(186,153,99,.42); box-shadow: 0 22px 46px rgba(77,57,47,.10); }
.location-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(186,153,99,.30); border-radius: 16px; background: #fff; color: var(--gold-dark); }
.location-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.location-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.location-city { color: var(--rose-dark, #A36F71); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.location-card h3 { margin: 7px 0 9px; font-family: var(--font-heading); font-size: 22px; font-weight: 500; color: var(--ink); }
.location-card address { margin: 0; color: var(--muted); font-size: 14px; font-style: normal; line-height: 1.7; }
.location-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; padding-bottom: 3px; border-bottom: 1px solid rgba(186,153,99,.42); color: var(--ink-2); font-size: 12px; font-weight: 700; }
.location-link span { color: var(--gold-dark); }

.site-footer { padding: 54px 0 22px; color: rgba(255,255,255,.82); background: #2E2A2A; }
.footer-inner { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer-brand { min-width: 300px; display: flex; align-items: center; }
.footer-logo { width: min(292px, 100%); height: auto; flex: 0 0 auto; object-fit: contain; opacity: .96; }
.footer-copy { max-width: 480px; color: rgba(255,255,255,.48); font-size: 10px; }
.footer-copy p { margin: 0 0 6px; }
.footer-navigation { display: flex; flex-wrap: wrap; gap: 16px; color: rgba(255,255,255,.58); font-size: 11px; }
.footer-navigation a:hover { color: #fff; }
.footer-bottom { width: min(calc(100% - 48px), var(--max-width)); margin: 38px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.46); font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.66); transition: color .25s ease; }
.footer-bottom a:hover { color: #fff; }

.whatsapp-float { position: fixed; z-index: 1100; right: 24px; bottom: 24px; width: 99px; height: 99px; }
.whatsapp-float-link { position: relative; width: 100%; height: 100%; display: block; border-radius: 27px; filter: drop-shadow(0 12px 18px rgba(18, 89, 42, .18)); transition: transform .25s var(--ease); }
.whatsapp-float-link:hover { transform: translateY(-3px); }
.whatsapp-fallback, .whatsapp-lottie { position: absolute; inset: 0; display: grid; place-items: center; }
.whatsapp-fallback { padding: 21px; color: white; background: #25D366; border-radius: 27px; }
.whatsapp-fallback svg { width: 100%; height: 100%; }
.whatsapp-lottie { opacity: 0; pointer-events: none; }
.whatsapp-lottie svg { width: 100% !important; height: 100% !important; transform: scale(1.48); transform-origin: center; overflow: visible; }
.whatsapp-float.is-lottie-ready .whatsapp-lottie { opacity: 1; }
.whatsapp-float.is-lottie-ready .whatsapp-fallback { opacity: 0; }
.whatsapp-float.is-fallback-animated .whatsapp-fallback { animation: whatsappFallbackPulse 2.65s ease-in-out infinite; }
@keyframes whatsappFallbackPulse {
  0%, 100% { transform: rotate(0deg) scale(1); }
  28% { transform: rotate(-5deg) scale(.94); }
  52% { transform: rotate(5deg) scale(1.06); }
  76% { transform: rotate(0deg) scale(1); }
}

.reveal { opacity: 0; transition-property: opacity, transform; transition-duration: .72s; transition-timing-function: var(--ease); }
.reveal-up { transform: translateY(20px); }
.reveal-fade { transform: scale(.985); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal[data-reveal-delay="1"] { transition-delay: .07s; }
.reveal[data-reveal-delay="2"] { transition-delay: .14s; }
.reveal[data-reveal-delay="3"] { transition-delay: .21s; }
.reveal[data-reveal-delay="4"] { transition-delay: .28s; }
.reveal[data-reveal-delay="5"] { transition-delay: .35s; }


@media (min-width: 1025px) {
  .care-heading { margin-inline: auto; text-align: center; }
  .care-heading .section-kicker { justify-content: center; }
  .care-heading .section-kicker::after { content: ""; width: 32px; height: 1px; background: var(--gold); }
}

@media (min-width: 768px) {
  .injectable-copy .section-title-light { font-size: 38px; }
}

@media (max-width: 1080px) {
  .main-navigation { gap: 16px; }
  .main-navigation a { font-size: 14px; }
  .header-cta { display: none; }
  .hero-inner { gap: 58px; }
  .photo-stamp { left: -34px; }
}

@media (max-width: 1024px) {
  :root { --header-height: 76px; }
  .site-header-inner { width: min(calc(100% - 36px), var(--max-width)); }
  .main-navigation { display: none; }
  .menu-toggle { display: block; }
  .mobile-navigation {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px 24px 28px;
    border-top: 1px solid var(--line);
    background: rgba(250,248,245,.98);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .25s ease;
    box-shadow: var(--shadow-md);
  }
  .mobile-navigation.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-navigation > a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--font-heading); font-size: 15px; }
  .mobile-navigation .btn { width: 100%; margin-top: 18px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .section { padding: 88px 0; }
  .section-inner, .hero-inner, .footer-inner, .footer-bottom { width: min(calc(100% - 36px), var(--max-width)); }
  .hero { min-height: auto; padding: 62px 0 78px; }
  .hero-inner { flex-direction: column; align-items: stretch; }
  .hero-content { width: 100%; max-width: 760px; }
  .hero-media { width: min(70%, 450px); align-self: center; }
  .hero-title { font-size: clamp(44px, 7.2vw, 66px); }
  .photo-stamp { left: -44px; }

  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-layout, .care-showcase, .injectable-layout, .about-layout, .faq-layout, .contact-card { flex-direction: column; }
  .approach-copy, .pillars-grid, .care-grid, .care-media, .injectable-copy, .injectable-steps, .about-media, .about-content, .faq-heading, .faq-list, .contact-copy, .contact-list { width: 100%; }
  .approach-copy { max-width: 720px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 0; }
  .steps-grid::before { display: none; }
  .care-showcase { gap: 40px; }
  .care-grid { grid-template-columns: 1fr 1fr; order: 2; }
  .care-media { order: 1; display: flex; justify-content: center; }
  .care-photo-shell { width: min(72%, 430px); min-height: 520px; }
  .care-photo { min-height: 500px; }
  .about-media { display: flex; justify-content: center; }
  .about-content { max-width: 800px; }
  .faq-heading { position: static; max-width: 680px; }
  .contact-card { align-items: stretch; padding: 46px; }
  .contact-list { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .site-header-inner { width: calc(100% - 28px); }
  .brand { min-width: 0; flex: 1 1 auto; max-width: calc(100% - 56px); }
  .brand-logo { display: block; width: min(285px, calc(100vw - 84px)); height: auto; max-height: 58px; }
  .brand-copy { display: none; }
  .brand-monogram { width: 38px; height: 38px; }

  .section { padding: 72px 0; }
  .section-inner, .hero-inner, .footer-inner, .footer-bottom { width: calc(100% - 28px); }
  .section-title { font-size: clamp(29px, 9vw, 40px); }
  .section-intro { font-size: 14px; }
  .section-kicker { font-size: 9px; }

  .hero { padding: 28px 0 66px; }
  .hero-inner { gap: 42px; }
  .hero-media { order: -1; }
  .hero-content { order: 1; }
  .hero-note { display: none; }
  .hero-title { font-size: 32px; line-height: 42px; }
  .hero-lead { margin-top: 20px; font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 30px; margin-top: 28px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .text-link { width: fit-content; align-self: center; text-align: center; }
  .hero-highlights { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 28px; font-size: 14px; }
  .hero-media { width: min(90%, 390px); }
  .hero-photo-shell { border-radius: 120px 120px 26px 26px; }
  .hero-photo { border-radius: 112px 112px 18px 18px; }
  .hero-photo-shell::after { inset: 28px -14px -16px 26px; border-radius: 120px 120px 28px 28px; }
  .photo-stamp { left: -10px; bottom: 28px; width: 116px; height: 116px; }
  .hero-note { margin-top: 22px; }
  .hero-orbit-one { width: 330px; height: 330px; right: -210px; }

  .signal-grid, .pillars-grid, .care-grid, .contact-list { grid-template-columns: 1fr; }
  .signal-grid { display: block; margin-top: 44px; }
  .signal-card {
    min-height: 390px;
    margin-bottom: 18px;
    position: sticky;
    top: calc(var(--header-height) + 14px);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(64,48,42,.14);
  }
  .signal-card:nth-child(1) { z-index: 1; top: calc(var(--header-height) + 14px); }
  .signal-card:nth-child(2) { z-index: 2; top: calc(var(--header-height) + 22px); }
  .signal-card:nth-child(3) { z-index: 3; top: calc(var(--header-height) + 30px); }
  .signal-card:nth-child(4) { z-index: 4; top: calc(var(--header-height) + 38px); }
  .signal-card:nth-child(5) { z-index: 5; top: calc(var(--header-height) + 46px); }
  .signal-card:nth-child(6) { z-index: 6; top: calc(var(--header-height) + 54px); }
  .signal-card:last-child { margin-bottom: 0; }
  .signal-card:hover { transform: none; }
  .signal-card h3 { font-size: 21px; }
  .signal-card p { font-size: 13.5px; }
  .approach-layout { gap: 44px; }
  .pillars-grid { width: 100%; }
  .pillar-card { min-height: auto; }
  .pillar-icon { width: 46px; height: 46px; }
  .pillar-card h3 { margin-top: 24px; }

  .steps-grid { grid-template-columns: 1fr; gap: 34px; margin-top: 46px; }
  .step-card { padding: 0 10px; }
  .consultation-cta { flex-direction: column; align-items: stretch; padding: 24px; }
  .consultation-cta .btn { width: 100%; }

  .care-showcase { margin-top: 40px; gap: 34px; }
  .care-card { min-height: auto; padding: 22px; border-radius: 20px; }
  .care-icon { width: 48px; height: 48px; }
  .care-photo-shell { width: min(92%, 390px); min-height: 500px; border-radius: 110px 24px 24px 24px; }
  .care-photo { min-height: 480px; border-radius: 102px 17px 17px 17px; }
  .care-photo-mark { left: -10px; bottom: 30px; width: 96px; height: 96px; }
  .injectable-section { padding: 78px 0; }
  .injectable-layout { gap: 46px; }
  .injectable-step { padding: 20px; }

  .about-layout { gap: 54px; }
  .about-media { padding: 0 10px; }
  .about-photo-shell { border-radius: 24px 110px 24px 24px; }
  .about-image { border-radius: 17px 102px 17px 17px; }
  .about-badge { right: -6px; bottom: 22px; width: 120px; height: 120px; }
  .about-points { gap: 7px; }
  .about-points span { font-size: 12px; }

  .philosophy-section { padding-bottom: 72px; }
  .philosophy-inner { min-height: 230px; padding: 36px 24px; border-radius: 26px; }
  .philosophy-inner p { font-size: clamp(20px, 7vw, 29px); }
  .philosophy-mark { right: -48px; bottom: -58px; width: 178px; height: 178px; }

  .faq-layout { gap: 42px; }
  .faq-list summary { padding: 20px 38px 20px 0; font-size: 14px; }

  .contact-card { gap: 40px; padding: 32px 22px; border-radius: 26px; }
  .contact-copy .btn { width: 100%; }
  .contact-list li { padding: 13px; }
  .contact-list a, .contact-list span { font-size: 13px; }

  
  .locations-section { padding-top: 72px; }
  .locations-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .location-card { min-height: auto; padding: 22px; border-radius: 20px; }
  .location-card:hover { transform: none; }
  .location-card h3 { font-size: 20px; }

.site-footer { padding-top: 44px; }
  .footer-logo { width: min(246px, 100%); height: auto; }
  .footer-navigation { margin-top: 4px; }
  .footer-bottom { gap: 10px; font-size: 10.5px; line-height: 1.6; }
  .footer-bottom a { width: 100%; }

  .whatsapp-float { width: 87px; height: 87px; right: 16px; bottom: 16px; }
  .whatsapp-float-link, .whatsapp-fallback { border-radius: 24px; }
}

@media (max-width: 390px) {
  .hero-title { font-size: 32px; line-height: 42px; }
  .hero-media { width: 94%; }
  .photo-stamp { width: 108px; height: 108px; }
}

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

/* =========================================================
   PROJECT PREVIEW ACCESS GATE
   Proteção visual para apresentação do projeto.
   ========================================================= */
body.project-locked {
  overflow: hidden;
}
body.project-locked > .skip-link,
body.project-locked > .site-header,
body.project-locked > main,
body.project-locked > .site-footer,
body.project-locked > .whatsapp-float {
  visibility: hidden;
  pointer-events: none;
}
.access-gate {
  position: fixed;
  z-index: 30000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 32px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(226, 196, 191, .58), transparent 31%),
    radial-gradient(circle at 88% 82%, rgba(186, 153, 99, .20), transparent 28%),
    linear-gradient(145deg, #FAF8F5 0%, #F7F0ED 58%, #F3E7E5 100%);
  opacity: 1;
  transition: opacity .32s ease, visibility .32s ease;
}
.project-unlocked .access-gate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.access-gate::before,
.access-gate::after {
  content: "";
  position: fixed;
  border: 1px solid rgba(186, 153, 99, .20);
  border-radius: 50%;
  pointer-events: none;
}
.access-gate::before {
  width: min(46vw, 620px);
  aspect-ratio: 1;
  left: -16vw;
  top: -25vw;
}
.access-gate::after {
  width: min(38vw, 520px);
  aspect-ratio: 1;
  right: -14vw;
  bottom: -20vw;
}
.access-gate-card {
  position: relative;
  width: min(100%, 480px);
  padding: 44px 42px 40px;
  text-align: center;
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(186, 153, 99, .20);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(75, 54, 45, .13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.access-gate-logo {
  width: min(100%, 310px);
  height: auto;
  margin: 0 auto 30px;
}
.access-gate-kicker {
  margin: 0 0 11px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.access-gate-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(27px, 4.5vw, 34px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -.03em;
}
.access-gate-copy {
  max-width: 360px;
  margin: 14px auto 27px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.access-gate-form {
  display: grid;
  gap: 13px;
  text-align: left;
}
.access-gate-label {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}
.access-password-wrap {
  position: relative;
}
.access-gate-input {
  width: 100%;
  min-height: 56px;
  padding: 0 54px 0 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(51, 46, 45, .14);
  border-radius: 15px;
  outline: none;
  font-size: 16px;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.access-gate-input:focus {
  border-color: rgba(186, 153, 99, .78);
  box-shadow: 0 0 0 4px rgba(186, 153, 99, .10);
}
.access-password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  transform: translateY(-50%);
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.access-password-toggle:hover { color: var(--gold-dark); background: var(--surface-soft); }
.access-password-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.access-password-toggle .is-hidden { display: none; }
.access-gate-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 2px;
  cursor: pointer;
}
.access-gate-error {
  min-height: 21px;
  margin: -2px 0 0;
  color: #9D5353;
  font-size: 12px;
  text-align: center;
  opacity: 0;
  transition: opacity .2s ease;
}
.access-gate-error.is-visible { opacity: 1; }
.access-gate-note {
  margin: 18px 0 0;
  color: #978B86;
  font-size: 11px;
  line-height: 1.5;
}
.access-gate-form.has-error .access-gate-input {
  border-color: rgba(157, 83, 83, .55);
}
@keyframes accessShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
@media (prefers-reduced-motion: no-preference) {
  .access-gate-form.has-error { animation: accessShake .28s ease; }
}
@media (max-width: 767px) {
  .access-gate { padding: 24px 16px; }
  .access-gate-card { padding: 34px 22px 30px; border-radius: 24px; }
  .access-gate-logo { width: min(100%, 285px); margin-bottom: 25px; }
  .access-gate-copy { font-size: 13px; }
}
