:root {
  --ink: #2f211b;
  --ink-soft: #5f5046;
  --espresso: #3f2c23;
  --espresso-deep: #291d18;
  --clay: #a76448;
  --clay-dark: #7e4834;
  --sand: #d9bda6;
  --cream: #f6efe8;
  --paper: #fffdf9;
  --line: rgba(63, 44, 35, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --white-soft: rgba(255, 255, 255, 0.74);
  --whatsapp: #1fae5b;
  --shadow: 0 22px 70px rgba(52, 35, 27, 0.12);
  --shadow-soft: 0 14px 38px rgba(52, 35, 27, 0.09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 84px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", Arial, sans-serif;

  /* Controle rápido da textura abstrata no hero */
  --hero-art-opacity: 0.46;
  --hero-art-opacity-tablet: 0.34;
  --hero-art-opacity-mobile: 0.26;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }

::selection { color: #fff; background: var(--clay); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--espresso-deep);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #d38761;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(45, 31, 24, 0.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63, 44, 35, 0.34);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 500; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta {
  padding: 11px 17px;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: 0.25s ease;
}
.header-cta:hover { color: #fff; background: var(--espresso); }
.menu-button {
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.menu-button span { width: 18px; height: 1px; background: currentColor; }

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(20, 13, 10, 0.52);
  backdrop-filter: blur(3px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  width: min(88vw, 390px);
  padding: 26px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--espresso-deep);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.3);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-title { color: var(--sand); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.menu-close { width: 44px; height: 44px; border: 1px solid var(--white-line); border-radius: 50%; color: #fff; background: transparent; font-size: 28px; cursor: pointer; }
.mobile-menu nav { display: grid; margin-top: 46px; }
.mobile-menu nav a { padding: 13px 0; border-bottom: 1px solid var(--white-line); font-family: var(--serif); font-size: 29px; line-height: 1.2; }
.mobile-menu-footer { margin-top: auto; }
.mobile-menu-footer p { color: var(--white-soft); font-size: 13px; }
.mobile-menu-logo {
  width: 64px;
  height: 72px;
  margin-bottom: 14px;
  object-fit: contain;
  opacity: 0.92;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(183, 119, 82, 0.14), transparent 28%),
    linear-gradient(145deg, #faf6f1 0%, #f4e9df 55%, #ead8ca 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: radial-gradient(rgba(63, 44, 35, 0.45) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 360px; height: 360px; left: -180px; bottom: 3%; border: 1px solid rgba(126, 72, 52, 0.18); }
.hero-orb-two { width: 140px; height: 140px; right: 4%; top: 17%; background: rgba(255, 255, 255, 0.28); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr); align-items: center; gap: clamp(42px, 7vw, 96px); }
.hero-copy { max-width: 680px; }
.eyebrow { margin-bottom: 16px; color: var(--clay-dark); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.hero h1, .section h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.035em; }
.hero h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(55px, 6.3vw, 91px); line-height: 0.96; }
.hero-lead { max-width: 610px; margin-bottom: 32px; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--espresso); box-shadow: 0 12px 28px rgba(63, 44, 35, 0.2); }
.button-primary:hover { background: var(--espresso-deep); box-shadow: 0 16px 34px rgba(63, 44, 35, 0.25); }
.button-ghost { border-color: rgba(63, 44, 35, 0.3); background: rgba(255, 255, 255, 0.25); }
.button-ghost:hover { border-color: var(--espresso); background: rgba(255, 255, 255, 0.7); }
.button-whatsapp { color: #fff; background: var(--whatsapp); box-shadow: 0 12px 28px rgba(31, 174, 91, 0.18); }
.button-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }
.button-full { width: 100%; }
.medical-id { margin: 28px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.medical-id strong { color: var(--ink); font-weight: 600; }
.hero-media { position: relative; max-width: 510px; justify-self: end; }
.hero-photo-wrap { position: relative; aspect-ratio: 4 / 5.1; overflow: hidden; border-radius: 240px 240px 30px 30px; box-shadow: 0 35px 90px rgba(65, 42, 31, 0.24); }
.hero-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(43, 28, 21, 0.22), transparent 42%); }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.hero-note { position: absolute; right: -42px; bottom: 48px; width: 220px; padding: 18px 20px; display: flex; gap: 12px; align-items: flex-start; border: 1px solid rgba(255, 255, 255, 0.75); border-radius: 16px; background: rgba(255, 253, 249, 0.82); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); }
.hero-note-line { flex: 0 0 24px; height: 1px; margin-top: 10px; background: var(--clay); }
.hero-note p { margin: 0; font-family: var(--serif); font-size: 19px; line-height: 1.2; }
.trust-bar { position: relative; z-index: 2; margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-bar div { padding: 20px 26px; display: grid; gap: 2px; border-right: 1px solid var(--line); text-align: center; }
.trust-bar div:last-child { border-right: 0; }
.trust-bar strong { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.trust-bar span { color: var(--ink-soft); font-size: 12px; }

.section { padding: 112px 0; }
.section-light { background: var(--paper); }
.section h2 { margin-bottom: 24px; font-size: clamp(42px, 5vw, 66px); line-height: 1.02; }
.section-lead { color: var(--ink-soft); font-family: var(--serif); font-size: 25px; line-height: 1.35; }
.about-grid { display: grid; grid-template-columns: minmax(360px, 0.83fr) minmax(0, 1.17fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.about-image { position: relative; margin: 0; }
.about-image::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; z-index: 0; border: 1px solid rgba(167, 100, 72, 0.34); border-radius: var(--radius-lg); }
.about-image picture {
  position: relative;
  z-index: 1;

  display: block;
  overflow: hidden;

  border-radius: var(--radius-lg);
  background: #e9edf0;
  box-shadow: var(--shadow);
}

.about-image img {
  display: block;

  width: 100%;
  height: auto;

  /* Remove o recorte forçado */
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;

  border-radius: var(--radius-lg);
}
.about-image figcaption { position: relative; z-index: 2; width: 82%; margin: -24px auto 0; padding: 15px 18px; border-radius: 14px; color: var(--ink-soft); background: rgba(255, 253, 249, 0.94); box-shadow: var(--shadow-soft); font-size: 12px; text-align: center; }
.about-copy > p:not(.eyebrow):not(.section-lead) { color: var(--ink-soft); }
.about-highlights { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.about-highlights span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: var(--cream); font-size: 12px; }

.procedures { background: var(--cream); }
.section-heading { margin-bottom: 48px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); align-items: end; gap: 50px; }
.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 4px; color: var(--ink-soft); }
.procedure-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.procedure-card { min-height: 530px; position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--espresso); box-shadow: var(--shadow-soft); }
.procedure-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(18, 12, 9, 0.96) 0%,
    rgba(18, 12, 9, 0.88) 18%,
    rgba(18, 12, 9, 0.64) 38%,
    rgba(18, 12, 9, 0.30) 62%,
    rgba(18, 12, 9, 0.10) 82%,
    rgba(18, 12, 9, 0.02) 100%
  );
}
.procedure-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 0.7s cubic-bezier(.22,.61,.36,1); }
.procedure-card:hover img { transform: scale(1.045); }
.procedure-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 34px;
  color: #fff;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.45);
}
.card-kicker {
  margin-bottom: 9px;
  color: rgba(255, 241, 228, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.procedure-content h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 36px; line-height: 1.05; font-weight: 500; }
.procedure-content p {
  max-width: 500px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 14px;
  line-height: 1.6;
}
.text-link { padding: 0 0 4px; display: inline-flex; align-items: center; gap: 8px; border: 0; border-bottom: 1px solid currentColor; color: var(--clay-dark); background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; }
.procedure-content .text-link {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.text-link span { transition: transform 0.2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.journey { color: #fff; background: var(--espresso-deep); }
.section-heading-inverse .eyebrow { color: var(--sand); }
.section-heading-inverse > p { color: var(--white-soft); }
.journey-list { list-style: none; margin: 56px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--white-line); }
.journey-item { position: relative; padding: 34px 28px 0; border-right: 1px solid var(--white-line); }
.journey-item:first-child { padding-left: 0; }
.journey-item:last-child { padding-right: 0; border-right: 0; }
.journey-item::before { content: ""; position: absolute; top: -5px; left: 28px; width: 9px; height: 9px; border-radius: 50%; background: var(--sand); box-shadow: 0 0 0 7px rgba(217, 189, 166, 0.12); }
.journey-item:first-child::before { left: 0; }
.journey-number { display: block; margin-bottom: 38px; color: var(--sand); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; }
.journey-item h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.journey-item p { margin: 0; color: var(--white-soft); font-size: 14px; }

.philosophy { background: var(--paper); }
.center-heading { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.philosophy-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 16px 45px rgba(58, 38, 28, 0.04); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.philosophy-card:hover { transform: translateY(-6px); border-color: rgba(167, 100, 72, 0.38); box-shadow: var(--shadow-soft); }
.icon-circle { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: var(--clay-dark); background: var(--cream); }
.icon-circle svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.philosophy-card h3 { margin: 24px 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.1; }
.philosophy-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }

.video-section { background: #eee0d4; }
.video-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr); align-items: center; gap: clamp(55px, 9vw, 120px); }
.video-copy { max-width: 580px; }
.credentials-list { margin-top: 36px; display: grid; gap: 12px; }
.credentials-list div { padding: 14px 0; display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(63, 44, 35, 0.16); }
.credentials-list span { color: var(--ink-soft); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }
.credentials-list strong { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.video-card { position: relative; aspect-ratio: 9 / 13; max-width: 470px; justify-self: end; overflow: hidden; border-radius: 220px 220px 28px 28px; box-shadow: 0 32px 80px rgba(55, 34, 25, 0.24); background: #241b17; }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 16px; border: 0; color: #fff; background: linear-gradient(to top, rgba(29, 19, 15, 0.58), rgba(29, 19, 15, 0.08)); cursor: pointer; transition: opacity 0.25s ease, visibility 0.25s ease; }
.video-overlay.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.video-play { width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.72); border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); }
.video-play svg { width: 28px; height: 28px; margin-left: 4px; fill: currentColor; }
.video-overlay > span:last-child { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.18fr); gap: clamp(55px, 9vw, 120px); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 32px); align-self: start; }
.faq-intro p:not(.eyebrow) { color: var(--ink-soft); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 24px 52px 24px 0; list-style: none; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.2; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::before, .accordion summary::after { content: ""; position: absolute; top: 50%; right: 4px; width: 20px; height: 1px; background: var(--ink); transition: transform 0.25s ease; }
.accordion summary::after { transform: rotate(90deg); }
.accordion details[open] summary::after { transform: rotate(0); }
.answer { padding: 0 48px 22px 0; color: var(--ink-soft); }
.answer p { margin: 0; }

.contact { color: #fff; background: linear-gradient(135deg, #39271f, #5a3a2d); }
.contact .eyebrow { color: var(--sand); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.83fr) minmax(420px, 0.77fr); gap: clamp(50px, 8vw, 100px); }
.contact-copy .section-lead { color: var(--white-soft); }
.contact-info { margin-top: 42px; display: grid; }
.contact-info a { padding: 17px 0; display: grid; border-bottom: 1px solid var(--white-line); }
.contact-info a span { color: var(--sand); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-info a strong { margin-top: 4px; font-family: var(--serif); font-size: 21px; font-weight: 500; }
.contact-builder { padding: 32px; border: 1px solid var(--white-line); border-radius: var(--radius-md); background: rgba(255,255,255,0.08); box-shadow: 0 24px 60px rgba(0,0,0,0.17); backdrop-filter: blur(12px); }
.contact-builder fieldset { margin: 0 0 26px; padding: 0; border: 0; }
.contact-builder legend, .field-label { margin-bottom: 12px; display: block; font-size: 13px; font-weight: 600; }
.field-label span { color: var(--white-soft); font-weight: 400; }
.interest-options { display: flex; flex-wrap: wrap; gap: 9px; }
.interest-options label { cursor: pointer; }
.interest-options input { position: absolute; opacity: 0; pointer-events: none; }
.interest-options span { padding: 9px 12px; display: inline-flex; border: 1px solid var(--white-line); border-radius: 999px; color: var(--white-soft); background: rgba(255,255,255,0.04); font-size: 12px; transition: 0.2s ease; }
.interest-options input:checked + span, .interest-options input:focus-visible + span { border-color: var(--sand); color: var(--espresso-deep); background: var(--sand); }
.text-field { width: 100%; margin-bottom: 20px; padding: 13px 14px; border: 1px solid var(--white-line); border-radius: 12px; color: #fff; background: rgba(255,255,255,0.06); outline: none; resize: vertical; transition: border-color 0.2s ease, background 0.2s ease; }
.text-field::placeholder { color: rgba(255,255,255,0.48); }
.text-field:focus { border-color: var(--sand); background: rgba(255,255,255,0.1); }
.privacy-note { margin: -8px 0 20px; color: var(--white-soft); font-size: 11px; }

.site-footer { padding: 70px 0 26px; color: rgba(255,255,255,0.72); background: #211713; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.7fr; gap: 70px; }
.brand-footer { color: #fff; }
.brand-footer .brand-symbol {
  width: 54px;
  height: 58px;
}
.brand-footer .brand-mark { border-color: rgba(255,255,255,0.34); }
.brand-footer .brand-copy small { color: rgba(255,255,255,0.56); }
.footer-medical-id { margin: 22px 0 0; font-size: 12px; }
.footer-links { display: grid; align-content: start; gap: 9px; font-size: 13px; }
.footer-links strong { margin-bottom: 5px; color: #fff; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 58px; padding-top: 22px; display: flex; justify-content: space-between; gap: 32px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 11px; }
.footer-bottom p { margin: 0; }

.whatsapp-fab { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--whatsapp); box-shadow: 0 14px 34px rgba(31,174,91,0.36); transition: transform 0.22s ease; }
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-fab svg { width: 29px; height: 29px; fill: currentColor; }

.no-js .reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.61,.36,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }



.trust-shell {
  position: relative;
  z-index: 2;
  margin-top: 72px;
}
.trust-carousel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trust-highlight {
  position: absolute;

  top: 8px;
  bottom: 8px;

  /*
   * O destaque ocupa a largura de uma coluna,
   * descontando 8px de cada lado.
   */
  width: calc((100% / 3) - 16px);

  /*
   * A posição passa a ser controlada diretamente
   * pela propriedade left.
   */
  left: 8px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.62);

  box-shadow:
    0 16px 45px rgba(72, 46, 34, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /*
   * Anima somente a posição horizontal.
   */
  transition:
    left 650ms cubic-bezier(.22, 1, .36, 1),
    background-color 250ms ease,
    box-shadow 250ms ease;

  pointer-events: none;
}
.trust-carousel[data-active="1"] .trust-highlight {
  left: 8px;
}

.trust-carousel[data-active="2"] .trust-highlight {
  left: calc((100% / 3) + 8px);
}

.trust-carousel[data-active="3"] .trust-highlight {
  left: calc((200% / 3) + 8px);
}
.trust-item {
  position: relative;
  z-index: 1;
  min-height: 92px;
  padding: 22px 26px;
  display: grid;
  gap: 3px;
  justify-items: center;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: center;
  cursor: pointer;
  transition: color 0.28s ease, transform 0.25s ease;
}
.trust-item:last-of-type { border-right: 0; }
.trust-item:hover { transform: translateY(-1px); }
.trust-item .trust-number {
  color: var(--clay-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.trust-item strong { font-family: var(--serif); font-size: 23px; font-weight: 600; line-height: 1.05; }
.trust-item > span:last-child { color: var(--ink-soft); font-size: 12px; }
.trust-item.is-active strong,
.trust-item.is-active .trust-number { color: var(--espresso-deep); }
.trust-description {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  align-items: start;
}
.trust-description p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  transition: opacity 180ms ease;
}
.trust-description p.is-changing { opacity: 0.35; }
.trust-progress {
  width: min(320px, 100%);
  height: 2px;
  overflow: hidden;
  background: rgba(63, 44, 35, 0.12);
}
.trust-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--clay), var(--espresso));
  transform: scaleX(0);
  transform-origin: left;
}
.trust-progress span.is-running { animation: trustProgress 4.5s linear forwards; }
@keyframes trustProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}



/* =========================================================
   ARTE ABSTRATA DA ABERTURA
   Ajuste rápido: altere --hero-art-opacity em :root.
   ========================================================= */
.hero {
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 35% 0 0;
  z-index: 0;
  pointer-events: none;

  background:
    url("../assets/img/arte-fundo-hero.png")
    left center / cover
    no-repeat;

  /* Presença moderada da nova textura abstrata. */
  opacity: var(--hero-art-opacity, 0.46);

  filter:
    saturate(0.92)
    contrast(0.96)
    brightness(1.03);

  /* Mantém a arte à esquerda e suaviza a transição perto da foto. */
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 48%,
    rgba(0, 0, 0, 0.92) 63%,
    rgba(0, 0, 0, 0.45) 82%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 48%,
    rgba(0, 0, 0, 0.92) 63%,
    rgba(0, 0, 0, 0.45) 82%,
    transparent 100%
  );
}

