/* ===========================================================
   Dra. Emilly Araújo — Estética Facial
   Identidade: Th Design  |  Site: Livem / MazyOS
   Referência de layout: dradaianadesouza.com.br (editorial, elegante)
   Cores da marca: #AA79A9 / #C29EC0 / #FEF2F2
   Fontes: Josefin Sans (títulos) + Lato (corpo)
   =========================================================== */

:root {
  --roxo: #aa79a9;
  --roxo-claro: #c29ec0;
  --roxo-suave: #e7d6e6;
  --roxo-escuro: #6f4a6e;
  --roxo-profundo: #4d3350;
  --nude: #fef2f2;
  --nude-2: #fbe8ec;
  --branco: #ffffff;
  --texto: #4b3a4a;
  --texto-suave: #82717f;
  --verde: #25d366;
  --verde-escuro: #1eb257;
  --sombra: 0 24px 60px -28px rgba(77, 51, 80, .4);
  --sombra-suave: 0 14px 36px -22px rgba(77, 51, 80, .3);
  --raio: 18px;
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Lato", "Segoe UI", system-ui, sans-serif;
  color: var(--texto);
  background: var(--nude);
  font-size: 1.02rem;
  line-height: 1.75;
  overflow-x: hidden;
}

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

h1, h2 {
  font-family: "Josefin Sans", "Lato", sans-serif;
  font-weight: 400;
  color: var(--roxo-escuro);
  line-height: 1.16;
  letter-spacing: .005em;
}

h3, h4 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: var(--roxo-escuro);
  line-height: 1.28;
}

/* Destaque nos títulos: mesma fonte e mesmo peso, só a cor muda */
.emph { color: var(--roxo); font-weight: inherit; font-style: normal; }

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

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

section { padding: clamp(3.75rem, 8.5vw, 7rem) 0; }
section[id] { scroll-margin-top: 104px; }

.eyebrow {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--roxo);
  display: inline-block;
  margin-bottom: 1.1rem;
}

.section-head { max-width: 620px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4.2vw, 2.7rem); }
.section-head p { margin-top: 1rem; color: var(--texto-suave); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.05rem 2rem;
  border-radius: 999px;
  border: 1.6px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  line-height: 1.2;
  text-align: center;
}
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-wpp {
  background: var(--verde);
  color: #fff;
  box-shadow: 0 16px 34px -14px rgba(37, 211, 102, .6);
}
.btn-wpp:hover { background: var(--verde-escuro); transform: translateY(-2px); }

.btn-outline { background: transparent; border-color: var(--roxo); color: var(--roxo-escuro); }
.btn-outline:hover { background: var(--roxo); color: #fff; transform: translateY(-2px); }


/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 242, 242, .8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 28px -20px rgba(77, 51, 80, .55); background: rgba(254, 242, 242, .96); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.site-header .logo img { height: 58px; width: auto; }
.nav-links { display: flex; gap: 1.9rem; }
.nav-links a { font-size: .86rem; letter-spacing: .06em; color: var(--texto-suave); font-weight: 600; transition: color .15s ease; }
.nav-links a:hover { color: var(--roxo-escuro); }
.header-cta { padding: .72rem 1.35rem; font-size: .9rem; }
@media (max-width: 1000px) { .nav-links { display: none; } }
@media (max-width: 540px) { .header-cta span { display: none; } .header-cta { padding: .72rem .95rem; } }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.hero .container {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.hero p.sub { margin-top: 1.5rem; font-size: 1.16rem; color: var(--texto); max-width: none; }
@media (max-width: 460px) { .hero p.sub { font-size: 1.04rem; } }
.hero .btn { margin-top: 2.1rem; }
.hero-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.7rem;
  align-items: center;
  font-size: .9rem;
  color: var(--texto-suave);
}
.hero-badges .b { display: flex; align-items: center; gap: .5rem; }
.hero-badges b { color: var(--roxo-escuro); }
.hero-badges .stars { color: #e8b93b; letter-spacing: 2px; }
.hero-badges .sep { width: 1px; height: 20px; background: var(--roxo-suave); }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--sombra);
  aspect-ratio: 3 / 3.7;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }

.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 18px;
  box-shadow: 0 24px 50px -18px rgba(77, 51, 80, .55);
  padding: 1.05rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .95rem;
  line-height: 1.4;
  color: var(--roxo-escuro);
  max-width: 70%;
}
.hero-badge b { color: var(--roxo-profundo); font-weight: 700; }
.hero-badge .stars { color: #e0a92c; letter-spacing: 1.5px; font-size: .98rem; white-space: nowrap; text-shadow: 0 1px 2px rgba(255,255,255,.5); }
.hero-badge .ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(254, 242, 242, .85); display: grid; place-items: center; flex: none; }
.hero-badge .ic svg { width: 22px; height: 22px; stroke: var(--roxo); }
.badge-top { top: 24px; right: -26px; flex-direction: column; align-items: flex-start; gap: .3rem; animation: flutua-a 5s ease-in-out infinite; }
.badge-bottom { left: -26px; bottom: 34px; animation: flutua-b 6.5s ease-in-out infinite; }
@keyframes flutua-a { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes flutua-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p.sub { max-width: none; margin-inline: auto; }
  .hero-badges { justify-content: center; }
  .hero-media { max-width: 380px; margin: .5rem auto 0; }
  .badge-top { right: -8px; }
  .badge-bottom { left: -8px; }
}
@media (max-width: 420px) {
  .hero-badge { font-size: .76rem; padding: .65rem .85rem; }
  .badge-top { right: 4px; top: 14px; }
  .badge-bottom { left: 4px; bottom: 18px; }
}

/* ---------- Faixa desconto ---------- */
.faixa {
  background: linear-gradient(100deg, var(--roxo) 0%, var(--roxo-claro) 100%);
  color: #fff;
  padding: 1.05rem 0;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  font-size: 1.02rem;
  overflow: hidden;
}
.faixa-track { display: flex; width: max-content; animation: faixa-scroll 34s linear infinite; }
.faixa-track span { white-space: nowrap; letter-spacing: .01em; }
@keyframes faixa-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .faixa-track { animation: none; } }

