/* ==========================================================
   VOLPE — IDENTIDADE VISUAL
   Paleta inspirada nos materiais enviados.
   EDITE AS CORES PRINCIPAIS AQUI, se necessário.
   ========================================================== */
:root {
  --paper: #fbf8f4;
  --paper-2: #f6efe7;
  --cream: #d2b48e;
  --sand: #d2b48e;
  --taupe: #cdbba5;
  --ink: #2f2824;
  --espresso: #2d221c;
  --brown: #d2b48e;
  --white: #ffffff;
  --line: rgba(47, 40, 36, .12);
  --shadow: 0 24px 60px rgba(56, 43, 35, .08);
  --radius: 28px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, a { -webkit-tap-highlight-color: transparent; }

.desktop-only { display: inline; }
.mobile-only { display: none; }

::selection { background: var(--sand); color: var(--ink); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.display {
  margin: 0;
  font-size: clamp(2.8rem, 6.5vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 500;
}
.display strong { font-weight: 760; }

.section-title {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 550;
}
.section-title strong { font-weight: 780; }

.lead {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
  letter-spacing: -.02em;
}

.brand-wordmark {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: -.06em;
  line-height: 1;
}
.brand-logo-image { max-height: 42px; width: auto; display: block; }
.site-header.is-scrolled .brand-logo-image,
.odonto-page .site-footer .brand-logo-image {
  filter: brightness(0) saturate(100%) invert(83%) sepia(29%) saturate(483%) hue-rotate(343deg) brightness(89%) contrast(89%);
}
.estetica-page .site-footer .brand-logo-image {
  filter: brightness(0) invert(1);
}
.choice-page .brand-logo-image {
  filter: brightness(0) saturate(100%) invert(83%) sepia(29%) saturate(483%) hue-rotate(343deg) brightness(89%) contrast(89%);
}
.choice-page .brand-logo-image,
.site-header .brand-logo-image,
.floating-whatsapp {
  will-change: transform;
}
.is-hidden-link { display: none !important; }

.spark {
  width: 70px;
  height: 70px;
  display: inline-block;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%);
}
.spark.small { width: 26px; height: 26px; }

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background .25s ease, color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  color: var(--sand);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(210, 180, 142, .22);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .91rem;
}
.header-nav a { text-decoration: none; opacity: .9; }
.header-nav a:hover { opacity: .62; }
.header-nav .nav-pill {
  padding: 11px 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  width: 46px;
  height: 46px;
  padding: 10px;
}
.menu-button span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 7px 0;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 78px 0 0;
  z-index: 99;
  background: var(--white);
  color: var(--sand);
  padding: 36px 20px 56px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.4rem;
  text-decoration: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { color: var(--white); background: rgba(255,255,255,.12); }
.btn-light:hover { background: var(--white); color: var(--ink); }
.btn-dark { background: var(--sand); color: var(--white); border-color: var(--sand); }
.btn-dark:hover { background: #ddc2a0; border-color: #ddc2a0; color: var(--white); }
.btn-soft { background: var(--cream); border-color: var(--cream); color: var(--ink); }

/* HOME CHOICE */
.choice-page { background: var(--paper); color: var(--ink); min-height: 100vh; }
.choice-shell { min-height: 100vh; display: grid; grid-template-rows: auto 1fr; }
.choice-top {
  position: relative;
  z-index: 5;
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(47,41,37,.10);
}
.choice-tag { font-size: .83rem; letter-spacing: .13em; text-transform: uppercase; opacity: .8; color: rgba(47,40,36,.78); }
.choice-main { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 88px); }
.choice-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 620px;
  text-decoration: none;
  color: var(--white);
  isolation: isolate;
}
.choice-panel + .choice-panel { border-left: 1px solid rgba(255,255,255,.18); }
.choice-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,18,16,.02) 14%, rgba(20,18,16,.18) 42%, rgba(20,18,16,.54) 100%);
}
.choice-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.2,.75,.2,1), filter .5s ease;
}
.choice-panel:hover .choice-bg { transform: scale(1.035); filter: saturate(1.06); }
.choice-copy { width: min(86%, 620px); padding: clamp(32px, 7vw, 88px); text-shadow: 0 2px 18px rgba(0,0,0,.18); }
.choice-label { font-size: .85rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 20px; }
.choice-title { font-size: clamp(3rem, 6vw, 6.8rem); line-height: .92; letter-spacing: -.06em; margin: 0 0 26px; font-weight: 540; }
.choice-copy p { max-width: 450px; font-size: 1.1rem; line-height: 1.5; margin: 0; opacity: .9; }
.choice-arrow { margin-top: 32px; font-size: 2rem; }
.choice-center {
  position: absolute;
  z-index: 7;
  left: 50%; top: 51%; transform: translate(-50%,-50%);
  width: 118px; height: 118px;
  border-radius: 50%;
  border: 1px solid rgba(210,180,142,.55);
  color: var(--sand);
  display: grid; place-items: center;
  background: rgba(251,248,244,.32);
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.choice-center .spark { width: 45px; height: 45px; }

/* HERO */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--paper-2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.01);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(29,24,20,.56) 0%, rgba(29,24,20,.20) 46%, rgba(29,24,20,.06) 100%), linear-gradient(180deg, rgba(29,24,20,.06) 18%, rgba(29,24,20,.48) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 150px 0 88px;
}
.hero-copy { max-width: 760px; text-shadow: 0 3px 22px rgba(0,0,0,.18); }
.hero .lead { margin-top: 30px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-signature { margin-top: 28px; font-family: Georgia, serif; font-style: italic; font-size: 1.3rem; }

/* GENERIC SECTIONS */
.section { padding: 110px 0; }
.section.soft { background: var(--paper-2); }
.section.dark { background: var(--paper-2); color: var(--ink); }
.section.ink { background: var(--sand); color: var(--ink); }
.section.white { background: var(--white); color: var(--sand); }
.section.white .eyebrow,
.section.white .section-title,
.section.white .quote,
.section.white .quote strong,
.section.white .lead,
.section.white p { color: var(--sand); }
.section.white .eyebrow::before { background: currentColor; }
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(46px, 8vw, 100px);
  align-items: center;
}
.section-grid.reverse > :first-child { order: 2; }
.section-grid.reverse > :last-child { order: 1; }
.section-copy p { font-size: 1.12rem; line-height: 1.65; margin: 22px 0 0; }
.section-copy .stack-lines { margin-top: 28px; font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.25; }
.section-copy .stack-lines span { display: block; }

