/* ============================================================
   INSTITUTO FUZZO — Odontologia e Estética Avançada
   v2 · Luxury dark hero + light premium body · bordô & ouro
   Sora (títulos) · Manrope (texto) · Cormorant (marca)
   ============================================================ */

:root {
  --wine: #6F1F2A;
  --wine-deep: #4A121B;
  --night: #1E0D10;
  --night-2: #2B1216;

  --gold: #D0A838;
  --gold-deep: #A8762F;
  --gold-soft: #E0C376;
  --gold-pale: #F3E6C3;

  --bg: #FBF9F6;
  --bg-2: #F4EFE8;
  --cream-2: #F4EFE8; /* alias legado usado inline nas páginas internas */
  --white: #FFFFFF;

  --ink: #241318;
  --ink-soft: #6E5A5F;

  --grad-gold: linear-gradient(100deg, #A8762F 0%, #D3A952 45%, #EED79B 100%);
  --grad-copper: linear-gradient(115deg, #8F5F28 0%, #C99A56 40%, #EBCE92 75%, #C99A56 100%);

  --font-head: "Sora", "Avenir Next", sans-serif;
  --font-body: "Manrope", "Avenir Next", sans-serif;
  --font-brand: "Cormorant Garamond", Georgia, serif;

  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --shadow-card: 0 12px 34px -16px rgba(36, 19, 24, .18);
  --shadow-deep: 0 24px 60px -24px rgba(36, 19, 24, .38);
  --r-card: 16px;
  --r-btn: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; color: var(--ink); }

::selection { background: var(--gold); color: var(--night); }

/* ---------- typography ---------- */

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.16;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 7.4vw, 3.6rem); }
h2 { font-size: clamp(1.55rem, 5.4vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 3.6vw, 1.3rem); }
h1 em, h2 em, h3 em { font-style: normal; color: var(--wine); }

.lead { font-size: clamp(1rem, 3vw, 1.15rem); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.gold-dash {
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-gold);
  margin: 1.1rem 0;
}

/* barra dourada à esquerda do título (estilo referência) */
.bar-title {
  position: relative;
  padding-left: 1rem;
}
.bar-title::before {
  content: "";
  position: absolute;
  left: 0; top: .18em; bottom: .18em;
  width: 4px;
  border-radius: 2px;
  background: var(--grad-gold);
}

.rule-diamond { display: flex; align-items: center; gap: .9rem; margin: 1.2rem 0; }
.rule-diamond::before, .rule-diamond::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, rgba(208,168,56,.65), transparent);
}
.rule-diamond span { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex: none; }

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1.05rem 1.9rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s, background-position .5s, border-color .3s, color .3s;
}
.btn svg { width: 1rem; height: 1rem; flex: none; }

.btn-gold {
  background: linear-gradient(100deg, #A8762F 0%, #D3A952 40%, #EED79B 72%, #D3A952 100%);
  background-size: 180% 100%;
  color: #2A1508;
  box-shadow: 0 14px 30px -12px rgba(168, 118, 47, .65);
}
.btn-gold:hover {
  background-position: 90% 0;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -12px rgba(168, 118, 47, .8);
}

.btn-outline {
  border-color: rgba(208, 168, 56, .65);
  color: var(--gold-soft);
  background: rgba(208, 168, 56, .06);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(208, 168, 56, .14); transform: translateY(-2px); }
.on-light .btn-outline, .light-ctx .btn-outline { color: var(--gold-deep); border-color: rgba(168, 118, 47, .5); }
.on-light .btn-outline:hover, .light-ctx .btn-outline:hover { border-color: var(--gold-deep); background: rgba(168, 118, 47, .08); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .8rem 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
}
.site-header.scrolled {
  background: rgba(30, 13, 16, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, .55);
}

.brand { display: flex; flex-direction: column; line-height: 1; z-index: 75; }
.brand .brand-top {
  font-family: var(--font-head);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: .26rem;
}
.brand .brand-name {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
}
.brand .brand-sub {
  font-family: var(--font-head);
  font-size: .41rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(224, 195, 118, .75);
  margin-top: .3rem;
}

.header-cta {
  margin-left: auto;
  padding: .6rem .85rem;
  font-size: .58rem;
  letter-spacing: .13em;
  white-space: nowrap;
  z-index: 75;
}

.nav-desktop { display: none; }

.nav-toggle {
  z-index: 75;
  flex: none;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: rgba(30, 13, 16, .3);
  border: 1px solid rgba(224, 195, 118, .45);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--gold-soft);
  margin: 2.4px 0;
  transition: transform .4s var(--ease-out), opacity .3s;
}
body.menu-open .nav-toggle::before { transform: translateY(6.4px) rotate(45deg); }
body.menu-open .nav-toggle span { opacity: 0; }
body.menu-open .nav-toggle::after { transform: translateY(-6.4px) rotate(-45deg); }

/* menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(208, 168, 56, .14), transparent 55%),
    linear-gradient(165deg, #35151B, var(--night));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem 2rem 2.5rem;
  clip-path: circle(0 at calc(100% - 46px) 46px);
  visibility: hidden;
  transition: clip-path .7s var(--ease-out), visibility 0s .7s;
}
body.menu-open .nav-overlay {
  clip-path: circle(150% at calc(100% - 46px) 46px);
  visibility: visible;
  transition: clip-path .7s var(--ease-out);
}
.nav-overlay a.nav-link {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  font-weight: 700;
  color: #F6EFE4;
  padding: .5rem 0;
  display: flex;
  align-items: baseline;
  gap: .9rem;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .5s, transform .6s var(--ease-out), color .3s;
}
.nav-overlay a.nav-link small {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--gold);
}
.nav-overlay a.nav-link:hover { color: var(--gold-soft); }
body.menu-open .nav-overlay a.nav-link { opacity: 1; transform: none; }
body.menu-open .nav-overlay a.nav-link:nth-child(1) { transition-delay: .1s; }
body.menu-open .nav-overlay a.nav-link:nth-child(2) { transition-delay: .16s; }
body.menu-open .nav-overlay a.nav-link:nth-child(3) { transition-delay: .22s; }
body.menu-open .nav-overlay a.nav-link:nth-child(4) { transition-delay: .28s; }
body.menu-open .nav-overlay a.nav-link:nth-child(5) { transition-delay: .34s; }
body.menu-open .nav-overlay a.nav-link:nth-child(6) { transition-delay: .40s; }
.nav-overlay .overlay-foot {
  margin-top: 3rem;
  border-top: 1px solid rgba(224, 195, 118, .25);
  padding-top: 1.4rem;
  font-size: .8rem;
  color: rgba(246, 239, 228, .6);
  opacity: 0;
  transition: opacity .5s .5s;
}
body.menu-open .nav-overlay .overlay-foot { opacity: 1; }
body.menu-open { overflow: hidden; }

/* ---------- layout ---------- */

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }
section { position: relative; }
.section-pad { padding: 4.2rem 0; }

.sec-head { text-align: center; max-width: 640px; margin: 0 auto 2.4rem; }
.sec-head p { margin-top: .8rem; font-size: .95rem; }