/* Reduz a textura pontilhada para não competir com a pintura. */
.hero::after {
  opacity: 0.06;
}

/* Iluminação suave atrás do texto para manter a leitura. */
.hero-copy {
  position: relative;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -42px;
  right: -38px;
  bottom: -38px;
  left: -48px;
  pointer-events: none;

  background: radial-gradient(
    ellipse at 42% 48%,
    rgba(250, 246, 241, 0.46) 0%,
    rgba(250, 246, 241, 0.30) 48%,
    rgba(250, 246, 241, 0) 78%
  );
}

@media (max-width: 820px) {
  .hero::before {
    inset: 0 6% 28% 0;
    opacity: var(--hero-art-opacity-tablet, 0.34);
    background-position: 24% top;

    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      rgba(0, 0, 0, 0.92) 60%,
      transparent 100%
    );

    mask-image: linear-gradient(
      to bottom,
      #000 0%,
      rgba(0, 0, 0, 0.92) 60%,
      transparent 100%
    );
  }

  .hero-copy::before {
    top: -28px;
    right: -18px;
    bottom: -28px;
    left: -18px;
  }
}

@media (max-width: 620px) {
  .hero::before {
    inset: 0 0 45% 0;
    opacity: var(--hero-art-opacity-mobile, 0.26);
    background-position: center top;
  }
}