.photo-card {
  min-height: 620px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-card.tall { min-height: 720px; }
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: inherit;
  pointer-events: none;
}

/* TREATMENTS */
.treatments-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
}
.treatments-head .lead { max-width: 560px; }
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  border-top: 1px solid var(--line);
}
.treatment-item {
  padding: 32px 28px 34px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
}
.treatment-item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 40px; }
.treatment-item:nth-child(even) { padding-left: 40px; }
.treatment-number { font-size: .78rem; letter-spacing: .14em; opacity: .45; padding-top: 6px; }
.treatment-item h3 { margin: 0; font-size: 1.32rem; letter-spacing: -.02em; }
.treatment-item p { margin: 11px 0 0; line-height: 1.55; color: rgba(47,41,37,.72); }

/* FAMILY / QUOTE */
.editorial-band {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--paper-2);
  overflow: hidden;
}
.editorial-band-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.editorial-band::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(251,248,244,.94), rgba(251,248,244,.48) 52%, rgba(251,248,244,.10)); }
.editorial-band-content { position:relative; z-index:2; width:min(calc(100% - 40px), var(--content)); margin:0 auto; padding:90px 0; }
.editorial-band-content > div { max-width: 660px; }
.editorial-band p { font-size: clamp(1.25rem,2.3vw,1.75rem); line-height:1.45; }

/* FEATURE / REHAB */
.feature-card {
  border-radius: 34px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 650px;
}
.feature-image { min-height: 520px; background-size: cover; background-position: center; }
.feature-copy { padding: clamp(40px,6vw,78px); display:flex; flex-direction:column; justify-content:center; }
.feature-copy p { font-size:1.12rem; line-height:1.65; }
.feature-copy .btn { align-self:flex-start; margin-top:20px; }