/* seções escuras legadas (páginas internas) */
.sec-wine {
  background:
    radial-gradient(130% 80% at 90% 0%, rgba(208, 168, 56, .12), transparent 55%),
    linear-gradient(165deg, #3A161D 0%, var(--night-2) 60%, var(--night) 100%);
  color: #EFE4D4;
}
.on-wine h1, .on-wine h2, .on-wine h3 { color: #F8F2E6; }
.on-wine h2 em { color: var(--gold-soft); }
.on-wine p, .on-wine .lead { color: rgba(239, 228, 212, .78); }
.on-wine .kicker { color: var(--gold-soft); }

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- HERO LUXO (home) ---------- */

.hero-lux {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--night);
  color: #F6EFE4;
  overflow: hidden;
  padding-bottom: 2.6rem;
}
/* mobile: foto EM CIMA (em fluxo), texto abaixo em fundo sólido */
.hero-media {
  position: relative;
  width: 100%;
  height: 54svh;
  min-height: 320px;
}
.hero-media picture { display: contents; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 40% at 80% 0%, rgba(208, 168, 56, .18), transparent 60%),
    linear-gradient(180deg, rgba(30, 13, 16, .5) 0%, rgba(30, 13, 16, .05) 26%, transparent 55%, rgba(30, 13, 16, .55) 82%, var(--night) 100%);
}
.hero-veil { display: none; }
.hero-lux-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: .4rem;
}
.hero-lux .kicker {
  color: var(--gold-soft);
  opacity: 0;
  animation: rise-in .9s var(--ease-out) .2s forwards;
}
.hero-lux h1 {
  margin-top: .9rem;
  font-size: clamp(2.05rem, 8.6vw, 4.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #FBF6EC;
  max-width: 16ch;
  opacity: 0;
  animation: rise-in 1s var(--ease-out) .34s forwards;
}
.hero-lux h1 em { color: var(--gold); font-style: normal; }
.hero-lux .gold-dash { opacity: 0; animation: rise-in .9s var(--ease-out) .48s forwards; }
.hero-lux .lead {
  color: rgba(246, 239, 228, .85);
  max-width: 40ch;
  opacity: 0;
  animation: rise-in 1s var(--ease-out) .58s forwards;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.7rem;
  opacity: 0;
  animation: rise-in 1s var(--ease-out) .72s forwards;
}
.hero-ctas .btn { width: 100%; white-space: nowrap; }
.hero-ctas .btn-outline { font-size: .7rem; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* ---------- marquee dourado ---------- */

.marquee {
  overflow: hidden;
  background: var(--grad-copper);
  padding: .78rem 0;
  border-top: 1px solid rgba(255, 244, 214, .5);
  border-bottom: 1px solid rgba(122, 79, 30, .45);
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #3A2110;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.marquee-track span::after { content: "◆"; font-size: .5rem; color: #7A4F1E; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- tabs + cards de procedimentos ---------- */

.proc-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(168, 118, 47, .4);
  border-radius: 999px;
  background: var(--white);
  width: fit-content;
  margin: 0 auto 2.6rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.proc-tabs button {
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .9rem 1.6rem;
  background: none;
  border: none;
  color: var(--gold-deep);
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color .4s;
}
.proc-tabs button.active { color: #2A1508; }
.proc-tabs .tab-pill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 50%;
  background: var(--grad-gold);
  transition: transform .45s var(--ease-out);
  z-index: 1;
}
.proc-tabs.est .tab-pill { transform: translateX(100%); }

.proc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.proc-grid.hidden { display: none; }

.proc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .55rem;
  padding: 1.9rem 1rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(208, 168, 56, .45);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.proc-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-deep);
}
.proc-card .n {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 118, 47, .55);
  background: radial-gradient(circle at 30% 25%, rgba(238, 215, 155, .5), rgba(208, 168, 56, .12));
  font-family: var(--font-brand);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-deep);
  transition: transform .5s var(--ease-out);
}
.proc-card:hover .n { transform: scale(1.08) rotate(-6deg); }
.proc-card .t { display: flex; flex-direction: column; gap: .3rem; }
.proc-card .t h3 { font-size: .98rem; color: var(--wine); line-height: 1.3; }
.proc-card .t p { font-size: .8rem; line-height: 1.5; }
.proc-card .arrow {
  margin-top: .4rem;
  font-family: var(--font-head);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: color .3s, transform .4s var(--ease-out);
}
.proc-card .arrow::before { content: "Conhecer "; }
.proc-card:hover .arrow { color: var(--wine); transform: translateX(4px); }

/* ---------- faixa cobre (resultados / cta) ---------- */

.band-copper {
  background: var(--grad-copper);
  color: #2E1A0B;
  padding: 3.6rem 0 3rem;
  position: relative;
}
.band-copper h2 { color: #241105; max-width: 22ch; }
.band-copper .kicker { color: #5C3714; }
.band-copper .band-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.9rem;
}

.car-nav { display: flex; gap: .6rem; }
.car-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(36, 17, 5, .4);
  background: rgba(255, 250, 240, .35);
  color: #241105;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .3s, transform .3s var(--ease-out);
}
.car-btn:hover { background: rgba(255, 250, 240, .7); transform: scale(1.06); }
.light-ctx .car-btn { border-color: rgba(168, 118, 47, .5); background: var(--white); color: var(--gold-deep); }

