/* ============================================================
   DRA. THUANA HERCULANO — ESTILO PRINCIPAL
   Paleta: preto, dourado e branco (luxo clássico)
   ============================================================ */

:root {
  /* Cores */
  --ink: #0e0c0a;
  --ink-soft: #1c1714;
  --ink-soft-2: #241e19;
  --gold: #bb9a5c;
  --gold-light: #e3d2a6;
  --gold-deep: #8a6f3f;
  --ivory: #fbf7f0;
  --sand: #efe6d8;
  --text-soft: rgba(251, 247, 240, 0.66);
  --text-soft-ink: rgba(14, 12, 10, 0.62);

  /* Tipografia */
  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Manrope", -apple-system, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 2px;
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--ivory);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 18px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--ink);
}
.btn--gold:hover { filter: brightness(1.08); transform: translateY(-2px); }

.btn--outline {
  border-color: rgba(251, 247, 240, 0.35);
  color: var(--ivory);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn--ghost {
  border-color: var(--gold);
  color: var(--gold);
  padding: 11px 20px;
  font-size: 13px;
}
.btn--ghost:hover { background: var(--gold); color: var(--ink); }

.btn--lg { padding: 19px 42px; font-size: 15px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 16px 0;
  transition: all var(--transition);
  background: rgba(14, 12, 10, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(187, 154, 92, 0.18);
}
.header.is-scrolled {
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--f-display);
  color: var(--ivory);
}
.logo__nome {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo__especialidade {
  font-family: var(--f-body);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 38px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav a { color: var(--ivory); position: relative; padding-bottom: 4px; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover::after { width: 100%; }

.header__whats { flex-shrink: 0; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at 70% 20%, #1f1812 0%, var(--ink) 60%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero__contour {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  opacity: 0.45;
  pointer-events: none;
}
.hero__contour svg { width: 100%; height: 100%; }
.hero__contour path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw-contour 2.6s ease forwards 0.4s;
}
@keyframes draw-contour {
  to { stroke-dashoffset: 0; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero__texto { color: var(--ivory); }

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 26px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }

.hero__subtitulo {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero__ctas { display: flex; gap: 18px; flex-wrap: wrap; }

.hero__foto { display: flex; justify-content: center; }
.hero__foto-moldura {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border: 1px solid rgba(187, 154, 92, 0.5);
  padding: 18px;
  border-radius: var(--radius);
}
.hero__foto-moldura::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(187, 154, 92, 0.5);
  transform: translate(10px, 10px);
  z-index: -1;
}
.hero__foto-moldura img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__carrossel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px; /* garante altura mínima quando aspect-ratio não resolve no mobile */
}
.hero__carrossel img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero__carrossel img.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__carrossel__pontos {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero__carrossel__pontos button {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(251, 247, 240, 0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero__carrossel__pontos button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  width: 18px;
  border-radius: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { padding: 140px 0; background: var(--ivory); }

.sobre__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.sobre__foto { position: relative; }
.sobre__foto img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}
.sobre__selo {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--ink);
  color: var(--gold-light);
  padding: 16px 22px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  border: 1px solid var(--gold);
}

.sobre__texto h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.2;
}

.sobre__texto p {
  color: var(--text-soft-ink);
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 18px;
}

.sobre__credenciais {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 12px;
}
.sobre__credenciais li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.sobre__credenciais li::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.sobre__frase {
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--sand);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-deep);
  line-height: 1.4;
}

/* ============================================================
   BANNER PROMOCIONAL (pop-up)
   ============================================================ */
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 7, 6, 0.78);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.promo-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.promo-card {
  position: relative;
  background: linear-gradient(165deg, var(--ink-soft), var(--ink) 70%);
  border: 1px solid var(--gold);
  max-width: 420px;
  width: 100%;
  padding: 44px 36px 36px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.promo-overlay.is-active .promo-card {
  transform: scale(1) translateY(0);
}

.promo-card__fechar {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-soft);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  width: 30px; height: 30px;
}
.promo-card__fechar:hover { color: var(--gold-light); }

.promo-card__titulo {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-light);
  margin: 0 0 14px;
  line-height: 1.3;
}

.promo-card__texto {
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 300;
  margin: 0 0 26px;
  line-height: 1.6;
}

.promo-card__botao { width: 100%; justify-content: center; }