/* ---------- Benefícios ---------- */
.beneficios { background: var(--branco); }
.grid-beneficios { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.card-beneficio {
  background: var(--nude);
  border: 1px solid var(--roxo-suave);
  border-radius: var(--raio);
  padding: 1.8rem 1.7rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.card-beneficio .ic { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1px solid var(--roxo-suave); }
.card-beneficio .ic svg { width: 22px; height: 22px; stroke: var(--roxo); }
.card-beneficio p { font-size: .97rem; line-height: 1.6; }
.card-beneficio b { color: var(--roxo-escuro); font-weight: 700; }

/* ---------- Você se identifica ---------- */
.identifica { background: var(--nude); padding: clamp(3rem, 6.5vw, 5rem) 0; }
.identifica-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
.identifica-head { position: sticky; top: 90px; }
.identifica-head h2 { font-size: clamp(1.5rem, 3.2vw, 2.15rem); margin-top: .7rem; }

.dores-wrap { position: relative; }
.dores-lista {
  list-style: none; display: flex; flex-direction: column; gap: .9rem;
  padding: 4px 4px 0; margin: -4px -4px 0;
  max-height: 332px; overflow-y: auto; overscroll-behavior: contain;
  scrollbar-width: none; -ms-overflow-style: none;
}
.dores-lista::-webkit-scrollbar { display: none; }
.dores-fade {
  position: absolute; left: -6px; right: -6px; bottom: -1px; height: 110px;
  pointer-events: none;
  background: linear-gradient(rgba(254, 242, 242, 0) 0%, rgba(254, 242, 242, 0) 70%, var(--nude) 97%);
}
.dor-card {
  flex: none;
  display: flex; align-items: flex-start; gap: .95rem;
  background: #fff; border: 1px solid var(--roxo-suave);
  border-radius: var(--raio); padding: 1rem 1.2rem;
  box-shadow: 0 12px 30px -22px rgba(77, 51, 80, .3);
  transition: opacity .4s ease, transform .5s cubic-bezier(.34, 1.5, .6, 1), box-shadow .3s ease, border-color .3s ease;
}
.dor-card:hover { border-color: var(--roxo-claro); box-shadow: 0 18px 38px -20px rgba(77, 51, 80, .38); }
.dor-ic { flex: none; width: 42px; height: 42px; margin-top: 1px; display: grid; place-items: center; border-radius: 50%; background: var(--roxo-suave); }
.dor-ic svg { width: 21px; height: 21px; color: var(--roxo-escuro); }
.dor-card p {
  margin: 0; font-size: .93rem; line-height: 1.5; color: var(--texto-suave);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}
.dor-card b { color: var(--roxo-escuro); font-weight: 700; }

/* Entrada estilo "notificação": cada card surge no topo e empurra os anteriores para baixo (JS) */
.dores-lista.js-stack .dor-card { display: none; opacity: 0; transform: scale(.6); will-change: transform; }
.dores-lista.js-stack .dor-card.is-shown { display: flex; }
.dores-lista.js-stack .dor-card.is-visible { opacity: 1; transform: none; }

@media (max-width: 780px) {
  .identifica-grid { grid-template-columns: 1fr; }
  .identifica-head { position: static; }
  .dores-lista { max-height: 60vh; }
  .dor-card p { -webkit-line-clamp: initial; display: block; overflow: visible; }
}
@media (prefers-reduced-motion: reduce) {
  .dores-lista.js-stack .dor-card { display: flex; opacity: 1; transform: none; }
}

/* ---------- Diferenciais (band) ---------- */
.band-dif { background: var(--nude); position: relative; overflow: hidden; }
.band-dif::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: url("../img/pattern.png") center / 320px repeat;
  opacity: .13;
  pointer-events: none;
  animation: pattern-drift 30s ease-in-out infinite alternate;
}
@keyframes pattern-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(34px, 34px); }
}
.band-dif .container { position: relative; }
.grid-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 920px; margin: 0 auto; }
@media (max-width: 620px) { .grid-band { grid-template-columns: 1fr; max-width: 420px; } }
.mini-dif {
  display: flex;
  gap: .95rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, .45);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 20px 44px -26px rgba(77, 51, 80, .4);
}
.mini-dif .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--roxo); display: grid; place-items: center; }
.mini-dif .ic svg { width: 22px; height: 22px; stroke: #fff; }
.mini-dif b { display: block; color: var(--roxo-escuro); font-size: .98rem; margin-bottom: .25rem; }
.mini-dif span { font-size: .89rem; color: var(--texto-suave); line-height: 1.55; }

/* ---------- Sobre ---------- */
.sobre { background: var(--branco); min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.sobre .container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; width: 100%; }
.sobre-media {
  position: relative;
  aspect-ratio: 5 / 6.4;
  border-radius: 24px 24px 150px 24px;
  overflow: hidden;
  box-shadow: var(--sombra);
}
.sobre-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .6s ease; }
.sobre-media:hover img { transform: scale(1.06); }
.sobre h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.3rem; }
.sobre p + p { margin-top: 1rem; }
.sobre .stats { display: flex; gap: 2.6rem; margin-top: 2.1rem; flex-wrap: wrap; }
.sobre .stats .n { font-family: "Lato", sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--roxo); line-height: 1; }
.sobre .stats span { font-size: .86rem; color: var(--texto-suave); display: block; margin-top: .35rem; }
.sobre .btn { margin-top: 2.1rem; }
@media (max-width: 860px) {
  .sobre { min-height: 0; }
  .sobre .container { grid-template-columns: 1fr; }
  .sobre-media { max-width: 420px; margin: 0 auto; aspect-ratio: 4 / 5; }
}
@media (prefers-reduced-motion: reduce) { .sobre-media:hover img { transform: none; } }