/* carrossel scroll-snap */
.carousel { position: relative; }
.car-track {
  display: flex;
  gap: .9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: .6rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track > * { scroll-snap-align: start; flex: 0 0 78%; }
.car-track figure {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, .55);
  box-shadow: 0 16px 34px -18px rgba(46, 26, 11, .55);
  aspect-ratio: 1;
  background: var(--night);
}
.car-track figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.car-track figure:hover img { transform: scale(1.05); }
.car-track figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.7rem .85rem .7rem;
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  background: linear-gradient(transparent, rgba(20, 9, 11, .88));
}

/* ---------- avaliações ---------- */

.rating-summary {
  text-align: center;
  margin-bottom: 2rem;
}
.rating-summary .big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--ink);
}
.rating-summary .stars { color: #F5B400; font-size: 1.5rem; letter-spacing: .18em; margin: .2rem 0; }
.rating-summary .base { font-size: .85rem; }
.rating-summary .base strong { color: var(--wine); }

.review-card {
  flex: 0 0 84%;
  background: var(--white);
  border: 1px solid rgba(208, 168, 56, .35);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  scroll-snap-align: start;
}
.review-card .rc-head { display: flex; align-items: center; gap: .75rem; }
.review-card .avatar {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-gold);
  color: #2A1508;
  font-family: var(--font-head);
  font-weight: 700;
}
.review-card .rc-name { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); line-height: 1.2; }
.review-card .rc-g { margin-left: auto; font-family: var(--font-head); font-weight: 800; color: #4285F4; font-size: 1.05rem; }
.review-card .rc-stars { color: #F5B400; font-size: .85rem; letter-spacing: .16em; }
.review-card p { font-size: .88rem; line-height: 1.6; }

/* ---------- sobre / missão-visão-valores ---------- */

.about-grid { display: grid; gap: 2rem; }
.about-grid .about-figure {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(208, 168, 56, .5);
  box-shadow: var(--shadow-deep);
}
.about-grid .about-figure img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; object-position: center top; }
.about-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.about-badges span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 118, 47, .45);
  color: var(--gold-deep);
  background: var(--white);
}

.mvv-grid { display: grid; gap: .9rem; margin-top: 2.4rem; }
.mvv-card {
  background: var(--white);
  border: 1px solid rgba(208, 168, 56, .4);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 1.7rem 1.4rem;
  text-align: center;
}
.mvv-card .mvv-ico {
  width: 56px; height: 56px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 118, 47, .5);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
}
.mvv-card .mvv-ico svg { width: 24px; height: 24px; }
.mvv-card h3 {
  font-size: .92rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .55rem;
}
.mvv-card p { font-size: .86rem; }

/* ---------- equipe ---------- */

.team-grid { display: grid; gap: 1.6rem; max-width: 900px; margin: 0 auto; }
.doctor-card {
  background: var(--white);
  border: 1px solid rgba(208, 168, 56, .4);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-align: center;
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.doctor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-deep); }
.doctor-card .frame { position: relative; }
.doctor-card .frame img {
  width: 100%;
  aspect-ratio: 3/3.2;
  object-fit: cover;
  object-position: center top;
}
.doctor-card .frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 70px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .95));
}
.doctor-card .d-body { padding: .4rem 1.2rem 1.5rem; position: relative; z-index: 2; }
.doctor-card h3 { color: var(--wine); }
.doctor-card .cro {
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: .3rem 0 .6rem;
}
.doctor-card p { font-size: .87rem; max-width: 34ch; margin: 0 auto; }

/* ---------- contato ---------- */

