/* ============================================================
   JULIANA ROCHA ESTÉTICA AVANÇADA — style.css
   Versão consolidada — sem duplicações, sem CSS quebrado
   Estrutura: tokens → reset → base → layout → header → hero
              → sections → components → utilities → responsive
   ============================================================ */


/* ── TOKENS & VARIÁVEIS ─────────────────────────────────── */

:root {
  --bg:             #f9f4ef;
  --bg-soft:        #f2e9df;
  --bg-warm:        #ede1d4;
  --surface:        rgba(255,253,250,.82);
  --surface-strong: #fffdfa;

  --text:           #100c08;
  --text-mid:       #3d2e25;
  --text-soft:      #7a6659;

  --line:           rgba(60,40,28,.10);
  --line-mid:       rgba(60,40,28,.17);

  --brown:          #2e1f16;
  --brown-mid:      #4a3328;
  --gold:           #c4975e;
  --gold-deep:      #96652e;
  --gold-pale:      rgba(196,151,94,.12);
  --gold-light:     rgba(196,151,94,.22);

  --black:          #0c0906;
  --black-rich:     #1a1209;
  --black-surface:  rgba(18,11,6,.96);

  --shadow-xs: 0 2px 8px rgba(16,8,4,.06);
  --shadow-sm: 0 8px 28px rgba(16,8,4,.08);
  --shadow-md: 0 18px 52px rgba(16,8,4,.12);
  --shadow-lg: 0 32px 80px rgba(16,8,4,.18);
  --shadow-xl: 0 48px 120px rgba(16,8,4,.22);

  --radius-xs:   8px;
  --radius-sm:   16px;
  --radius-md:   24px;
  --radius-lg:   32px;
  --radius-xl:   44px;
  --radius-pill: 999px;

  --container:     1200px;
  --section-space: clamp(72px,7vw,108px);

  --serif: "Cormorant Garamond","Garamond",Georgia,serif;
  font-display: swap;
  --sans:  "Jost",system-ui,sans-serif;

  --ease-out:     cubic-bezier(.22,.61,.36,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
  --ease-elegant: cubic-bezier(.4,0,.2,1);

  --t-fast: 150ms var(--ease-elegant);
  --t-base: 240ms var(--ease-out);
  --t-slow: 400ms var(--ease-out);
}


/* ── RESET ──────────────────────────────────────────────── */

*,*::before,*::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(196,151,94,.09) 0%, transparent 30%),
    radial-gradient(ellipse at 100% 70%, rgba(196,151,94,.06) 0%, transparent 28%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img, picture { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
ul, ol { padding: 0; list-style: none; }

::selection { background: rgba(196,151,94,.20); color: var(--brown); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,var(--gold),var(--gold-deep));
  border-radius: 3px;
}


/* ── ACESSIBILIDADE ─────────────────────────────────────── */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--text); color: #fff;
  padding: 12px 18px; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 16px; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 0 4px rgba(196,151,94,.15);
}


/* ── LAYOUT ─────────────────────────────────────────────── */

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

.section-soft {
  background: linear-gradient(180deg,rgba(255,255,255,.36) 0%,rgba(255,255,255,.10) 100%);
}
.section-dark {
  background: linear-gradient(148deg,var(--black-rich) 0%,#261510 50%,var(--black) 100%);
  color: rgba(255,252,246,.92);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent 5%,var(--gold),rgba(196,151,94,.3) 70%,transparent);
  opacity: .5;
}
.section-dark::after {
  content: "";
  position: absolute; bottom: -100px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(196,151,94,.07);
  pointer-events: none;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px,340px);
  gap: 24px 64px;
  align-items: end;
  margin-bottom: clamp(36px,4.5vw,58px);
}
.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem,4vw,4.4rem);
  line-height: .95;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.section-center { text-align: center; margin-top: 40px; }


/* ── TIPOGRAFIA ─────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 1px;
  background: linear-gradient(90deg,var(--gold-deep),rgba(196,151,94,.3));
  flex-shrink: 0;
}
.eyebrow-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
  animation: pulse-dot 2.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.65); }
}
.section-sub {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: .97rem;
  max-width: 60ch;
}


/* ── BOTÕES ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 36px;
  border-radius: var(--radius-pill);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  line-height: 1;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-fast), border-color var(--t-fast);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  pointer-events: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(145deg,#d4a870 0%,var(--gold-deep) 55%,#8a6030 100%);
  color: #fff8f0;
  box-shadow: 0 12px 32px rgba(150,101,46,.32), 0 4px 12px rgba(150,101,46,.20), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary::before {
  content: "";
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.14),transparent);
  transform: skewX(-20deg);
  transition: left .55s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(150,101,46,.40), 0 6px 16px rgba(150,101,46,.24), inset 0 1px 0 rgba(255,255,255,.18);
  background: linear-gradient(145deg,#dbb278 0%,#b88645 55%,#8a6030 100%);
}
.btn-primary:hover::before { left: 150%; }

.btn-outline {
  background: transparent;
  border-color: rgba(46,31,22,.24);
  color: var(--text);
  padding: 0 32px;
}
.btn-outline:hover {
  background: rgba(46,31,22,.06);
  border-color: var(--brown);
  box-shadow: 0 6px 20px rgba(16,8,4,.08);
}


/* ── HEADER ─────────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249,244,239,.88);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border-bottom: 1px solid rgba(46,31,22,.08);
  transition: box-shadow .35s var(--ease-elegant), background .35s;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(46,31,22,.07), 0 4px 28px rgba(16,8,4,.08);
  background: rgba(249,244,239,.96);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.75rem; font-weight: 500;
  letter-spacing: -.01em; color: var(--text); flex-shrink: 0;
  position: relative; padding-bottom: 2px;
}
.nav-logo::after {
  content: "";
  position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: linear-gradient(90deg,var(--gold-deep),transparent 70%);
  opacity: .45;
}
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: .86rem; font-weight: 500; letter-spacing: .01em;
  color: var(--text-mid);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-menu a:hover { color: var(--text); background: rgba(46,31,22,.05); }
.nav-menu a::after {
  content: "";
  position: absolute; bottom: 2px; left: 12px; right: 12px; height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex !important; align-items: center; gap: 7px;
  padding: 10px 22px !important;
  background: var(--black-rich) !important;
  color: rgba(255,253,248,.92) !important;
  border-radius: var(--radius-pill) !important;
  margin-left: 8px; font-size: .87rem !important; letter-spacing: .025em !important;
  box-shadow: 0 4px 16px rgba(16,8,4,.22) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  line-height: 1;
  transition: background var(--t-fast), box-shadow var(--t-fast) !important;
}
.nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; display: block; }
.nav-cta:hover { background: var(--brown) !important; box-shadow: 0 6px 22px rgba(16,8,4,.28) !important; transform: none !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 6px; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background var(--t-fast);
}
.nav-toggle:hover { background: rgba(46,31,22,.06); }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}


/* ── HERO ───────────────────────────────────────────────── */