.philosophy {
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: "";
  position: absolute;
  inset: 0 0 0 48%;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg,
      rgba(255, 253, 249, 0.98) 0%,
      rgba(255, 253, 249, 0.92) 22%,
      rgba(255, 253, 249, 0.76) 42%,
      rgba(255, 253, 249, 0.28) 70%,
      rgba(255, 253, 249, 0.10) 100%),
    url("../assets/img/arte-fundo-rosto.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.philosophy > .container {
  position: relative;
  z-index: 1;
}


@media (max-width: 1040px) {
  .trust-shell { margin-top: 56px; }
  .trust-item { padding-inline: 12px; }
}

@media (max-width: 820px) {
  .trust-shell { margin-top: 52px; }
  .trust-item strong { font-size: 20px; }
  .trust-description p { font-size: 15px; }
}

@media (max-width: 620px) {
  .trust-carousel {
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    overflow: visible;
  }
  .trust-highlight { display: none; }
  .trust-item {
    min-height: 0;
    padding: 18px 18px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.28);
  }
  .trust-item:last-of-type { border-right: 1px solid var(--line); }
  .trust-item.is-active {
    border-color: rgba(126, 72, 52, 0.24);
    box-shadow: 0 12px 28px rgba(63, 44, 35, 0.08);
    background: rgba(255,255,255,0.78);
  }
  .trust-description { margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-highlight { transition: none; }
}