@media (max-width: 480px) {
  .promo-card { padding: 36px 24px 28px; }
  .promo-card__titulo { font-size: 21px; }
}

/* ============================================================
   GALERIA — FAIXA HORIZONTAL
   ============================================================ */
.galeria {
  background: var(--ink);
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid rgba(187, 154, 92, 0.18);
  border-bottom: 1px solid rgba(187, 154, 92, 0.18);
}
.galeria__faixa {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 32px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.galeria__faixa::-webkit-scrollbar { height: 6px; }
.galeria__faixa::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 6px; }

.galeria__item {
  flex: 0 0 auto;
  width: 200px;
  aspect-ratio: 2/3;
  scroll-snap-align: start;
  border: 1px solid rgba(187, 154, 92, 0.35);
  overflow: hidden;
  filter: grayscale(0.15);
  transition: filter var(--transition), transform var(--transition);
}
.galeria__item:hover { filter: grayscale(0); transform: translateY(-4px); }
.galeria__item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

@media (max-width: 760px) {
  .galeria__item { width: 140px; }
  .galeria__faixa { padding: 0 14px; gap: 12px; }
}

/* ============================================================
   PROCEDIMENTOS
   ============================================================ */
.procedimentos { padding: 140px 0; background: var(--ink); color: var(--ivory); }

.section-head { max-width: 640px; margin: 0 auto 70px; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  color: var(--ivory);
  margin-bottom: 18px;
}
.section-head__desc {
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 300;
}
.section-head--claro h2 { color: var(--ink); }
.section-head--claro .section-head__desc { color: var(--text-soft-ink); }

.procedimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(187, 154, 92, 0.22);
  border: 1px solid rgba(187, 154, 92, 0.22);
}

.procedimento-card {
  background: var(--ink);
  padding: 46px 34px;
  transition: background var(--transition);
}
.procedimento-card:hover { background: var(--ink-soft-2); }

.procedimento-card__icone {
  width: 46px; height: 46px;
  margin-bottom: 26px;
  color: var(--gold);
}
.procedimento-card__icone svg { width: 100%; height: 100%; }

.procedimento-card h3 {
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 12px;
  font-weight: 500;
}

.procedimento-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   RESULTADOS — ANTES E DEPOIS
   ============================================================ */
.resultados { padding: 140px 0; background: var(--ivory); }

.resultados__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.ba-card {
  position: relative;
}
.ba-card__titulo {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--ink);
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--sand);
  user-select: none;
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__depois { z-index: 1; }
.ba-slider__antes {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-slider__label {
  position: absolute;
  top: 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  background: rgba(14, 12, 10, 0.7);
  color: var(--gold-light);
  z-index: 3;
}
.ba-slider__label--antes { left: 16px; }
.ba-slider__label--depois { right: 16px; }

.ba-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  z-index: 4;
  pointer-events: none;
  transform: translateX(-1px);
}
.ba-slider__handle::after {
  content: "⟷";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos { padding: 120px 0; background: var(--ink); color: var(--ivory); }
.depoimentos .section-head h2 { color: var(--ivory); }
.depoimentos .section-head__desc { color: var(--text-soft); }

.depoimentos__estrelas-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-soft);
}
.depoimentos__estrelas-google .estrelas { color: #fbbc05; font-size: 22px; letter-spacing: 2px; }
.depoimentos__estrelas-google .nota { color: var(--gold-light); font-weight: 700; font-size: 18px; }
.depoimentos__estrelas-google .total { color: var(--text-soft); font-size: 13px; }

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0 44px;
}

.depoimento-card {
  background: var(--ink-soft-2);
  border: 1px solid rgba(187, 154, 92, 0.2);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition);
}
.depoimento-card:hover { border-color: var(--gold); }

.depoimento-card__estrelas { color: #fbbc05; font-size: 16px; letter-spacing: 1px; }

.depoimento-card__texto {
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.depoimento-card__texto::before { content: '"'; }
.depoimento-card__texto::after  { content: '"'; }

.depoimento-card__autor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(187, 154, 92, 0.12);
}
.depoimento-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  flex-shrink: 0;
}
.depoimento-card__nome {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}
.depoimento-card__procedimento {
  font-size: 11.5px;
  color: var(--text-soft);
  font-weight: 400;
}

.depoimentos__google-cta {
  text-align: center;
  padding-top: 16px;
}
.depoimentos__google-cta p {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 20px;
}
.depoimentos__btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-color: rgba(251, 247, 240, 0.3);
}
.depoimentos__btn-google:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