.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px,5.5vw,80px) 0 clamp(44px,5vw,72px);
  background:
    radial-gradient(ellipse at 6% 18%,rgba(220,200,172,.82) 0%,transparent 32%),
    radial-gradient(ellipse at 88% 78%,rgba(210,190,160,.42) 0%,transparent 28%),
    linear-gradient(110deg,#f7f2e9 0%,#ede5d8 52%,#e4d9cb 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .28; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}
.hero::after {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(196,151,94,.11); pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.4fr);
  gap: clamp(32px,4vw,60px);
  align-items: stretch;
}
.hero-copy {
  display: flex; flex-direction: column;
  padding-right: clamp(20px,4vw,60px);
}
.hero .eyebrow { color: var(--gold-deep); margin-bottom: 20px; }

.hero-copy h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(4rem,7vw,7rem);
  line-height: .88; letter-spacing: -.04em;
  color: var(--text); text-wrap: balance;
  max-width: 11ch; margin-bottom: 20px;
}
.hero-copy h1 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }

.hero-text {
  color: var(--text-mid); font-size: clamp(.98rem,1.5vw,1.1rem);
  line-height: 1.9; max-width: 44ch; margin-bottom: 32px; font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.hero-microcopy { font-size: .76rem; color: var(--text-soft); letter-spacing: .07em; margin-bottom: 28px; opacity: .8; }

.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.hero-proof-item {
  padding: 14px 16px;
  background: rgba(255,253,250,.82);
  border: 1px solid rgba(46,31,22,.07);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(16,8,4,.05), inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.hero-proof-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(16,8,4,.10); }
.hero-proof-item strong {
  display: block; font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600; color: var(--brown);
  line-height: 1.1; letter-spacing: -.02em;
}
.hero-proof-item span {
  display: block; margin-top: 5px; font-size: .66rem;
  text-transform: uppercase; letter-spacing: .09em; color: var(--text-soft);
}

.hero-visual { position: relative; min-width: 0; display: flex; align-items: stretch; width: 100%; }
.hero-frame {
  position: relative; width: 100%; height: 100%;
  min-height: 440px; max-height: 680px;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow:
    0 2px 0 1px rgba(255,253,250,.55),
    0 36px 90px rgba(16,8,4,.22),
    0 10px 32px rgba(16,8,4,.14),
    inset 0 0 0 1px rgba(255,255,255,.10);
  isolation: isolate; z-index: 1;
}
.hero-media, .hero-photo { display: block; width: 100%; height: 100%; }
.hero-photo { object-fit: cover; object-position: center 20%; }
.hero-frame::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top,rgba(16,8,4,.22) 0%,rgba(16,8,4,.04) 55%,transparent 100%);
  z-index: 2; pointer-events: none;
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
  z-index: 3; pointer-events: none;
}

@media (min-width:1024px) and (prefers-reduced-motion:no-preference) {
  .hero-photo { animation: hero-ken-burns 12s ease-in-out both; will-change: transform; }
  @keyframes hero-ken-burns { from { transform: scale(1); } to { transform: scale(1.04); } }
}

.hero-badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 4;
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 18px; border-radius: var(--radius-md);
  background: rgba(255,251,246,.94); border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 12px 36px rgba(16,8,4,.16);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.hero-badge strong { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-deep); line-height: 1; }
.hero-badge span { font-size: .92rem; font-weight: 600; color: var(--text); margin-top: 2px; }

.hero-rating {
  position: absolute; right: 20px; bottom: 20px; z-index: 4;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  padding: 11px 15px; border-radius: var(--radius-md);
  background: rgba(255,251,246,.94); border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 12px 36px rgba(16,8,4,.16);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); text-align: right;
}
.hero-rating-stars { font-size: .84rem; color: var(--gold-deep); letter-spacing: .06em; line-height: 1; }
.hero-rating span { font-size: .7rem; font-weight: 600; color: var(--text-soft); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; }


/* ── STATS BAR ──────────────────────────────────────────── */

.stats-bar {
  background: var(--black-rich); color: rgba(255,252,246,.9);
  border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04);
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold),rgba(196,151,94,.4),transparent);
  opacity: .55;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stats-grid article {
  padding: 26px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--t-fast);
}
.stats-grid article:hover { background: rgba(255,255,255,.03); }
.stats-grid article:last-child { border-right: 0; }
.stats-grid strong { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; color: var(--gold); letter-spacing: -.02em; line-height: 1; }
.stats-grid span { display: block; margin-top: 8px; font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,252,246,.42); }


/* ── SOBRE ───────────────────────────────────────────────── */

.about-premium-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(40px,6vw,96px);
  align-items: center;
}
.about-foto-col { position: relative; }
.about-foto-frame {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl); background: var(--bg-warm);
}
.about-foto-img {
  display: block; width: 100%; height: auto;
  object-fit: cover; object-position: center top;
  filter: grayscale(1) contrast(1.08) brightness(1.02);
  transition: transform .6s var(--ease-out);
}
.about-foto-frame:hover .about-foto-img { transform: scale(1.03); }
.about-foto-badge {
  position: absolute; bottom: 20px; left: 20px;
  padding: 12px 20px;
  background: rgba(255,251,246,.95); border: 1px solid rgba(196,151,94,.25);
  border-radius: var(--radius-md); backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(16,8,4,.14);
  display: flex; flex-direction: column; gap: 2px;
}
.about-foto-badge strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; color: var(--gold-deep); line-height: 1; letter-spacing: -.02em; }
.about-foto-badge span { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--text-soft); }