/* ---------- Prova social ---------- */
.provas { background: var(--nude); }
.google-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  background: #fff; border: 1px solid var(--roxo-suave);
  border-radius: 999px; padding: .7rem 1.4rem; margin-top: 1.2rem; font-size: .93rem;
}
.google-badge .stars { color: #e8b93b; letter-spacing: 2px; }
.google-badge b { color: var(--roxo-escuro); }
.depo-marquee {
  margin-top: 2.8rem;
  display: grid;
  gap: 1.4rem;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.depo-track { display: flex; width: max-content; will-change: transform; }
.depo-track .depo { margin-right: 1.4rem; }
.depo-track.esquerda { animation: marquee-esq 44s linear infinite; }
.depo-track.direita { animation: marquee-dir 44s linear infinite; }
@keyframes marquee-esq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-dir { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.depo { background: #fff; border: 1px solid var(--roxo-suave); border-radius: var(--raio); padding: 1.8rem 1.7rem; display: flex; flex-direction: column; gap: .9rem; width: 360px; flex: none; }
@media (max-width: 560px) { .depo { width: 290px; } .depo-track .depo { margin-right: 1rem; } }
@media (prefers-reduced-motion: reduce) {
  .depo-marquee { overflow-x: auto; -webkit-mask: none; mask: none; }
  .depo-track { animation: none; }
  .depo-track.direita { display: none; }
}
.depo .stars { color: #e8b93b; letter-spacing: 2px; font-size: .95rem; }
.depo p { font-size: .95rem; line-height: 1.65; }
.depo .quem { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.depo .quem .av { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--roxo); color: #fff; display: grid; place-items: center; font-size: .95rem; line-height: 1; font-weight: 700; font-family: "Lato", sans-serif; }
.depo .quem b { color: var(--roxo-escuro); font-size: .9rem; }
.depo .quem > div span { display: block; font-size: .76rem; color: var(--texto-suave); }

/* ---------- Oferta (foto de fundo fixa — site rola por cima) ---------- */
.oferta {
  position: relative;
  background-color: var(--roxo-profundo);
  background-image:
    linear-gradient(260deg, rgba(45, 28, 47, .5) 0%, rgba(45, 28, 47, .18) 42%, rgba(45, 28, 47, .02) 70%),
    url("../img/oferta-bg.jpg");
  background-size: cover;
  background-position: 32% 22%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: clamp(4.5rem, 11vw, 9rem) 0;
}
.oferta .container { display: flex; justify-content: flex-end; }
.oferta-card {
  width: min(480px, 100%);
  background: rgba(255, 250, 251, .62);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  border-radius: var(--raio);
  padding: clamp(1.9rem, 4vw, 3rem);
  box-shadow: 0 34px 90px -34px rgba(30, 14, 32, .55);
  border: 1px solid rgba(255, 255, 255, .55);
}
.oferta .tag { display: inline-block; background: var(--verde); color: #fff; font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.1rem; }
.oferta h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); margin-bottom: .9rem; }
.oferta p { color: var(--texto-suave); }
.oferta ul { list-style: none; margin: 1rem 0 1.9rem; display: grid; gap: .75rem; }
.oferta li { display: flex; gap: .6rem; font-size: .95rem; }
.oferta li svg { width: 20px; height: 20px; stroke: var(--verde); flex: none; margin-top: .18rem; }
@media (max-width: 860px) {
  .oferta { background-attachment: scroll; background-position: center 12%; }
  .oferta .container { justify-content: center; }
  .oferta-card { width: 100%; }
}

/* ---------- Outros serviços (carrossel) ---------- */
.servicos { background: var(--nude); overflow: hidden; }
.serv-carrossel { width: 100vw; margin-left: calc(50% - 50vw); margin-top: clamp(1.5rem, 4vw, 2.6rem); }
.serv-track {
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 max(26px, calc((100vw - var(--container)) / 2 + 26px)) .5rem;
}
@media (min-width: 861px) { .serv-track { padding-inline: clamp(24px, 5vw, 80px); } }
.serv-track::-webkit-scrollbar { display: none; }
.serv-card {
  flex: none;
  width: clamp(190px, 44vw, 260px);
  margin: 0;
  position: relative;
  aspect-ratio: 3 / 4.2;
  border-radius: 14px;
  overflow: hidden;
  background: #2a1c2b;
  isolation: isolate;
}
.serv-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.serv-card:hover > img { transform: scale(1.06); }
.serv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26, 16, 26, .3) 0%, rgba(26, 16, 26, 0) 24%, rgba(26, 16, 26, .2) 48%, rgba(26, 16, 26, .88) 100%);
  transition: background .35s ease;
}
.serv-card:hover::after { background: linear-gradient(180deg, rgba(26, 16, 26, .5) 0%, rgba(26, 16, 26, .32) 32%, rgba(26, 16, 26, .94) 100%); }
.serv-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: .95rem 1rem 1.05rem; }
.serv-nome { margin: 0; font-family: "Lato", sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.22; color: #fff; }
.serv-desc { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.serv-desc > p { overflow: hidden; margin: 0; font-size: .76rem; line-height: 1.45; color: rgba(255, 255, 255, .85); opacity: 0; transition: opacity .3s ease; }
.serv-card:hover .serv-desc { grid-template-rows: 1fr; }
.serv-card:hover .serv-desc > p { opacity: 1; padding-top: .45rem; }
@media (hover: none) {
  .serv-card::after { background: linear-gradient(180deg, rgba(26, 16, 26, .45) 0%, rgba(26, 16, 26, .3) 32%, rgba(26, 16, 26, .92) 100%); }
  .serv-desc { grid-template-rows: 1fr; }
  .serv-desc > p { opacity: 1; padding-top: .45rem; }
}
@media (max-width: 720px) { .serv-card { width: clamp(150px, 40vw, 200px); } }
/* Desktop: exatamente 4 cards por vez */
/* Desktop: exatamente 4 fotos por vez, ocupando a largura da tela */
@media (min-width: 861px) { .serv-card { width: calc((100vw - 2 * clamp(24px, 5vw, 80px) - 3 * .8rem) / 4); } }

.serv-ctrl { display: flex; align-items: center; gap: .9rem; margin-top: 1.6rem; }
.serv-ctrl .prog { font-size: .78rem; color: var(--texto-suave); font-weight: 700; font-family: "Lato", sans-serif; letter-spacing: .04em; flex: none; }
.serv-bar { flex: 1; height: 2px; background: var(--roxo-suave); border-radius: 2px; overflow: hidden; }
.serv-bar i { display: block; height: 100%; width: 100%; background: var(--roxo); transform-origin: left; transform: scaleX(.15); transition: transform .25s ease; }
.serv-ctrl .hint { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--texto-suave); opacity: .65; flex: none; white-space: nowrap; }
.serv-ctrl button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--roxo-suave); background: transparent; color: var(--roxo-escuro);
  cursor: pointer; display: grid; place-items: center; flex: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.serv-ctrl button:hover { background: var(--roxo); border-color: var(--roxo); color: #fff; }
.serv-ctrl button svg { width: 17px; height: 17px; }
.serv-nota { margin-top: 1rem; font-size: .74rem; color: var(--texto-suave); opacity: .7; }
.servicos .cta-final { text-align: center; margin-top: 2.6rem; }
@media (max-width: 620px) { .serv-ctrl .hint { display: none; } }

/* ---------- FAQ ---------- */
.faq { background: var(--branco); overflow-x: clip; }
.faq-max { max-width: 1040px; margin: 0 auto; }
.faq-cols { display: grid; gap: 2.6rem; }
.faq-grupo h3 { font-size: 1.28rem; margin-bottom: 1.3rem; text-align: center; }
@media (min-width: 861px) {
  .faq-cols { grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
  .faq-grupo h3 { text-align: left; }
}
@media (max-width: 860px) { .faq-max { max-width: 800px; } }
.faq details { background: var(--nude); border: 1px solid var(--roxo-suave); border-radius: 14px; margin-bottom: .8rem; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 1.15rem 1.35rem; font-weight: 700;
  font-family: "Lato", sans-serif; color: var(--roxo-escuro); list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; font-size: .97rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--roxo); flex: none; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 1.35rem 1.25rem; font-size: .93rem; color: var(--texto-suave); line-height: 1.65; }

/* ---------- Localização ---------- */
.local { background: var(--nude); overflow-x: clip; }
.local-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: stretch; }
.local-info { max-width: 460px; }
.local-info h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: .2rem 0 .8rem; }
.local-info > p { color: var(--texto-suave); }