@media (max-width: 1040px) {
  :root { --header-height: 74px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: flex; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 40px; }
  .hero-note { right: -10px; }
  .journey-list { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .journey-item:nth-child(2) { border-right: 0; }
  .journey-item:nth-child(3) { padding-left: 0; }
  .journey-item:nth-child(3)::before { left: 0; }
  .video-grid, .contact-grid { gap: 55px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 84px 0; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 50px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: clamp(53px, 11vw, 76px); }
  .hero-media { width: min(100%, 540px); justify-self: center; }
  .hero-photo-wrap { aspect-ratio: 4 / 4.7; }
  .hero-note { right: 12px; bottom: 28px; }
  .trust-bar { margin-top: 52px; }
  .trust-bar div { padding-inline: 10px; }
  .about-grid, .video-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image { width: min(82%, 520px); margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .procedure-grid { grid-template-columns: 1fr; }
  .procedure-card { min-height: 500px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .video-copy { max-width: none; }
  .video-card { justify-self: center; }
  .faq-intro { position: static; }
  .contact-grid { gap: 42px; }
  .contact-builder { width: min(100%, 620px); }
  .footer-grid { grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 32px; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { font-size: 9px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-symbol { width: 42px; height: 42px; }
  .brand-footer .brand-symbol { width: 48px; height: 52px; }
  .hero { padding-bottom: 26px; }
  .hero h1 { font-size: clamp(47px, 14vw, 64px); }
  .hero-lead { font-size: 16px; }
  .hero-buttons { display: grid; }
  .hero-buttons .button { width: 100%; }
  .hero-media { width: 100%; }
  .hero-photo-wrap { border-radius: 180px 180px 24px 24px; }
  .hero-note { width: 190px; right: 8px; bottom: 18px; padding: 14px; }
  .hero-note p { font-size: 17px; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-bar div:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .section h2 { font-size: 43px; }
  .section-lead { font-size: 21px; }
  .about-image { width: calc(100% - 18px); }
  .about-image figcaption { width: 90%; }
  .procedure-card { min-height: 490px; }
  .procedure-content { padding: 25px; }
  .procedure-content h3 { font-size: 32px; }
  .journey-list { grid-template-columns: 1fr; row-gap: 0; border-top: 0; }
  .journey-item, .journey-item:first-child, .journey-item:nth-child(3) { padding: 28px 0 28px 50px; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .journey-item::before, .journey-item:first-child::before, .journey-item:nth-child(3)::before { top: 36px; left: 2px; }
  .journey-number { margin-bottom: 12px; }
  .philosophy-card { padding: 28px; }
  .video-card { width: min(100%, 430px); border-radius: 180px 180px 24px 24px; }
  .accordion summary { font-size: 22px; }
  .contact-builder { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .whatsapp-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

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

/* =========================================================
   PADRÃO GLOBAL DE ESPAÇAMENTO ENTRE AS SEÇÕES

   Cole este bloco no FINAL ABSOLUTO do styles.css.
   Ele sobrescreve os espaçamentos anteriores.
   ========================================================= */

:root {
  /*
   * Espaço interno superior e inferior de cada seção.
   *
   * Altere apenas estes três valores caso queira
   * deixar o site mais aberto ou mais compacto.
   */
  --section-space-desktop: 72px;
  --section-space-tablet: 58px;
  --section-space-mobile: 46px;

  /*
   * Espaço abaixo do carrossel até o fim do hero.
   */
  --hero-bottom-desktop: 30px;
  --hero-bottom-tablet: 26px;
  --hero-bottom-mobile: 22px;

  /*
   * Distância entre a apresentação principal
   * e o carrossel Atendimento / Planejamento /
   * Acompanhamento.
   */
  --trust-top-desktop: 44px;
  --trust-top-tablet: 36px;
  --trust-top-mobile: 28px;
}

/* ---------------------------------------------------------
   DESKTOP
   Aplica o mesmo padrão às seções:
   Sobre, Procedimentos, Jornada, Filosofia,
   Vídeo, FAQ e Contato.
   --------------------------------------------------------- */

.section {
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

/*
 * O hero não possui a classe .section.
 * Por isso precisa de uma regra própria.
 *
 * min-height: auto remove o espaço artificial
 * criado por min-height: 100vh.
 */
.hero {
  min-height: auto;
  padding-bottom: var(--hero-bottom-desktop);
}

/*
 * Diminui a distância entre a foto/texto principal
 * e o carrossel dos três diferenciais.
 */
.trust-shell {
  margin-top: var(--trust-top-desktop);
}

/*
 * Reduz também os espaços internos que aparecem
 * entre os títulos e o conteúdo de algumas seções.
 */
.section-heading {
  margin-bottom: 40px;
}

.center-heading {
  margin-bottom: 40px;
}

.journey-list {
  margin-top: 44px;
}

/* ---------------------------------------------------------
   TABLET
   Vale para telas de até 1040px.
   --------------------------------------------------------- */

@media (max-width: 1040px) {
  .section {
    padding-top: var(--section-space-tablet);
    padding-bottom: var(--section-space-tablet);
  }

  .hero {
    min-height: auto;
    padding-bottom: var(--hero-bottom-tablet);
  }

  .trust-shell {
    margin-top: var(--trust-top-tablet);
  }

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

  .center-heading {
    margin-bottom: 34px;
  }

  .journey-list {
    margin-top: 38px;
  }
}

/* ---------------------------------------------------------
   CELULAR
   Vale para telas de até 620px.
   --------------------------------------------------------- */

@media (max-width: 620px) {
  .section {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .hero {
    min-height: auto;
    padding-bottom: var(--hero-bottom-mobile);
  }

  .trust-shell {
    margin-top: var(--trust-top-mobile);
  }

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

  .center-heading {
    margin-bottom: 28px;
  }

  .journey-list {
    margin-top: 30px;
  }
}


/* =========================================================
   CHAMADA DE AGENDAMENTO COM VÍDEO DE FUNDO
   ========================================================= */
.booking-video-section {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    #3a2a23
    url("../assets/img/clinica-video-poster-desktop.jpg")
    center / cover
    no-repeat;
}

.booking-background-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.booking-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 46%,
      rgba(30, 20, 16, 0.20) 0%,
      rgba(30, 20, 16, 0.40) 48%,
      rgba(30, 20, 16, 0.70) 100%
    ),
    linear-gradient(
      180deg,
      rgba(36, 24, 19, 0.28) 0%,
      rgba(36, 24, 19, 0.52) 100%
    );
}

.booking-video-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.55) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
}

.booking-video-content {
  max-width: 860px;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  text-shadow: 0 2px 28px rgba(15, 9, 7, 0.38);
}

.booking-brand-mark {
  width: 92px;
  height: 102px;
  margin: 0 auto 18px;
  object-fit: contain;
  opacity: 0.94;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

.booking-video-content .eyebrow {
  margin-bottom: 18px;
  color: #efd4bf;
}

.booking-video-content h2 {
  max-width: 820px;
  margin: 0 auto 22px;
  font-family: var(--serif);
  font-size: clamp(50px, 6.4vw, 82px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.booking-video-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
}

.booking-video-button {
  min-width: 210px;
  color: var(--espresso-deep);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-video-button:hover {
  color: #fff;
  border-color: var(--clay);
  background: var(--clay);
}

@media (max-width: 820px) {
  .booking-video-section {
    min-height: 640px;
  }

  .booking-video-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .booking-video-content > p:not(.eyebrow) {
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  .booking-video-section {
    min-height: min(760px, 82svh);
    background-image: url("../assets/img/clinica-video-poster-mobile.jpg");
    background-position: center;
  }

  .booking-background-video {
    object-position: center;
  }

  .booking-video-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(30, 20, 16, 0.28) 0%,
        rgba(30, 20, 16, 0.48) 48%,
        rgba(30, 20, 16, 0.72) 100%
      );
  }

  .booking-video-content {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .booking-brand-mark {
    width: 76px;
    height: 84px;
    margin-bottom: 14px;
  }

  .booking-video-content h2 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .booking-video-content > p:not(.eyebrow) {
    margin-bottom: 25px;
    font-size: 15px;
  }

  .booking-video-button {
    width: 100%;
    max-width: 330px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-background-video {
    display: none;
  }
}

.procedure-card-face::after {
  background: linear-gradient(
    to top,
    rgba(14, 9, 7, 0.98) 0%,
    rgba(14, 9, 7, 0.92) 24%,
    rgba(14, 9, 7, 0.70) 44%,
    rgba(14, 9, 7, 0.36) 68%,
    rgba(14, 9, 7, 0.08) 100%
  );
}