.about-texto-col { display: flex; flex-direction: column; gap: 0; }
.about-texto-col h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem,3.5vw,3.8rem);
  line-height: .94; letter-spacing: -.03em;
  color: var(--text); text-wrap: balance; margin-bottom: 22px;
}
.about-lead { color: var(--text-mid); font-size: clamp(.95rem,1.2vw,1.05rem); line-height: 1.9; font-weight: 300; margin-bottom: 28px; }

.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.about-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: var(--gold-pale);
  border: 1px solid var(--gold-light); border-radius: var(--radius-pill);
  font-size: .78rem; font-weight: 600; color: var(--gold-deep); letter-spacing: .04em;
}
.about-chip::before { content: "✦"; font-size: .55rem; color: var(--gold); }

.formacao-block { margin: 0 0 28px; padding: 20px 22px; background: rgba(196,151,94,.06); border: 1px solid rgba(196,151,94,.16); border-radius: var(--radius-md); }
.formacao-title { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.formacao-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.formacao-list li { display: flex; align-items: baseline; gap: 10px; font-size: .88rem; color: var(--text-mid); line-height: 1.5; }
.formacao-icon { font-size: .55rem; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }

.about-note {
  padding: clamp(30px,4vw,48px);
  background: linear-gradient(150deg,var(--black-rich) 0%,#2a1a10 100%);
  border: 1px solid rgba(196,151,94,.14); border-radius: 30px; box-shadow: var(--shadow-md);
  color: rgba(255,252,246,.88); position: relative; overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.about-note:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.about-note::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,var(--gold),rgba(196,151,94,.3),transparent 80%); }
.about-note::after { content: ""; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; border: 1px solid rgba(196,151,94,.08); pointer-events: none; }

.note-kicker { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); margin-bottom: 20px; opacity: .9; }
.about-note blockquote { font-family: var(--serif); font-size: clamp(1.9rem,3vw,3rem); font-weight: 300; line-height: 1.1; color: rgba(255,252,246,.96); margin-bottom: 22px; letter-spacing: -.02em; text-wrap: balance; position: relative; }
.about-note blockquote::before { content: "\201C"; font-size: 6rem; line-height: 0; vertical-align: -.45em; color: var(--gold); opacity: .35; margin-right: 4px; font-weight: 300; }
.about-note p { color: rgba(255,252,246,.55); line-height: 1.8; font-size: .95rem; font-weight: 300; }

.about-diferenciais { display: flex; flex-direction: column; gap: 0; margin: 24px 0 28px; background: rgba(255,255,255,.04); border: 1px solid rgba(196,151,94,.12); border-radius: var(--radius-md); overflow: hidden; }
.diferencial-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; border-bottom: 1px solid rgba(196,151,94,.08); }
.diferencial-item:last-child { border-bottom: none; }
.diferencial-item strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: rgba(255,252,246,.92); line-height: 1.2; }
.diferencial-item span { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,252,246,.45); text-align: right; }

.note-signature { display: inline-block; margin-top: 24px; font-family: var(--serif); font-size: .82rem; font-style: italic; color: var(--gold); opacity: .7; padding-top: 18px; border-top: 1px solid rgba(196,151,94,.18); width: 100%; }

/* Legado about-grid */
.about-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; align-items: start; }
.about-card { padding: clamp(30px,4vw,48px); background: var(--surface); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow-md); transition: transform var(--t-base), box-shadow var(--t-base); }
.about-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.about-card h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,3vw,3.2rem); line-height: 1.02; letter-spacing: -.02em; margin-bottom: 16px; text-wrap: balance; }
.about-card p { color: var(--text-soft); line-height: 1.84; }


/* ── SERVIÇOS ────────────────────────────────────────────── */

.services-tabs { display: flex; gap: 8px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.services-tab {
  padding: 12px 24px; font-family: var(--sans); font-size: .88rem; font-weight: 600;
  letter-spacing: .02em; color: var(--text-soft); background: transparent; border: none;
  border-bottom: 2px solid transparent; cursor: pointer; margin-bottom: -1px;
  transition: color var(--t-fast), border-color var(--t-fast);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.services-tab:hover { color: var(--text); }
.services-tab.is-active { color: var(--gold-deep); border-bottom-color: var(--gold-deep); background: rgba(196,151,94,.05); }
.services-panel { display: block; }
.services-panel.is-hidden { display: none; }

.services-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }

.service-card {
  padding: 28px 26px 26px;
  background: linear-gradient(165deg,rgba(255,253,250,.98) 0%,rgba(249,244,239,.95) 100%);
  border: 1px solid rgba(46,31,22,.07); border-radius: 22px;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 4px 16px rgba(16,8,4,.055), 0 1px 4px rgba(16,8,4,.04);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent 10%,rgba(196,151,94,.28) 50%,transparent 90%);
  opacity: 0; transition: opacity var(--t-base);
}
.service-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity: 0; transition: opacity var(--t-base); border-radius: 0 0 22px 22px;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 20px 52px rgba(16,8,4,.10), 0 6px 18px rgba(16,8,4,.07); border-color: rgba(196,151,94,.26); }
.service-card:hover::before, .service-card:hover::after { opacity: 1; }

.service-card-top { margin-bottom: 12px; }
.service-tag {
  display: inline-block; padding: 4px 11px;
  background: rgba(46,31,22,.05); border: 1px solid rgba(46,31,22,.09);
  border-radius: var(--radius-pill); font-size: .65rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.service-tag-gold { background: var(--gold-pale); border-color: rgba(196,151,94,.26); color: var(--gold-deep); }
.service-card:hover .service-tag { background: var(--gold-pale); border-color: rgba(196,151,94,.22); color: var(--gold-deep); }

.service-card h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; margin-bottom: 9px; color: var(--text); letter-spacing: -.018em; line-height: 1.08; transition: color var(--t-fast); }
.service-card:hover h3 { color: var(--gold-deep); }
.service-card p { color: var(--text-soft); line-height: 1.78; font-size: .91rem; font-weight: 300; }