/* ESTHETIC LOOK */
.estetica-page { --paper:#fbf8f4; --paper-2:#f6efe7; --cream:#d2b48e; --sand:#d2b48e; --espresso:#2d221c; --brown:#d2b48e; }
.estetica-page .hero::after { background: linear-gradient(90deg, rgba(29,24,20,.52) 0%, rgba(29,24,20,.18) 44%, rgba(29,24,20,.06) 100%), linear-gradient(180deg, rgba(29,24,20,.04), rgba(29,24,20,.44)); }
.concept-quote {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.concept-quote .quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 6.3rem);
  line-height: .96;
  letter-spacing: -.045em;
  margin: 0;
  font-weight: 400;
}
.concept-quote .quote strong { font-family: "Helvetica Neue", sans-serif; font-weight: 750; }
.concept-quote .lead { margin: 34px auto 0; }

.harmonie-layout {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.harmonie-image {
  min-height: 760px;
  background-size: cover;
  background-position:center;
  border-radius: 180px 180px 30px 30px;
  box-shadow: var(--shadow);
}
.harmonie-copy p { font-size:1.15rem; line-height:1.65; }
.harmonie-copy .btn { margin-top:18px; }

.issue-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap: 1px;
  background: rgba(47,40,36,.10);
  border:1px solid rgba(47,40,36,.10);
  margin-top:50px;
}
.issue {
  min-height: 150px;
  padding: 26px;
  background: rgba(255,255,255,.42);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.issue .spark { opacity:.5; }
.issue span { font-size:1.05rem; line-height:1.25; }

.skin-glow-card {
  position:relative;
  overflow:hidden;
  min-height:720px;
  border-radius:36px;
  color:var(--white);
  display:flex;
  align-items:flex-end;
  background:var(--espresso);
}
.skin-glow-bg { position:absolute; inset:0; background-size:cover; background-position: center 28%; }
.skin-glow-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(25,18,14,.04), rgba(25,18,14,.56)); }
.skin-glow-copy { position:relative; z-index:2; padding:clamp(36px,7vw,88px); max-width:760px; }
.skin-glow-copy p { font-size:1.2rem; line-height:1.6; }
.skin-glow-copy .btn { margin-top:18px; }

.tech-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; }
.tech-image { min-height:620px; background-size:cover; background-position:center; border-radius:30px; }
.tech-copy p { font-size:1.14rem; line-height:1.65; }

/* CTA */
.final-cta {
  padding: 120px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.final-cta::before,
.final-cta::after {
  content:"";
  position:absolute;
  width:240px;height:240px;
  border:1px solid currentColor;
  border-radius:50%;
  opacity:.08;
}
.final-cta::before { left:-80px; top:-80px; }
.final-cta::after { right:-80px; bottom:-100px; }
.final-cta .section-title { max-width:900px; margin:0 auto; }
.final-cta .lead { margin:30px auto 0; }
.final-cta .btn { margin-top:34px; }
.final-signature { margin-top:30px; font-family:Georgia,serif; font-style:italic; font-size:1.25rem; }
.final-cta.soft { background: var(--paper); color: var(--ink); }
.final-cta.soft .lead { color: rgba(49,38,32,.78); }
.final-cta.dark { background: var(--sand); color: var(--white); }
.final-cta.dark .eyebrow,
.final-cta.dark .section-title,
.final-cta.dark .section-title strong,
.final-cta.dark .lead,
.final-cta.dark .final-signature { color: var(--white); }
.final-cta.dark .eyebrow::before { background: currentColor; }
.final-cta.dark .btn-light { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.78); color: var(--white); }
.final-cta.dark .btn-light:hover { background: var(--white); color: var(--sand); }

/* FOOTER */
.site-footer { padding:40px 0 30px; background:var(--sand); color:var(--ink); }
.footer-row { display:flex; justify-content:space-between; align-items:center; gap:30px; }
.footer-nav { display:flex; gap:22px; flex-wrap:wrap; }
.footer-nav a { text-decoration:none; opacity:.82; font-size:.9rem; }
.footer-nav a[data-link-key="whatsapp"]::before { content:"✦"; margin-right:8px; color:var(--ink); }
.footer-bottom { margin-top:32px; padding-top:22px; border-top:1px solid rgba(47,40,36,.12); display:flex; justify-content:space-between; gap:20px; font-size:.78rem; opacity:.72; }
.footer-contact {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.95rem;
  color:rgba(47,40,36,.82);
}
.footer-contact strong { color: var(--ink); font-weight:700; }
.footer-professional {
  display:block;
  margin-top:6px;
  font-size:.78rem;
  font-weight:500;
  opacity:.74;
  letter-spacing:.01em;
}