.local-end {
  margin-top: 1.8rem; padding-left: 1.1rem;
  border-left: 3px solid var(--roxo);
}
.local-end-bairro { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--roxo-claro); font-weight: 700; margin: 0; }
.local-end-rua { font-family: "Lato", sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--roxo-escuro); margin: .3rem 0 .4rem; }
.local-end .end-sub { color: var(--texto-suave); font-size: .95rem; margin: 0; }
.local-end .end-meta { margin-top: 1rem; font-size: .88rem; color: var(--texto-suave); display: flex; align-items: center; gap: .55rem; }
.local-end .end-meta svg { width: 16px; height: 16px; stroke: var(--roxo); flex: none; }
.local-end .end-rota { display: inline-block; margin-top: 1.1rem; font-weight: 700; font-size: .9rem; color: var(--roxo-escuro); border-bottom: 2px solid var(--roxo-claro); padding-bottom: 2px; }
.local-end .end-rota:hover { color: var(--roxo); border-color: var(--roxo); }

.local-mapa {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--roxo-suave); background: #fff; min-height: 420px;
  box-shadow: var(--sombra-suave);
}
.local-mapa .mapa-fallback { position: absolute; inset: 0; display: grid; place-items: center; font-weight: 700; font-size: .9rem; color: var(--roxo-escuro); text-align: center; padding: 1rem; }
.local-mapa iframe { position: relative; width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.35) saturate(.9); }
.local-wpp { margin-top: 1.6rem; width: 100%; justify-content: center; }