.service-card-cta { background: linear-gradient(155deg,rgba(196,151,94,.12) 0%,rgba(196,151,94,.05) 100%); border-color: rgba(196,151,94,.22); }
.service-card-cta:hover { border-color: rgba(196,151,94,.40); box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 20px 52px rgba(16,8,4,.10), 0 6px 18px rgba(196,151,94,.10); }

.service-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  color: var(--gold-deep); font-weight: 600; font-size: .85rem; letter-spacing: .03em; opacity: .85;
  transition: opacity var(--t-fast), gap var(--t-base), color var(--t-fast);
}
.service-link::after { content: "→"; margin-left: 2px; transition: margin var(--t-base); }
.service-link:hover { opacity: 1; gap: 10px; color: var(--brown); }
.service-link:hover::after { margin-left: 4px; }


/* ── RESULTADOS ──────────────────────────────────────────── */

.results-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }

.result-card {
  position: relative; overflow: hidden; border-radius: 22px;
  border: 1px solid rgba(46,31,22,.07); background: var(--surface-strong);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 4px 16px rgba(16,8,4,.07);
  aspect-ratio: 4/5;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.result-card:hover { transform: translateY(-6px) scale(1.008); box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 22px 56px rgba(16,8,4,.12), 0 6px 18px rgba(16,8,4,.08); }
.result-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .55s var(--ease-out); filter: saturate(.94); }
.result-card:hover img { transform: scale(1.05); }

.result-card-footer {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: linear-gradient(to top,rgba(16,8,4,.70) 0%,rgba(16,8,4,.18) 65%,transparent 100%);
  z-index: 2;
}
.result-label {
  background: rgba(255,253,250,.94); color: var(--text); padding: 6px 13px;
  border-radius: var(--radius-pill); font-size: .78rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.5); backdrop-filter: blur(8px);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.result-card:hover .result-label { background: var(--gold-deep); color: #fff; border-color: transparent; }
.result-badge {
  display: inline-block; padding: 5px 10px;
  background: rgba(16,8,4,.72); color: rgba(255,252,246,.85);
  border-radius: var(--radius-pill); font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(8px);
}
.result-card > span { display: none; }


/* ── JOURNEY ─────────────────────────────────────────────── */

.journey {
  position: relative;
  background: linear-gradient(160deg,#f8f2ea 0%,#efe4d6 100%);
  padding: clamp(64px,7vw,96px) 0;
}
.journey::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 12% 18%,rgba(196,151,94,.12) 0%,transparent 26%), radial-gradient(circle at 90% 75%,rgba(196,151,94,.08) 0%,transparent 30%);
}
.journey::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(196,151,94,.22),transparent); }

.journey-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,72px); align-items: center; }
.journey-copy { max-width: 480px; }
.journey-copy h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem,3.8vw,4rem); line-height: .95; letter-spacing: -.03em; margin-bottom: 16px; text-wrap: balance; }
.journey-copy p { font-size: .95rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 28px; font-weight: 300; max-width: 40ch; }

.journey-card-wrap { position: relative; background: var(--surface-strong); border: 1px solid rgba(46,31,22,.09); border-radius: var(--radius-lg); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 20px 56px rgba(16,8,4,.10); }
.journey-card-wrap::before { content: ""; position: absolute; top: 0; left: 20px; right: 20px; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),rgba(196,151,94,.3),transparent); opacity: .5; border-radius: 1px; }

.journey-steps { padding: 0; list-style: none; }
.journey-steps li {
  display: grid; grid-template-columns: 38px 1fr; gap: 0 14px;
  padding: 16px 20px; border-bottom: 1px solid rgba(46,31,22,.07);
  align-items: center; border-left: 3px solid transparent;
  transition: background var(--t-fast), border-left-color var(--t-fast);
}
.journey-steps li:last-child { border-bottom: 0; }
.journey-steps li:hover { background: rgba(196,151,94,.05); border-left-color: var(--gold); }
.journey-steps li:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.journey-steps li:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

.journey-step-num {
  width: 38px; height: 38px; background: rgba(196,151,94,.12); border: 1px solid rgba(196,151,94,.22);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: .9rem; font-weight: 500; color: var(--gold-deep); flex-shrink: 0;
  transition: background var(--t-base), border-color var(--t-base);
}
.journey-steps li:hover .journey-step-num { background: rgba(196,151,94,.22); border-color: rgba(196,151,94,.40); }
.journey-step-body { display: flex; flex-direction: column; gap: 3px; }
.journey-steps strong { display: block; font-family: var(--sans); font-size: .95rem; font-weight: 600; line-height: 1.2; color: var(--text); }
.journey-steps span { display: block; font-size: .84rem; line-height: 1.6; color: var(--text-soft); font-weight: 300; }


/* ── DEPOIMENTOS ─────────────────────────────────────────── */

.testimonials-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; overflow: hidden; }

.testimonial-card {
  padding: 28px 26px;
  background: linear-gradient(160deg,rgba(255,253,250,.98) 0%,rgba(249,244,239,.94) 100%);
  border: 1px solid rgba(46,31,22,.07); border-radius: 22px;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 4px 18px rgba(16,8,4,.06), 0 1px 4px rgba(16,8,4,.04);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative; overflow: hidden; cursor: default; will-change: opacity, transform;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 20px 48px rgba(16,8,4,.10), 0 6px 16px rgba(16,8,4,.06); }
.testimonial-card::before { content: "\201C"; position: absolute; top: 12px; right: 18px; font-family: var(--serif); font-size: 4.5rem; line-height: 1; color: var(--gold); opacity: .13; font-weight: 300; }

.testimonial-stars { font-size: .9rem; color: var(--gold-deep); letter-spacing: .08em; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-card p { color: var(--text-mid); line-height: 1.82; font-size: .93rem; margin-bottom: 20px; font-style: italic; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(60,40,28,.07); margin-top: 4px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,rgba(196,151,94,.20),rgba(196,151,94,.32));
  border: 1.5px solid rgba(196,151,94,.32);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--gold-deep); flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(16,8,4,.08);
}
.testimonial-card strong { display: block; font-size: .94rem; color: var(--text); }
.testimonial-card .author-tag { display: block; margin-top: 3px; font-size: .78rem; color: var(--text-soft); }