.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(47,41,37,.12);
  box-shadow: 0 12px 30px rgba(47,41,37,.18);
}
.floating-whatsapp::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex: 0 0 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23d2b48e' d='M27.1 4.9A15.88 15.88 0 0 0 16 0C7.2 0 .1 7.1.1 15.9c0 2.8.7 5.5 2.1 7.9L0 32l8.4-2.2c2.3 1.3 4.9 2 7.6 2h.1c8.8 0 15.9-7.1 15.9-15.9 0-4.2-1.6-8.2-4.9-11zM16 29.1c-2.4 0-4.8-.7-6.8-1.9l-.5-.3-5 1.3 1.3-4.9-.3-.5A13.03 13.03 0 0 1 3 15.9C3 8.6 8.8 2.9 16 2.9c3.5 0 6.8 1.3 9.2 3.8s3.8 5.7 3.8 9.2c0 7.2-5.8 13.2-13 13.2zm7.2-9.8c-.4-.2-2.5-1.2-2.8-1.4-.4-.1-.6-.2-.9.2-.3.4-1.1 1.4-1.3 1.6-.2.2-.5.3-.9.1-.4-.2-1.6-.6-3.1-2-1.1-1-1.9-2.3-2.1-2.7-.2-.4 0-.6.2-.8.2-.2.4-.5.6-.7.2-.2.3-.4.4-.7.1-.2.1-.5 0-.7-.1-.2-.9-2.2-1.3-3-.3-.8-.6-.7-.9-.7h-.8c-.3 0-.7.1-1 .5-.4.4-1.4 1.4-1.4 3.4s1.5 4 1.7 4.3c.2.3 2.9 4.5 7.1 6.1 1 .4 1.8.7 2.5.8 1 .2 1.8.2 2.5.1.8-.1 2.5-1 2.8-2 .4-1 .4-1.8.3-2-.1-.2-.4-.3-.8-.5z'/%3E%3C/svg%3E");
}
.floating-whatsapp:hover { transform: translateY(-2px); }


.section.dark .lead,
.section.ink .lead,
.section.dark .section-copy p,
.section.ink .section-copy p,
.section.ink .tech-copy p,
.section.dark .harmonie-copy p,
.section.ink .treatment-item p,
.final-cta.dark .final-signature {
  color: var(--white);
}
.section.ink .issue .spark {
  color: rgba(47,40,36,.68);
}
.choice-page .floating-whatsapp {
  background: var(--white);
}

/* IMAGE POSITIONS */
.choice-panel:first-child .choice-bg { background-position: 66% 20%; }
.choice-panel:last-child .choice-bg { background-position: 62% 16%; }
.odonto-page .hero-bg { background-position: 82% 18%; }
.estetica-page .hero-bg { background-position: 82% 18%; }
[data-image-key="odontoSobre"] { background-position: center 35%; }
[data-image-key="odontoFamilia"] { background-position: center 20%; }
[data-image-key="odontoReabilitacao"] { background-position: center 42%; }
[data-image-key="esteticaHarmonie"] { background-position: center 32%; }
[data-image-key="esteticaSkinGlow"] { background-position: center 26%; }
[data-image-key="esteticaTecnologia"] { background-position: center 18%; }




.odonto-page .hero-bg { background-position: 90% 18%; }
.odonto-page .hero-copy { max-width: 590px; }
.odonto-page .hero .display { max-width: 560px; }