.contact-card {
  background: var(--white);
  border: 1.5px solid rgba(168, 118, 47, .45);
  border-radius: 22px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  display: grid;
}
.contact-card .c-info { padding: 2rem 1.5rem; }
.contact-card .c-info h2 { font-size: clamp(1.35rem, 4.6vw, 1.9rem); max-width: 20ch; }
.contact-list { display: grid; gap: .75rem; margin: 1.4rem 0 1.6rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .93rem; }
.contact-list .c-ico {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 118, 47, .5);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
}
.contact-list .c-ico svg { width: 16px; height: 16px; }
.contact-list a { color: var(--wine); font-weight: 700; }
.hours { margin-top: .2rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px dashed rgba(168, 118, 47, .3); font-size: .9rem; }
.hours li span:last-child { font-family: var(--font-head); font-weight: 600; color: var(--wine); }
.map-frame { min-height: 300px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* ---------- FAQ ---------- */

.faq-grid { display: grid; gap: 2.2rem; }
.faq details {
  border: 1px solid rgba(168, 118, 47, .35);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .3s;
}
.faq details[open] { border-color: var(--gold-deep); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  transition: background .35s, color .35s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 118, 47, .45);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gold-deep);
  transition: transform .4s var(--ease-out), background .3s, color .3s, border-color .3s;
}
.faq details[open] summary {
  background: var(--grad-gold);
  color: #241105;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  background: rgba(255, 252, 244, .9);
  border-color: transparent;
  color: var(--gold-deep);
}
.faq .faq-a { padding: 1rem 1.15rem 1.2rem; font-size: .9rem; max-width: 62ch; }

.faq-aside h2 { max-width: 14ch; }
.faq-aside p { margin: .9rem 0 1.4rem; font-size: .95rem; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--grad-copper);
  color: #402511;
  padding: 3.2rem 0 7rem;
  position: relative;
}
.site-footer .f-brand {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #33200D;
}
.site-footer .f-sub {
  font-family: var(--font-head);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: #5C3714;
  margin: .3rem 0 1.4rem;
}
.site-footer .f-cols { display: grid; gap: 1.8rem; }
.site-footer h4 {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #33200D;
  margin-bottom: .7rem;
}
.site-footer p { font-size: .88rem; }
.site-footer li { padding: .2rem 0; font-size: .9rem; }
.site-footer a { font-weight: 600; }
.site-footer a:hover { color: #1F1206; text-decoration: underline; }
.site-footer .f-bottom {
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(64, 37, 17, .3);
  font-size: .74rem;
  color: rgba(64, 37, 17, .8);
}

/* ---------- whatsapp fab + barra mobile ---------- */

.wa-fab {
  position: fixed;
  right: 1.05rem;
  bottom: 5.4rem;
  z-index: 55;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2BB741, #1E9E34);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(30, 158, 52, .6);
  transition: transform .4s var(--ease-out);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(43, 183, 65, .7);
  animation: fab-pulse 2.4s ease-out infinite;
}
@keyframes fab-pulse {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(1.7); opacity: 0; }
}
.wa-fab svg { width: 26px; height: 26px; }

.cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 54;
  display: flex;
  background: rgba(24, 10, 12, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(224, 195, 118, .3);
}
.cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem .5rem calc(.95rem + env(safe-area-inset-bottom));
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cta-bar a svg { width: 1rem; height: 1rem; }
.cta-bar .c-call { color: var(--gold-pale); }
.cta-bar .c-book { background: var(--grad-gold); color: #2A1508; }

/* ---------- páginas de procedimento ---------- */

.page-hero {
  position: relative;
  padding: 8.2rem 0 3.4rem;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(208, 168, 56, .16), transparent 55%),
    linear-gradient(165deg, #40191F 0%, var(--night-2) 55%, var(--night) 100%);
  color: #F6EFE4;
  overflow: hidden;
}
.page-hero .crumbs {
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246, 239, 228, .55);
  margin-bottom: 1.1rem;
}
.page-hero .crumbs a { color: var(--gold-soft); }
.page-hero h1 {
  color: #FBF6EC;
  font-size: clamp(1.9rem, 6.8vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  max-width: 18ch;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero .lead { margin-top: 1rem; max-width: 50ch; color: rgba(246, 239, 228, .82); }
.page-hero .hero-tag {
  position: absolute;
  right: -3.6rem;
  top: 44%;
  transform: rotate(90deg);
  font-family: var(--font-head);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(224, 195, 118, .35);
}

.article-grid { display: grid; gap: 2.4rem; }
.article-figure {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(208, 168, 56, .5);
  box-shadow: var(--shadow-deep);
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
}
.article-figure img { width: 100%; aspect-ratio: 4/4.1; object-fit: cover; }
.article-figure figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.8rem 1rem .8rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  background: linear-gradient(transparent, rgba(20, 9, 11, .85));
}

.benefits { display: grid; gap: .8rem; margin-top: 1.5rem; }
.benefit {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1.05rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(208, 168, 56, .38);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease-out), border-color .4s;
}
.benefit:hover { transform: translateY(-3px); border-color: var(--gold); }
.benefit .b-ico {
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(238, 215, 155, .55), rgba(208, 168, 56, .12));
  border: 1.5px solid rgba(168, 118, 47, .5);
  color: var(--gold-deep);
  font-size: .8rem;
}
.benefit h3 { font-size: .95rem; margin-bottom: .2rem; color: var(--wine); }
.benefit p { font-size: .84rem; line-height: 1.55; }