/* Estados rotator */
.testimonial-card.is-fading-out { opacity: 0 !important; transform: translateY(8px) !important; transition: opacity .38s ease, transform .38s ease !important; }
.testimonial-card.is-fading-in { opacity: 0; transform: translateY(10px); transition: opacity .38s ease .04s, transform .38s ease .04s !important; }
.testimonial-card.is-fading-in.is-visible { opacity: 1; transform: none; }


/* ── FAQ ─────────────────────────────────────────────────── */

.faq-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 36px; align-items: start; }
.faq-copy h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem,3.6vw,3.8rem); line-height: 1; letter-spacing: -.025em; margin-bottom: 16px; text-wrap: balance; }
.faq-copy .section-sub { margin-bottom: 32px; }

.faq-list { display: grid; gap: 10px; }
.faq-list details {
  background: rgba(255,253,250,.9); border: 1px solid rgba(46,31,22,.07);
  border-radius: var(--radius-md); box-shadow: 0 1px 4px rgba(16,8,4,.04); overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-fast);
}
.faq-list details:hover { border-color: rgba(196,151,94,.24); box-shadow: 0 4px 16px rgba(16,8,4,.06); background: rgba(255,253,250,1); }
.faq-list details[open] { border-color: rgba(196,151,94,.30); box-shadow: 0 4px 16px rgba(16,8,4,.07); background: #fffdfa; }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 17px 20px;
  font-weight: 600; font-size: .93rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; user-select: none; letter-spacing: -.008em;
  transition: color var(--t-fast);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { color: var(--gold-deep); }
.faq-list summary::after { content: "+"; flex-shrink: 0; font-size: 1.15rem; font-weight: 300; color: var(--gold); transition: transform .28s var(--ease-out), color var(--t-fast); width: 22px; text-align: center; }
.faq-list details[open] summary::after { transform: rotate(45deg); color: var(--gold-deep); }
.faq-list .faq-body { padding: 14px 20px 18px; margin: 0 20px; border-top: 1px solid rgba(196,151,94,.09); color: var(--text-soft); line-height: 1.84; font-size: .91rem; font-weight: 300; }


/* ── CTA FINAL ───────────────────────────────────────────── */

.cta-final-box {
  max-width: 780px; margin-inline: auto; text-align: center;
  padding: clamp(44px,6.5vw,80px) clamp(28px,5.5vw,68px);
  background: rgba(255,252,246,.04); border: 1px solid rgba(255,252,246,.08);
  border-radius: var(--radius-xl); box-shadow: 0 32px 80px rgba(0,0,0,.28);
  position: relative; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.cta-final-box::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg,rgba(196,151,94,.25),rgba(196,151,94,.04) 40%,rgba(196,151,94,.18) 80%,rgba(196,151,94,.25));
  z-index: -1; opacity: .7;
}
.cta-final-box .eyebrow { color: rgba(196,151,94,.9); }
.cta-final-box .eyebrow::before { background: linear-gradient(90deg,rgba(196,151,94,.9),transparent); }
.cta-final-box h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem,4.2vw,4.4rem); line-height: .96; letter-spacing: -.025em; margin-bottom: 20px; text-wrap: balance; }
.cta-final-box p { color: rgba(255,252,246,.62); line-height: 1.82; max-width: 46ch; margin-inline: auto; margin-bottom: 40px; font-weight: 300; }
.cta-mini { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; margin-top: 28px; }
.cta-mini span { font-size: .76rem; color: rgba(255,252,246,.40); letter-spacing: .05em; }
.cta-mini span + span::before { content: "·"; margin-right: 10px; color: var(--gold); opacity: .6; }
.cta-pagamento { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); }
.cta-pagamento-label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,252,246,.35); margin-bottom: 10px; }
.cta-pagamento-items { display: flex; flex-wrap: wrap; gap: 8px; }
.cta-pagamento-items span { font-size: .78rem; font-weight: 500; color: rgba(255,252,246,.65); padding: 5px 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-pill); }


/* ── FOOTER ──────────────────────────────────────────────── */

.site-footer { background: var(--black); color: rgba(255,252,246,.65); padding-top: 72px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(196,151,94,.28),transparent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr .7fr; gap: 32px 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { display: inline-block; font-family: var(--serif); font-size: 1.85rem; font-weight: 400; color: rgba(255,252,246,.95); margin-bottom: 14px; letter-spacing: -.01em; }
.footer-tagline { font-size: .88rem; line-height: 1.72; color: rgba(255,252,246,.44); font-weight: 300; max-width: 36ch; }
.site-footer h3 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .20em; color: rgba(255,252,246,.34); margin-bottom: 16px; }
.footer-col a { display: block; margin-bottom: 11px; font-size: .9rem; color: rgba(255,252,246,.56); font-weight: 300; transition: color var(--t-fast), padding-left var(--t-base); }
.footer-col a:hover { color: rgba(255,252,246,.88); padding-left: 4px; }
.footer-location { display: block; margin-top: 6px; font-size: .82rem; color: rgba(255,252,246,.32); }
.footer-social { margin-top: 20px; }
.footer-social-link { display: inline-flex; align-items: center; gap: 9px; font-size: .86rem; color: rgba(255,252,246,.48); transition: color var(--t-fast); }
.footer-social-link:hover { color: rgba(255,252,246,.9); }
.footer-social-link svg { flex-shrink: 0; opacity: .6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0 36px; font-size: .82rem; color: rgba(255,252,246,.26); }


/* ── WHATSAPP FLUTUANTE ──────────────────────────────────── */

.floating-wa-wrap { position: fixed; right: 22px; bottom: 22px; z-index: 40; }
.floating-wa {
  position: relative; z-index: 2; width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg,#28d467,#20b854); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.38), 0 2px 8px rgba(0,0,0,.16);
  transition: transform .24s var(--ease-spring), box-shadow var(--t-base);
  border: 1.5px solid rgba(255,255,255,.15);
}
.floating-wa:hover { transform: scale(1.09) translateY(-2px); box-shadow: 0 14px 42px rgba(37,211,102,.46); }
.floating-wa svg { width: 27px; height: 27px; fill: currentColor; }
.floating-wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: 1; animation: wa-pulse 2.6s ease-out infinite; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(1.6); opacity: 0; } 100% { transform: scale(1.6); opacity: 0; } }