/* ODONTO — FUNDO BRANCO + TEXTO BEGE */
.odonto-page .section.white,
.odonto-page .section.soft,
.odonto-page #reabilitacao,
.odonto-page .final-cta.soft {
  background: var(--white);
  color: var(--sand);
}
.odonto-page .section.white .eyebrow,
.odonto-page .section.white .section-title,
.odonto-page .section.white .section-title strong,
.odonto-page .section.white .section-copy p,
.odonto-page .section.white .stack-lines,
.odonto-page .section.soft .eyebrow,
.odonto-page .section.soft .section-title,
.odonto-page .section.soft .section-title strong,
.odonto-page .section.soft .lead,
.odonto-page .section.soft .treatment-number,
.odonto-page .section.soft .treatment-item h3,
.odonto-page .section.soft .treatment-item p,
.odonto-page #reabilitacao .eyebrow,
.odonto-page #reabilitacao .section-title,
.odonto-page #reabilitacao .section-title strong,
.odonto-page #reabilitacao .feature-copy p,
.odonto-page .final-cta.soft .eyebrow,
.odonto-page .final-cta.soft .section-title,
.odonto-page .final-cta.soft .section-title strong,
.odonto-page .final-cta.soft .lead,
.odonto-page .final-cta.soft .final-signature {
  color: var(--sand);
}
.odonto-page .section.white .eyebrow::before,
.odonto-page .section.soft .eyebrow::before,
.odonto-page #reabilitacao .eyebrow::before,
.odonto-page .final-cta.soft .eyebrow::before {
  background: currentColor;
}
.odonto-page .section.soft .treatment-grid,
.odonto-page .section.soft .treatment-item {
  border-color: rgba(210,180,142,.28);
}
.odonto-page #reabilitacao .feature-card {
  background: var(--white);
}
.odonto-page .site-footer {
  background: var(--white);
  color: var(--sand);
}
.odonto-page .site-footer .footer-nav a,
.odonto-page .site-footer .footer-contact,
.odonto-page .site-footer .footer-contact strong,
.odonto-page .site-footer .footer-bottom,
.odonto-page .site-footer .footer-bottom span {
  color: var(--sand);
}
.odonto-page .site-footer .footer-nav a[data-link-key="whatsapp"]::before {
  color: var(--sand);
}
.odonto-page .site-footer .footer-bottom {
  border-top-color: rgba(210,180,142,.25);
}

/* ESTÉTICA PAGE COLOR TUNING */
.estetica-page .section.dark {
  background: var(--paper-2);
  color: var(--sand);
}
.estetica-page .section.dark .eyebrow,
.estetica-page .section.dark .section-title,
.estetica-page .section.dark .section-title strong,
.estetica-page .section.dark .harmonie-copy p,
.estetica-page .section.dark .lead {
  color: var(--sand);
}
.estetica-page .section.dark .eyebrow::before { background: currentColor; }
.estetica-page .section.dark .btn-light {
  color: var(--sand);
  border-color: rgba(210,180,142,.9);
  background: rgba(210,180,142,.08);
}
.estetica-page .section.dark .btn-light:hover {
  background: var(--sand);
  color: var(--white);
}

.estetica-page .section.ink {
  background: var(--sand);
  color: var(--white);
}
.estetica-page .section.ink .eyebrow,
.estetica-page .section.ink .section-title,
.estetica-page .section.ink .section-title strong,
.estetica-page .section.ink .lead,
.estetica-page .section.ink p,
.estetica-page .section.ink .issue span,
.estetica-page .section.ink .issue .spark {
  color: var(--white) !important;
}
.estetica-page .section.ink .eyebrow::before { background: currentColor; }
.estetica-page .section.ink .issue-grid {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.22);
}
.estetica-page .section.ink .issue {
  background: rgba(255,255,255,.12);
}

.estetica-page .section.soft {
  background: var(--paper-2);
  color: var(--sand);
}
.estetica-page .section.soft .eyebrow,
.estetica-page .section.soft .section-title,
.estetica-page .section.soft .section-title strong,
.estetica-page .section.soft .tech-copy p {
  color: var(--sand);
}
.estetica-page .section.soft .eyebrow::before { background: currentColor; }

.estetica-page .site-footer {
  background: var(--sand);
  color: var(--white);
}
.estetica-page .site-footer .footer-nav a,
.estetica-page .site-footer .footer-contact,
.estetica-page .site-footer .footer-contact strong,
.estetica-page .site-footer .footer-bottom,
.estetica-page .site-footer .footer-bottom span {
  color: var(--white);
}
.estetica-page .site-footer .footer-nav a[data-link-key="whatsapp"]::before {
  color: var(--white);
}
.estetica-page .site-footer .footer-bottom {
  border-top-color: rgba(255,255,255,.22);
}