@media (max-width: 860px) {
  .local-grid { grid-template-columns: 1fr; }
  .local-info { max-width: none; }
  .local-mapa, .local-mapa iframe { min-height: 320px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--roxo-profundo); color: #f3e7f2; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.site-footer .cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.6rem; }
.site-footer img.logo-f { height: 72px; width: auto; margin-bottom: .9rem; }
.site-footer h4 { color: #fff; font-size: .92rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; font-family: "Lato", sans-serif; font-weight: 700; }
.site-footer a, .site-footer p { color: #e7d3e6; font-size: .9rem; line-height: 1.85; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom { border-top: 1px solid rgba(255, 255, 255, .15); margin-top: 2.8rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .8rem; color: #c9aec8; }
@media (max-width: 760px) {
  .site-footer .cols { grid-template-columns: 1fr; gap: 1.9rem; text-align: center; }
  .site-footer .cols > div { display: flex; flex-direction: column; align-items: center; }
  .site-footer .bottom { justify-content: center; text-align: center; }
}

/* ---------- Coverflow (antes e depois) ---------- */
.cf {
  --cf-w: clamp(230px, 25vw, 390px);
  --cf-h: calc(var(--cf-w) * 1.2);
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(2.5rem, 5.5vw, 4.5rem);
}
.cf-frame {
  position: relative;
  perspective: calc(var(--cf-w) * 3);
  overflow: hidden;
  padding: 2.5rem 0 5.5rem;
  outline: none;
  cursor: grab;
  touch-action: pan-y;
}
.cf-frame:active { cursor: grabbing; }
.cf-frame:focus-visible { outline: 2px solid var(--roxo-claro); outline-offset: -4px; }
.cf-stage { position: relative; height: var(--cf-h); transform-style: preserve-3d; user-select: none; }
.cf-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: var(--cf-w);
  height: var(--cf-h);
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--roxo-suave);
  box-shadow: 0 16px 40px -18px rgba(77, 51, 80, .28);
  will-change: transform, opacity;
}
.cf-card img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

/* ---------- Botão flutuante ---------- */
.wpp-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: var(--verde); display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .7); animation: pulse 2.6s infinite; }
.wpp-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Reveal lateral (entra da esquerda / da direita) */
.reveal-left, .reveal-right { opacity: 0; transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1); }
.reveal-left { transform: translateX(-52px); }
.reveal-right { transform: translateX(52px); }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }

/* Reveal com zoom sutil (entra crescendo) */
.reveal-scale { opacity: 0; transform: scale(.93); transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1); }
.reveal-scale.in { opacity: 1; transform: none; }

/* Reveal em cascata (grids) */
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .07s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .14s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .21s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .35s; }

/* ---------- Barra de progresso de rolagem ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; pointer-events: none; }
.scroll-progress > span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--roxo-claro), var(--roxo)); }

/* ---------- Header encolhe ao rolar ---------- */
.site-header .container, .site-header .logo img { transition: height .3s ease; }
.site-header.shrunk .container { height: 66px; }
.site-header.shrunk .logo img { height: 42px; }

/* ---------- Hero: entrada em cascata + zoom da foto ---------- */
html.js .hero-text > h1,
html.js .hero-text > .sub,
html.js .hero-text > .btn,
html.js .hero-text > .hero-badges,
html.js .hero-media {
  opacity: 0; transform: translateY(26px);
  transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1);
}
body.pronto .hero-text > h1 { opacity: 1; transform: none; transition-delay: .08s; }
body.pronto .hero-text > .sub { opacity: 1; transform: none; transition-delay: .22s; }
body.pronto .hero-text > .btn { opacity: 1; transform: none; transition-delay: .34s; }
body.pronto .hero-text > .hero-badges { opacity: 1; transform: none; transition-delay: .46s; }
body.pronto .hero-media { opacity: 1; transform: none; transition-delay: .16s; }
.hero-media .frame img { animation: hero-zoom 2s cubic-bezier(.22, .61, .36, 1) both; }
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* ---------- Micro-interações de hover ---------- */
.card-beneficio { transition: transform .3s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease, border-color .3s ease; }
.card-beneficio:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(77, 51, 80, .4); border-color: var(--roxo-claro); }
.card-beneficio .ic { transition: transform .3s cubic-bezier(.22, .61, .36, 1), background .3s ease; }
.card-beneficio:hover .ic { transform: rotate(-6deg) scale(1.08); background: var(--roxo-suave); }
.mini-dif { transition: transform .3s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease; }
.mini-dif:hover { transform: translateY(-4px); }
.mini-dif .ic { transition: transform .3s cubic-bezier(.22, .61, .36, 1); }
.mini-dif:hover .ic { transform: rotate(-6deg) scale(1.08); }