/* ── REVEAL ─────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

.services-grid .service-card:nth-child(1) { transition-delay:.00s; }
.services-grid .service-card:nth-child(2) { transition-delay:.06s; }
.services-grid .service-card:nth-child(3) { transition-delay:.12s; }
.services-grid .service-card:nth-child(4) { transition-delay:.18s; }
.services-grid .service-card:nth-child(5) { transition-delay:.24s; }
.services-grid .service-card:nth-child(6) { transition-delay:.30s; }
.services-grid .service-card:nth-child(7) { transition-delay:.36s; }
.services-grid .service-card:nth-child(8) { transition-delay:.40s; }
.services-grid .service-card:nth-child(9) { transition-delay:.44s; }
.testimonials-grid .testimonial-card:nth-child(1) { transition-delay:.00s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay:.10s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay:.20s; }
.results-grid .result-card:nth-child(1) { transition-delay:.00s; }
.results-grid .result-card:nth-child(2) { transition-delay:.08s; }
.results-grid .result-card:nth-child(3) { transition-delay:.16s; }


/* ── PÁGINAS LEGAIS ──────────────────────────────────────── */

.legal-body { background: linear-gradient(160deg,#faf5ef 0%,#f1e7db 100%); min-height: 100vh; }
.legal-main { padding: 52px 0 80px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; color: var(--text-soft); font-weight: 500; font-size: .9rem; transition: color var(--t-fast), gap var(--t-base); }
.legal-back::before { content: "←"; }
.legal-back:hover { color: var(--text); gap: 12px; }
.legal-shell { background: rgba(255,253,250,.88); border: 1px solid rgba(46,31,22,.09); border-radius: var(--radius-xl); box-shadow: 0 24px 64px rgba(16,8,4,.09); padding: clamp(32px,5vw,56px); }
.legal-hero-head { padding-bottom: 36px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.legal-hero-head h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.8rem,5vw,4.8rem); line-height: .95; letter-spacing: -.02em; margin-bottom: 14px; }
.legal-hero-head p { color: var(--text-soft); max-width: 52ch; line-height: 1.78; }
.legal-updated { display: inline-block; font-size: .78rem; color: var(--text-soft); background: var(--gold-pale); border: 1px solid rgba(196,151,94,.18); border-radius: var(--radius-pill); padding: 5px 14px; margin-bottom: 32px; }
.legal-toc { background: rgba(196,151,94,.07); border: 1px solid rgba(196,151,94,.16); border-radius: var(--radius-md); padding: 22px 26px; margin-bottom: 40px; }
.legal-toc h2 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-deep); margin-bottom: 14px; }
.legal-toc ol { list-style: decimal; padding-left: 20px; display: grid; gap: 6px; }
.legal-toc li a { font-size: .9rem; color: var(--text-mid); transition: color var(--t-fast); }
.legal-toc li a:hover { color: var(--text); }
.legal-section { padding: 32px 0; border-bottom: 1px solid var(--line); }
.legal-section:last-of-type { border-bottom: 0; }
.legal-section h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem,2.2vw,2rem); letter-spacing: -.01em; margin-bottom: 14px; color: var(--text); display: flex; align-items: baseline; gap: 10px; }
.legal-section h2 .section-num { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-deep); flex-shrink: 0; }
.legal-section p { color: var(--text-mid); line-height: 1.84; font-size: .97rem; margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: none; display: grid; gap: 8px; margin: 14px 0; }
.legal-section ul li { display: flex; gap: 10px; align-items: baseline; font-size: .95rem; color: var(--text-mid); line-height: 1.7; }
.legal-section ul li::before { content: "✦"; font-size: .6rem; color: var(--gold-deep); flex-shrink: 0; }
.legal-highlight { padding: 20px 24px; background: rgba(196,151,94,.08); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 18px 0; }
.legal-highlight p { color: var(--text-mid) !important; margin: 0 !important; }
.legal-contact-box { margin-top: 36px; padding: 26px 30px; background: linear-gradient(160deg,rgba(196,151,94,.10),rgba(196,151,94,.04)); border: 1px solid rgba(196,151,94,.20); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.legal-contact-box p { color: var(--text-mid); font-size: .97rem; line-height: 1.6; margin: 0; }

/* Social proof strip (compatibilidade) */
.social-proof-strip { background: var(--surface-strong); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(22px,3vw,38px) 0; }
.sps-inner { display: flex; align-items: center; gap: clamp(20px,3vw,48px); flex-wrap: wrap; }
.sps-rating { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.sps-stars { font-size: 1.1rem; color: var(--gold-deep); letter-spacing: .08em; line-height: 1; }
.sps-rating-text strong, .sps-number strong { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--text); line-height: 1; letter-spacing: -.03em; }
.sps-rating-text span, .sps-number span { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-soft); margin-top: 4px; display: block; }
.sps-divider { width: 1px; height: 48px; flex-shrink: 0; background: var(--line); }
.sps-quote { flex: 1; min-width: 200px; }
.sps-quote p { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--text-mid); line-height: 1.55; font-weight: 300; margin-bottom: 6px; }
.sps-quote span { font-size: .72rem; color: var(--text-soft); letter-spacing: .06em; text-transform: uppercase; }
.sps-cta { flex-shrink: 0; margin-left: auto; }


/* ── RESPONSIVIDADE ─────────────────────────────────────── */