/* ODONTO — FAMÍLIA: TEXTO FORA DA FOTO */
.odonto-page .editorial-band {
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(520px, 1.12fr);
  min-height: 720px;
  align-items: stretch;
  background: var(--white);
  color: var(--sand);
}
.odonto-page .editorial-band-bg {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  min-height: 720px;
  background-size: cover;
  background-position: center 24%;
}
.odonto-page .editorial-band::after {
  display: none;
}
.odonto-page .editorial-band-content {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  margin: 0;
  padding: clamp(70px, 7vw, 108px) clamp(38px, 6vw, 92px);
  display: flex;
  align-items: center;
  background: var(--white);
}
.odonto-page .editorial-band-content > div {
  max-width: 590px;
}
.odonto-page .editorial-band .eyebrow,
.odonto-page .editorial-band .section-title,
.odonto-page .editorial-band .section-title strong,
.odonto-page .editorial-band p,
.odonto-page .editorial-band p strong {
  color: var(--sand);
}
.odonto-page .editorial-band .eyebrow::before {
  background: currentColor;
}
.odonto-page .editorial-band p {
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .odonto-page .editorial-band {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .odonto-page .editorial-band-bg {
    grid-column: 1;
    grid-row: 1;
    min-height: 520px;
    background-position: center 18%;
  }
  .odonto-page .editorial-band-content {
    grid-column: 1;
    grid-row: 2;
    padding: 62px 28px 70px;
  }
}

@media (max-width: 720px) {
  .odonto-page .editorial-band-bg {
    min-height: 430px;
    background-position: center 14%;
  }
  .odonto-page .editorial-band-content {
    width: 100%;
    padding: 52px 22px 60px;
  }
  .odonto-page .editorial-band .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .odonto-page .editorial-band p {
    font-size: 1rem;
  }
}


.results-section {
  background: var(--white);
  overflow: hidden;
}
.results-section .eyebrow,
.results-section .section-title,
.results-section .section-title strong,
.results-section .results-lead {
  color: var(--sand);
}
.results-section .eyebrow::before {
  background: currentColor;
}
.results-lead {
  max-width: 760px;
  margin-top: 22px;
}
.results-marquee {
  width: 100%;
  overflow: hidden;
  padding: 18px 0 4px;
}
.results-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: volpeResultsMarquee 42s linear infinite;
  padding: 0 32px;
  will-change: transform;
}
.result-card {
  flex: 0 0 340px;
  width: 340px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 16px 44px rgba(47,40,36,.10);
  border: 1px solid rgba(210,180,142,.24);
}
.result-card img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes volpeResultsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}
.results-marquee:hover .results-track {
  animation-play-state: paused;
}

@media (max-width: 900px) {
  .result-card {
    flex-basis: 300px;
    width: 300px;
    border-radius: 24px;
  }
  .results-track {
    gap: 18px;
    padding: 0 20px;
    animation-duration: 36s;
  }
}