/* Setinha "→" desliza no hover */
.seta { display: inline-block; font-style: normal; transition: transform .28s cubic-bezier(.22, .61, .36, 1); }
a:hover .seta { transform: translateX(5px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > *, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .band-dif::before { animation: none; }
  .wpp-float, .badge-top, .badge-bottom { animation: none; }
  .btn:hover { transform: none; }
  html.js .hero-text > *, html.js .hero-media { opacity: 1 !important; transform: none !important; }
  .hero-media .frame img { animation: none; }
  .card-beneficio:hover, .mini-dif:hover, .card-beneficio:hover .ic, .mini-dif:hover .ic { transform: none; }
}

/* ============================================================
   AJUSTES SÓ PARA MOBILE  (bloco no fim: vence por ordem de origem)
   ============================================================ */
@media (max-width: 560px) {
  /* Hero */
  .hero h1 { font-size: 2.4rem; }
  .hero p.sub { font-size: .85rem; line-height: 1.55; }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: .6rem;
    width: 100%;
  }
  .hero-badges .sep { display: none; }
  .hero-badges .b { align-items: flex-start; }
  .hero-badges .b::before {
    content: "";
    flex: none;
    width: 2px;
    height: 18px;
    border-radius: 1px;
    background: var(--roxo-claro);
  }

  /* Títulos das demais seções — +~5pt */
  .identifica-head h2 { font-size: 1.9rem; }
  .section-head h2 { font-size: 2.2rem; }
  .sobre h2 { font-size: 2.2rem; }
  .oferta h2 { font-size: 2.1rem; }
  .local-info h2 { font-size: 2.3rem; }

  /* "avaliações reais no Google" — ~2pt menor */
  .google-badge { font-size: .77rem; padding: .6rem 1.2rem; }

  /* "O que a sua pele ganha" — coverflow: imagem no máximo, só um fio dos lados */
  .cf { --cf-w: 82vw; margin-top: clamp(1.8rem, 5vw, 2.6rem); }
  .cf-frame { padding: 1.8rem 0 30px; }
  .beneficios { padding-bottom: 1.2rem; }

  /* "Muito mais que limpeza de pele" — cards maiores (um pouco menores que o coverflow) */
  .serv-card { width: 73vw; aspect-ratio: 3 / 3.9; }
  .serv-track { gap: .7rem; }

  /* Oferta — foto de fundo (versão editada, só mobile), base dela dissolvendo no fim */
  .oferta {
    padding-top: calc(108vw - 8px);
    background-color: var(--nude);
    background-image:
      linear-gradient(rgba(254, 242, 242, 0) 0%, rgba(254, 242, 242, 0) 36%, var(--nude) 54%),
      url("../img/oferta-bg-mobile.jpg");
    background-size: 100% 100%, 106vw auto;
    background-position: top, center -25px;
    background-repeat: no-repeat, no-repeat;
  }
  .oferta .container { padding-inline: 14px; }
  .oferta-card { background: rgba(255, 250, 251, .72); }
  /* menos espaço vago entre a caixa de oferta e a seção de baixo */
  .oferta { padding-bottom: calc(3.75rem - 10px); }
  .servicos { padding-top: calc(3.75rem - 10px); }

  /* "Por que escolher a Dra. Emilly" — baralho de cards sobrepostos (arrasta pra trocar) */
  .grid-band.js-stack {
    position: relative;
    display: block;
    width: min(300px, 82vw);
    height: 232px;
    max-width: none;
    margin: .5rem auto 0;
    overflow: visible;
  }
  .grid-band.js-stack .mini-dif {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 1 !important;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: .9rem;
    align-content: center;
    align-items: start;
    padding: 1.4rem;
    background: rgba(255, 255, 255, .74);
    will-change: transform;
    transition: transform .44s cubic-bezier(.2, .8, .25, 1), opacity .3s ease;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
    cursor: grab;
  }
  .grid-band.js-stack .mini-dif > div { min-width: 0; }
  .grid-band.js-stack .mini-dif.is-drag { transition: none; cursor: grabbing; }
  .grid-band.js-stack .mini-dif.is-flying { transition: transform .34s ease, opacity .34s ease; }
  .grid-band.js-stack .mini-dif:hover { transform: none; }

  .dif-dots { display: flex; justify-content: center; gap: 7px; margin-top: 1.4rem; }
  .dif-dots button {
    height: 6px; width: 6px; padding: 0; border: 0; border-radius: 99px;
    background: var(--roxo-suave); cursor: pointer;
    transition: width .3s ease, background .3s ease;
  }
  .dif-dots button.on { width: 20px; background: var(--roxo); }
  .dif-hint { text-align: center; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--texto-suave); opacity: .6; margin-top: .7rem; }
}