@media (max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width:980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy { order: 1; padding-right: 0; }
  .hero-visual { order: 2; max-width: 100%; justify-content: center; }
  .hero-copy h1 { max-width: 10ch; font-size: clamp(3.2rem,10vw,5rem); }
  .hero-frame { aspect-ratio: 3/4; min-height: 340px; max-height: 560px; height: auto; border-radius: 28px !important; }
  .hero-photo { object-position: center 12%; }
  .hero-proof { grid-template-columns: repeat(3,1fr); }
  .hero::after { display: none; }
  .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .journey-copy { max-width: none; }
  .journey-copy h2 { font-size: clamp(2.2rem,6vw,3.2rem); }
  .services-grid, .results-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .section-head { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-menu { position: absolute; top: calc(100% + 6px); left: 20px; right: 20px; flex-direction: column; align-items: stretch; padding: 16px; background: rgba(249,244,239,.98); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: none; gap: 4px; }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-cta { text-align: center; margin-left: 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .stats-grid article:nth-child(3), .stats-grid article:nth-child(4) { border-bottom: 0; }
}

@media (max-width:860px) {
  .about-premium-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-foto-img { max-height: 560px; }
  .sps-divider { display: none; }
  .sps-quote { display: none; }
  .sps-cta { margin-left: 0; }
}

@media (max-width:768px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(249,244,239,.96); }
  .hero-media img { animation: none !important; transform: none !important; }
  .hero-proof-item, .hero-badge, .hero-rating { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .hero-frame { aspect-ratio: 3/4; min-height: 0; max-height: 460px; height: auto; }
  .hero-photo { object-position: center 8%; }
  .hero-visual { width: 100%; max-width: 460px; margin-inline: auto; }
  .testimonial-card { will-change: auto; }
}

@media (max-width:680px) {
  .container { width: min(calc(100% - 32px),var(--container)); }
  .hero { padding: 36px 0 44px; }
  .hero-copy h1 { font-size: clamp(3rem,12vw,4.4rem); max-width: 9.5ch; }
  .hero-text { font-size: .96rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; min-height: 54px; }
  .hero-proof { gap: 6px; }
  .hero-frame { min-height: 300px; max-height: 480px; border-radius: 20px !important; }
  .hero-photo { object-position: center 10%; }
  .hero-badge { left: 14px; bottom: 14px; padding: 8px 12px; }
  .hero-badge strong { font-size: .62rem; }
  .hero-badge span { font-size: .78rem; }
  .hero-rating { display: none; }
  .services-grid, .results-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .about-card, .about-note, .cta-final-box { padding: clamp(24px,5vw,34px); }
  .about-foto-frame { border-radius: var(--radius-lg); }
  .about-foto-img { max-height: none; }
  .about-diferenciais { margin: 16px 0 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .service-card { padding: 24px 22px 22px; border-radius: 18px; }
  .service-card h3 { font-size: 1.55rem; }
  .testimonial-card { padding: 24px 22px; border-radius: 18px; }
  .result-card { border-radius: 18px !important; }
  .journey-steps li { padding: 14px 16px; }
  .cta-final-box h2 { font-size: clamp(2.2rem,9vw,3rem); }
  .cta-mini { flex-direction: column; gap: 6px; align-items: center; }
  .cta-pagamento-items { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .sps-inner { flex-direction: column; gap: 16px; text-align: center; padding: 20px; }
  .sps-quote { display: block; }
  .sps-cta .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-menu a { font-size: .95rem; padding: 14px 16px; min-height: 48px; display: flex; align-items: center; }
  .nav-logo { font-size: 1.05rem; }
  .legal-hero-head h1 { font-size: clamp(2.2rem,10vw,3.4rem); }
  .legal-contact-box { flex-direction: column; }
  .floating-wa-wrap { right: 16px; bottom: 16px; }
  .floating-wa { width: 54px; height: 54px; }
  .floating-wa svg { width: 25px; height: 25px; }
  .testimonials-grid .testimonial-card:nth-child(n+2) { display: none; }
}

@media (max-width:540px) {
  .about-foto-frame { border-radius: var(--radius-lg); }
  .sps-cta .btn { width: 100%; }
}

@media (max-width:480px) {
  .footer-logo { font-size: 1rem; }
  .footer-tagline { font-size: .82rem; }
  .site-footer { padding: 48px 0 28px; }
  .hero-microcopy { font-size: .72rem; }
  .eyebrow { font-size: .68rem; }
}

@media (min-width:680px) and (max-width:979px) {
  .testimonials-grid .testimonial-card:nth-child(n+3) { display: none; }
}

@media (max-width:400px) {
  .hero-copy h1 { font-size: clamp(2.4rem,11vw,3.2rem); }
  .hero-proof { grid-template-columns: 1fr; gap: 6px; }
  .hero-proof-item { display: flex; align-items: center; gap: 10px; }
  .hero-proof-item strong { font-size: 1.1rem; }
}

@media (max-width:360px) {
  .container { width: calc(100% - 24px); }
  .hero-copy h1 { font-size: clamp(2.2rem,10.5vw,3rem); }
  .btn { font-size: .85rem; padding: 13px 20px; }
  .hero-actions .btn { min-height: 50px; }
  .legal-contact-box { flex-direction: column; }
}


/* ── PREFERÊNCIAS DE MOVIMENTO ──────────────────────────── */

/* ── UTILITÁRIOS — eliminam todo CSS inline ─────────────── */

.btn--mt  { margin-top: 28px; }
.btn--sm  { font-size: .88rem !important; min-height: 44px !important; padding: 0 20px !important; }

.results-preview {
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px;
}
.results-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

address.footer-location { font-style: normal; }
.footer-hours           { opacity: .7; }
.section--gallery       { padding-top: 8px; }
.res-mid-cta            { grid-column: 1 / -1; }
.legal-contact-box .btn { flex-shrink: 0; }


/* ── PREFERÊNCIAS DE MOVIMENTO ──────────────────────────── */

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

/* ── RESULTADOS — Microagulhamento destaque + grid 5 cards ── */

/* Grid de 5 cards: 2 grandes (micro) + 3 normais */
.results-preview-5 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

/* Card com destaque para microagulhamento */
.result-card-featured {
  position: relative;
  border: 2px solid rgba(196,151,94,.35) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 8px 28px rgba(150,101,46,.14),
    0 2px 8px rgba(150,101,46,.10) !important;
}
.result-card-featured::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(196,151,94,.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* Badge "Carro-chefe" */
.result-card-badge-micro {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 4;
  background: linear-gradient(135deg, #d4a458, var(--gold-deep));
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(150,101,46,.32);
}

/* Badge especial para resultado em destaque */
.result-badge-featured {
  background: linear-gradient(135deg, rgba(196,151,94,.22), rgba(196,151,94,.14)) !important;
  color: var(--gold-deep) !important;
  border: 1px solid rgba(196,151,94,.36) !important;
  font-weight: 700 !important;
}

/* Corporais: melhorar enquadramento — mostrar mais área corporal */
[data-cat="corporais"] .res-card-img img,
.res-card[data-cat="corporais"] img {
  object-position: center 30%;
}

/* No resultados.html — cards corporais com aspect-ratio mais aberto */
.res-card[data-cat="corporais"] .res-card-img {
  aspect-ratio: 4 / 4.2;
}

@media (max-width: 680px) {
  .results-preview-5 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 681px) and (max-width: 979px) {
  .results-preview-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .results-preview-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Os 2 primeiros (micro) ficam maiores visualmente */
  .results-preview-5 .result-card:nth-child(1),
  .results-preview-5 .result-card:nth-child(2) {
    grid-row: span 1;
  }
}

/* ── RESULTADOS.HTML — corporais com enquadramento melhorado ── */
/* Mostrar mais da área corporal — aspect-ratio mais aberto */
.res-card[data-cat="corporais"] .res-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.res-card[data-cat="corporais"] .res-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Microagulhamento destaque no resultados.html — badge especial */
.res-card[data-cat="pele"][data-proc="microagulhamento"] {
  border: 1.5px solid rgba(196,151,94,.30);
}


/* ══════════════════════════════════════════════════════════
   SEÇÃO: LOCALIZAÇÃO & CONSULTÓRIO
   Adicionado: mantém 100% da identidade visual existente
   ══════════════════════════════════════════════════════════ */

/* ── fundo da seção: mesma textura warm do journey ── */
.loc-section {
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg-warm) 100%);
  position: relative;
}
.loc-section::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,151,94,.22), transparent);
}

/* ── grid 2 colunas no desktop ── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* ── mapa ── */
.loc-map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-mid);
  /* camada dourada sobre a borda */
  outline: 1px solid rgba(196,151,94,.18);
  outline-offset: 3px;
}
.loc-map-frame iframe {
  display: block;
  width: 100%;
  height: 340px;
  filter: saturate(.92) contrast(1.04);
  transition: filter var(--t-slow);
}
.loc-map-frame:hover iframe {
  filter: saturate(1) contrast(1.04);
}