@media (max-width: 720px) {
  .results-section {
    padding-top: 64px;
  }
  .results-track {
    gap: 16px;
    padding: 0 14px;
    animation-duration: 32s;
  }
  .result-card {
    flex-basis: 260px;
    width: 260px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .results-track {
    animation: none;
    width: auto;
    overflow-x: auto;
    padding-bottom: 6px;
  }
}


/* REVEAL */
[data-reveal] { opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
[data-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; }
  [data-reveal] { opacity:1; transform:none; }
}

/* MOBILE */
@media (max-width: 900px) {
  .header-nav { display:none; }
  .menu-button { display:block; }
  .section { padding:82px 0; }
  .section-grid,
  .feature-card,
  .harmonie-layout,
  .tech-grid { grid-template-columns:1fr; }
  .section-grid.reverse > :first-child,
  .section-grid.reverse > :last-child { order:initial; }
  .photo-card, .photo-card.tall, .harmonie-image, .tech-image { min-height:520px; }
  .harmonie-image { border-radius:120px 120px 28px 28px; }
  .feature-image { min-height:500px; }
  .treatments-head { display:block; }
  .treatments-head .lead { margin-top:24px; }
  .issue-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 720px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: inline !important; }

  .choice-main { grid-template-columns:1fr; }
  .choice-panel { min-height:calc(50svh - 38px); }
  .choice-panel + .choice-panel { border-left:0; border-top:1px solid rgba(255,255,255,.18); }
  .choice-copy { width:min(100%, 360px); padding:28px 22px; }
  .choice-copy p { display:none; }
  .choice-label { font-size:.70rem; letter-spacing:.16em; margin-bottom:12px; opacity:.92; }
  .choice-title { font-size:clamp(2.35rem,11vw,3.7rem); margin-bottom:10px; }
  .choice-arrow { display:none; }
  .choice-center { display:none; }
  .choice-top { min-height:76px; padding:18px 16px; }
  .choice-tag { display:none; }
  .choice-main { min-height:calc(100svh - 76px); }
  .choice-panel:first-child .choice-bg { background-position: 74% 10%; }
  .choice-panel:last-child .choice-bg { background-position: 62% 8%; }

  .container, .hero-content, .editorial-band-content { width:min(calc(100% - 28px), var(--content)); }
  .header-inner { min-height:72px; }
  .site-header.is-scrolled .menu-button,
  .site-header.is-scrolled .header-nav,
  .site-header.is-scrolled .brand-wordmark {
    color: var(--sand);
  }

  .mobile-menu { inset:72px 0 0; }
  .brand-wordmark { font-size:1.75rem; }
  .hero { min-height:100svh; }
  .hero-content { padding:116px 0 42px; }
  .hero-copy { max-width: 228px; }
  .display { font-size:clamp(2.1rem,11vw,3.45rem); line-height:.95; }
  .hero .lead { margin-top:22px; }
  .lead { font-size:1.02rem; line-height:1.55; }
  .section-title { font-size:clamp(2rem,10.5vw,3.3rem); }
  .section { padding:70px 0; }
  .section-copy p, .feature-copy p, .harmonie-copy p, .tech-copy p { font-size:1.02rem; }
  .photo-card, .photo-card.tall, .harmonie-image, .tech-image { min-height:430px; border-radius:22px; }
  .treatment-grid { grid-template-columns:1fr; }
  .treatment-item:nth-child(odd) { border-right:0; padding-right:0; }
  .treatment-item:nth-child(even) { padding-left:0; }
  .treatment-item { grid-template-columns:44px 1fr; padding:28px 0; }
  .editorial-band { min-height:650px; }
  .editorial-band::after { background:linear-gradient(180deg, rgba(251,248,244,.20), rgba(251,248,244,.92)); }
  .feature-card { border-radius:24px; }
  .feature-image { min-height:420px; }
  .feature-copy { padding:36px 24px 42px; }
  .concept-quote .quote { font-size:clamp(2.25rem,10.6vw,3.5rem); }
  .issue-grid { grid-template-columns:1fr; }
  .issue { min-height:118px; }
  .skin-glow-card { min-height:650px; border-radius:24px; }
  .final-cta { padding:90px 0; }
  .final-cta .btn { width:100%; }
  .footer-row, .footer-bottom { flex-direction:column; align-items:flex-start; }
  .footer-contact { font-size:.9rem; }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 122px;
    min-height: 48px;
    padding: 0 16px;
    font-size: .8rem;
  }
  .footer-nav { gap:14px 20px; }

  .odonto-page .hero::after {
    background: linear-gradient(90deg, rgba(29,24,20,.70) 0%, rgba(29,24,20,.28) 40%, rgba(29,24,20,.06) 100%), linear-gradient(180deg, rgba(29,24,20,.02) 10%, rgba(29,24,20,.46) 100%);
  }
  .odonto-page .hero-bg {
    background-image: url("assets/images/odonto-hero-mobile-v22.jpg") !important;
    background-position: 94% center !important;
    background-size: cover !important;
    transform: none !important;
  }
  .odonto-page .hero-copy { max-width: 176px; }
  .odonto-page .hero .display {
    max-width: 176px;
    font-size: clamp(1.96rem, 9.6vw, 3rem);
    line-height: .95;
  }
  .odonto-page .hero .lead {
    max-width: 182px;
    font-size: .94rem;
    line-height: 1.5;
  }
  .odonto-page .hero-actions .btn {
    width: 100%;
    max-width: 178px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .estetica-page .hero::after {
    background: linear-gradient(90deg, rgba(29,24,20,.62) 0%, rgba(29,24,20,.24) 40%, rgba(29,24,20,.05) 100%), linear-gradient(180deg, rgba(29,24,20,.02) 12%, rgba(29,24,20,.42) 100%);
  }
  .estetica-page .hero-bg {
    background-image: url("assets/images/estetica-hero-mobile-v7.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    transform: none !important;
  }
  .estetica-page .hero-copy { max-width: 220px; }
}