@media (max-width: 980px) {
  .depoimentos__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 760px) {
  .depoimentos { padding: 80px 0; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.hero__contour--cta { top: 0; bottom: auto; transform: scaleY(-1); opacity: 0.3; }

.cta-final__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-final h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 20px;
}
.cta-final p {
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 38px;
  font-weight: 300;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.rodape { background: #08070600; background-color: #08070b; color: var(--text-soft); padding: 90px 0 0; }
.rodape__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(187, 154, 92, 0.18);
}
.logo--rodape { margin-bottom: 18px; }
.rodape__col p { font-size: 14px; font-weight: 300; max-width: 320px; }
.rodape__col h3 {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.rodape__lista { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 14.5px; }
.rodape__lista a:hover { color: var(--gold-light); }

.rodape__base {
  padding: 26px 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(251, 247, 240, 0.4);
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.whats-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform var(--transition);
}
.whats-float:hover { transform: scale(1.08); }
.whats-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   AVATAR — ASSISTENTE DE BELEZA
   ============================================================ */
.avatar-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.avatar-widget__figura {
  position: relative;
  width: 86px; height: 96px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.3));
  animation: avatar-breathe 4.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.avatar-widget__figura:hover { transform: translateY(-3px) scale(1.03); }
@keyframes avatar-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.avatar-widget__figura--aceno {
  animation: avatar-aceno 0.9s ease-in-out;
}
@keyframes avatar-aceno {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-8deg) translateY(-2px); }
  40% { transform: rotate(7deg) translateY(-2px); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(4deg); }
}
.avatar-widget__figura--pulso {
  animation: avatar-pulso 0.7s ease-in-out;
}
@keyframes avatar-pulso {
  0% { transform: scale(1); }
  30% { transform: scale(1.12) translateY(-6px); }
  55% { transform: scale(0.97); }
  100% { transform: scale(1); }
}

.avatar-widget__indicador {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 14px; height: 14px;
  background: var(--gold);
  border: 2px solid var(--ivory);
  border-radius: 50%;
  z-index: 2;
  animation: indicador-pulso 1.4s ease-in-out infinite;
}
.avatar-widget__indicador.is-hidden { display: none; }
@keyframes indicador-pulso {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(187,154,92,0.6); }
  50% { transform: scale(1.3); box-shadow: 0 0 0 8px rgba(187,154,92,0); }
}

.avatar-olho {
  animation: avatar-blink 5.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes avatar-blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

.avatar-widget__bolha {
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  max-width: 240px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  position: relative;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.avatar-widget__bolha.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.avatar-widget__bolha::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 30px;
  width: 14px; height: 14px;
  background: var(--ivory);
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
}
.avatar-widget__bolha p {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.avatar-widget__proxima {
  background: none;
  border: none;
  color: var(--gold-deep);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}
.avatar-widget__proxima:hover { color: var(--gold); }

.avatar-widget__cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--ink) !important;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: filter 0.2s ease;
}
.avatar-widget__cta:hover { filter: brightness(1.08); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1180px) {
  .logo__nome { font-size: 21px; }
  .nav { gap: 24px; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__foto {
    order: -1;
    width: 100%;          /* largura explícita para que filhos com % resolvam certo */
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__foto-moldura {
    width: 100%;          /* herda os 320px do pai e calcula a altura via aspect-ratio */
  }
  .hero__carrossel {
    position: relative;
    width: 100%;
    /* substitui height:100% que falha quando o pai não tem altura calculada */
    aspect-ratio: 4/5;
  }
  .sobre__inner { grid-template-columns: 1fr; gap: 50px; }
  .sobre__foto { max-width: 380px; margin: 0 auto; }
  .procedimentos__grid { grid-template-columns: repeat(2, 1fr); }
  .resultados__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .rodape__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header__whats { display: none; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 78%;
    height: 100vh;
    background: var(--ink);
    padding: 100px 40px;
    gap: 30px;
    font-size: 16px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }

  .hero { padding-top: 120px; }
  .procedimentos__grid { grid-template-columns: 1fr; }
  .sobre, .procedimentos, .resultados, .cta-final { padding: 90px 0; }

  .avatar-widget { left: 14px; bottom: 90px; }
  .whats-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .avatar-widget__bolha { max-width: 200px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
}