.steps { counter-reset: step; display: grid; gap: .8rem; margin-top: 1.5rem; }
.step {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 4rem;
  background: var(--white);
  border: 1px solid rgba(208, 168, 56, .35);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1rem; top: 1.15rem;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-gold);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: #2A1508;
}
.step h3 { font-size: .98rem; margin-bottom: .2rem; color: var(--ink); }
.step p { font-size: .87rem; }

.cta-band { text-align: center; padding: 4rem 0; }
.cta-band h2 { max-width: 20ch; margin: 1rem auto 1rem; }
.cta-band p { max-width: 46ch; margin: 0 auto 1.8rem; }

.related-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.3rem; }
.related-list a {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .62rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 118, 47, .45);
  background: var(--white);
  color: var(--gold-deep);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-out);
}
.related-list a:hover {
  background: var(--wine);
  color: var(--gold-pale);
  border-color: var(--wine);
  transform: translateY(-2px);
}

/* galeria em grid (páginas internas, dentro de sec-wine) */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(224, 195, 118, .35);
  aspect-ratio: 1;
  background: var(--night);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem .8rem .65rem;
  font-family: var(--font-head);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  background: linear-gradient(transparent, rgba(20, 9, 11, .88));
}

/* páginas internas: grid de infos herdado */
.info-grid { display: grid; gap: 2.5rem; }

/* ---------- desktop ---------- */

@media (min-width: 900px) {
  .section-pad { padding: 6rem 0; }

  .nav-desktop { display: flex; align-items: center; gap: 1.9rem; }
  .nav-desktop a {
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #F6EFE4;
    position: relative;
    padding: .3rem 0;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease-out);
  }
  .nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-desktop .btn { padding: .7rem 1.4rem; font-size: .68rem; }
  .nav-toggle, .header-cta { display: none; }

  .hero-lux { flex-direction: row; align-items: stretch; padding-bottom: 0; }
  .hero-lux-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100svh;
    max-width: 1240px;
    padding-top: 4rem;
  }
  .hero-lux h1 { max-width: 14ch; }
  /* desktop: foto ao lado (coluna direita), não atrás do texto */
  /* desktop: a arte wide já traz a área escura à esquerda para o texto */
  .hero-media { position: absolute; inset: 0; height: auto; min-height: 0; }
  .hero-media img { object-position: center center; }
  .hero-media::after { display: none; }
  .hero-veil {
    display: block;
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(26, 11, 14, .72) 0%, rgba(26, 11, 14, .5) 34%, rgba(26, 11, 14, .12) 52%, transparent 66%),
      linear-gradient(180deg, rgba(26, 11, 14, .45) 0%, transparent 26%, rgba(26, 11, 14, .35) 100%);
  }
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }

  .proc-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .proc-card { padding: 2.1rem 1.2rem 1.6rem; }

  .car-track > * { flex: 0 0 24%; }
  .review-card { flex: 0 0 32%; }

  .about-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3rem; }
  .mvv-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { grid-template-columns: 1fr 1fr; }
  .contact-card .c-info { padding: 2.6rem 2.4rem; }
  .faq-grid { grid-template-columns: 1.15fr .85fr; align-items: start; gap: 3rem; }

  .site-footer { padding-bottom: 2.8rem; }
  .site-footer .f-cols { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .cta-bar { display: none; }
  .wa-fab { bottom: 1.4rem; }

  .article-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .article-grid .article-body { order: 1; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .info-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

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