/* ── cartão de endereço ── */
.loc-address-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}
.loc-address-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-top: 2px;
}
.loc-address-body {
  display: flex; flex-direction: column; gap: 3px;
}
.loc-address-body strong {
  font-size: .97rem; font-weight: 600; color: var(--text); line-height: 1.3;
}
.loc-address-body span {
  font-size: .84rem; color: var(--text-soft); font-weight: 300; line-height: 1.5;
}
.loc-hours {
  margin-top: 4px;
  font-size: .74rem !important;
  color: var(--gold-deep) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── botões de navegação ── */
.loc-nav-btns {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.loc-nav-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition:
    transform var(--t-base),
    box-shadow var(--t-base),
    background var(--t-fast),
    border-color var(--t-fast);
  white-space: nowrap;
  border: 1px solid transparent;
}
.loc-nav-btn:hover { transform: translateY(-2px); }
.loc-nav-btn svg { flex-shrink: 0; }

/* Google Maps – mesma paleta do btn-primary */
.loc-nav-btn--maps {
  background: linear-gradient(145deg, #d4a870 0%, var(--gold-deep) 55%, #8a6030 100%);
  color: #fff8f0;
  box-shadow: 0 8px 24px rgba(150,101,46,.28), inset 0 1px 0 rgba(255,255,255,.14);
}
.loc-nav-btn--maps:hover {
  box-shadow: 0 14px 36px rgba(150,101,46,.38);
  background: linear-gradient(145deg, #dbb278 0%, #b88645 55%, #8a6030 100%);
}

/* Waze – dark, igual ao btn nav CTA */
.loc-nav-btn--waze {
  background: var(--black-rich);
  color: rgba(255,253,248,.92);
  box-shadow: 0 4px 16px rgba(16,8,4,.22), inset 0 1px 0 rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.06);
}
.loc-nav-btn--waze:hover {
  background: var(--brown-mid);
  box-shadow: 0 8px 24px rgba(16,8,4,.30);
}

/* ── galeria de fotos ── */
.loc-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.loc-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  background: var(--bg-warm);
  position: relative;
  /* inset brilho superior */
  isolation: isolate;
}
/* efeito de brilho no topo do card */
.loc-photo::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,.55) 50%, transparent 90%);
  z-index: 1; pointer-events: none;
}
/* overlay sutil no hover */
.loc-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,9,.28) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}
.loc-photo:hover::after { opacity: 1; }

.loc-photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-slow);
  will-change: transform;
}
.loc-photo:hover img {
  transform: scale(1.055);
}

/* ── RESPONSIVIDADE ── */

/* tablet */
@media (max-width: 980px) {
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .loc-map-frame iframe { height: 300px; }

  /* mobile: mapa e galeria reordenados corretamente */
  .loc-map-col  { order: 1; }
  .loc-gallery-col { order: 2; }
}

/* mobile */
@media (max-width: 680px) {
  .loc-map-frame iframe { height: 260px; }
  .loc-nav-btn {
    flex: 1 1 calc(50% - 5px);
    font-size: .82rem;
    padding: 0 14px;
    min-height: 44px;
  }
  .loc-gallery-grid {
    /* 2 por linha no mobile */
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .loc-photo { border-radius: var(--radius-sm); }
}

@media (max-width: 420px) {
  .loc-nav-btns { flex-direction: column; }
  .loc-nav-btn { flex: none; width: 100%; }
}

/* ── Footer melhorado ─────────────────────────────────── */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 14px 0;
}
.footer-link-icon {
  display: inline-block;
  width: 18px;
  font-style: normal;
  margin-right: 4px;
  opacity: .7;
  font-size: .85em;
}
.footer-col a {
  display: flex;
  align-items: center;
}
