/* =================================================================
   HOME — estilos específicos
   ================================================================= */

/* ---------- PLACEHOLDERS (até chegarem as fotos) ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 70% 10%, #2a2926 0%, #201f1d 55%, #1a1917 100%);
  border: 1px solid var(--border-dark-2);
}
.ph::after {
  content: attr(data-ph);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-sans); font-weight: 300; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: #4a4945;
}
.ph--light { background: radial-gradient(120% 90% at 70% 10%, var(--offwhite) 0%, #e4e1d8 55%, var(--gray-descritor) 100%); border-color: var(--border-light); }
.ph--light::after { color: var(--on-light-body); opacity: .5; }

/* zoom lento ken burns */
.kenburns { overflow: hidden; }
.kenburns > img, .kenburns > .ph-fill {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1); transition: transform 7s ease-out;
}
.kenburns.zoomed > img, .kenburns.zoomed > .ph-fill { transform: scale(1.08); }

/* ---------- HERO VIVO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: var(--header-h); overflow: hidden; }
/* camada de fundo: parallax (JS translate) com leve sangria para não revelar bordas */
.hero-bg { position: absolute; inset: -28px; z-index: 0;
  transition: transform .55s var(--ease-luxe); will-change: transform; }
/* ken burns contínuo (respiração) — desligado em reduced-motion pela regra global */
.hero-kb { position: absolute; inset: 0; animation: heroBreath 14s ease-in-out infinite alternate; will-change: transform; }
.hero-kb > * { width: 100%; height: 100%; }
@keyframes heroBreath { from { transform: scale(1.05); } to { transform: scale(1.18); } }
.hero-bg::after { content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(25,24,23,.55) 0%, rgba(25,24,23,.28) 38%, rgba(25,24,23,.9) 100%); }
/* luz champagne que segue o cursor (JS define --gx/--gy; só desktop) */
.hero-glow { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  transition: opacity .6s ease;
  background: radial-gradient(240px circle at var(--gx,50%) var(--gy,50%), rgba(191,160,104,.10), transparent 70%); }
.hero.glow-on .hero-glow { opacity: 1; }
.hero .container { position: relative; z-index: 2; padding-bottom: clamp(3.5rem, 9vh, 7rem);
  transition: transform .55s var(--ease-luxe); will-change: transform; }
.hero .eyebrow { margin-bottom: 1.4rem; }
.hero .accent-line { margin: 0 0 1.6rem; }
.hero .headline { max-width: 17ch; }
.hero-sub { margin-top: 1.8rem; max-width: 48ch; color: var(--on-dark-sec); font-size: 1.1rem; }
.hero-actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem 1.9rem; align-items: center; }
.hero-link { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--on-dark-title);
  border-bottom: 1px solid var(--champagne); padding-bottom: 5px; transition: color .35s var(--ease-luxe); }
.hero-link span { display: inline-block; transition: margin-left .35s var(--ease-luxe); }
.hero-link:hover { color: var(--champagne); }
.hero-link:hover span { margin-left: .4rem; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark-mut);
  display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.scroll-cue:hover { color: var(--champagne); }
.scroll-cue .chev { font-size: 15px; line-height: 1; animation: cueBounce 2s ease-in-out infinite; }
@keyframes cueBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ---------- FAIXA DE CREDENCIAIS (escritas) ---------- */
.creds-band { border-block: 1px solid var(--border-dark-2); }
.creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.2rem,4vw,3.4rem) clamp(2.5rem,6vw,5rem); }
.cred-dash { display: block; width: 32px; height: 1px; background: var(--champagne); margin-bottom: 1.4rem; }
.cred-ico { width: 30px; height: 30px; color: var(--champagne); margin-bottom: 1.1rem; }
.cred h3 { font-family: var(--font-voice); font-weight: 400; font-size: clamp(1.4rem,2.6vw,1.7rem); color: var(--on-dark-title); margin-bottom: .55rem; }
.cred p { font-size: 14px; line-height: 1.65; color: var(--on-dark-sec); max-width: 40ch; }
@media (max-width: 760px){ .creds-grid { grid-template-columns: 1fr; } }

/* ---------- BLOCO RETRATO ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split .media { aspect-ratio: 4/5; border-radius: 2px; }
.split .body .eyebrow { margin-bottom: 1.2rem; }
.split .body p { margin-top: 1.3rem; }
.split .creds { margin-top: 2rem; display: grid; gap: .7rem; }
.split .creds li { position: relative; padding-left: 1.4rem; font-size: 15px; color: var(--on-dark-sec); }
.split .creds li::before { content: ''; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border: 1px solid var(--champagne); transform: rotate(45deg); }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .split--reverse > :first-child { order: 0; } .split .media { aspect-ratio: 3/4; max-height: 70vh; } }

/* ---------- DIAGNÓSTICO CAPILAR ---------- */
.diag { background: var(--graphite-panel); border: 1px solid var(--border-dark); border-radius: 3px; padding: clamp(1.8rem,4vw,3rem); }
.diag-top { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.diag-stage { text-align: center; min-width: 132px; }
.diag-stage .nw { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--on-dark-mut); }
.diag-stage .rom { font-family: var(--font-voice); font-size: clamp(3.2rem,7vw,4.6rem); color: var(--champagne); line-height: 1; margin-top: .2rem; }
.diag-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.5rem; }
.diag-metrics .m .k { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark-mut); }
.diag-metrics .m .v { font-family: var(--font-voice); font-size: 1.5rem; color: var(--on-dark-title); margin-top: .25rem; }
.diag-desc { margin-top: 1.8rem; padding-top: 1.8rem; border-top: 1px solid var(--border-dark-2); color: var(--on-dark-sec); min-height: 4.5em; }
.diag-slider { margin-top: 1.8rem; }
.diag-slider .scale-lbls { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 1px; color: var(--on-dark-mut); margin-bottom: .6rem; }

/* range input estilizado */
input[type="range"].nw {
  -webkit-appearance: none; appearance: none; width: 100%; height: 2px; border-radius: 2px;
  background: linear-gradient(to right, var(--champagne) var(--fill,40%), var(--border-dark) var(--fill,40%));
  outline: none; cursor: pointer;
}
input[type="range"].nw::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--champagne); border: 3px solid var(--graphite-panel);
  box-shadow: 0 0 0 1px var(--champagne); transition: background .3s, transform .3s; }
input[type="range"].nw::-webkit-slider-thumb:hover { background: var(--champagne-hi); transform: scale(1.1); }
input[type="range"].nw::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--champagne);
  border: 3px solid var(--graphite-panel); box-shadow: 0 0 0 1px var(--champagne); cursor: pointer; }
.diag-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.diag-disclaimer { font-size: 12px; color: var(--on-dark-mut); margin-top: 1.4rem; font-style: italic; }
@media (max-width: 620px){ .diag-top { grid-template-columns: 1fr; } .diag-metrics { grid-template-columns: 1fr 1fr; } }

/* ---------- TAGS (barba/sobrancelha/etc) ---------- */
.tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.tag { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--on-dark-sec);
  border: 1px solid var(--border-dark); border-radius: 100px; padding: .55em 1.1em; transition: border-color .4s, color .4s; }
.tag:hover { border-color: var(--champagne); color: var(--champagne); }

/* ---------- CARDS DE PROCEDIMENTO ---------- */
.proc-card { display: flex; flex-direction: column; }
.proc-card .media { aspect-ratio: 3/2; margin: -2.2rem -2rem 1.6rem; border-radius: 0; }
.proc-card .arrow { margin-top: auto; padding-top: 1.4rem; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--champagne); }
.proc-card .arrow span { transition: margin-left .4s var(--ease-luxe); display: inline-block; }
.proc-card:hover .arrow span { margin-left: .4rem; }

/* ---------- GALERIA DE RESULTADOS ---------- */
.results-note { font-size: 12px; color: var(--on-light-body); font-style: italic; margin-top: 1.2rem; }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.gallery .ph { aspect-ratio: 1; }
@media (max-width: 720px){ .gallery { grid-template-columns: 1fr 1fr; } }

/* ---------- CTA FINAL ---------- */
.cta-final { text-align: center; }
.cta-final .headline { margin-inline: auto; max-width: 18ch; }
.cta-final .btn { margin-top: 2.4rem; }

/* ---------- AVALIAÇÕES DO GOOGLE ---------- */
.rating-block { display: flex; align-items: center; justify-content: center; gap: 1.1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.rating-score { font-family: var(--font-voice); font-size: clamp(3rem,7vw,4.2rem); line-height: 1; color: var(--on-light-title); }
.stars { display: inline-flex; gap: .15rem; color: var(--champagne); }
.stars svg { width: 20px; height: 20px; }
.rating-meta { font-size: 14px; color: var(--on-light-body); }
/* palavra "Google" nas cores oficiais, discreta */
.gword { font-weight: 500; }
.gword .b { color: #4285F4; } .gword .r { color: #EA4335; } .gword .y { color: #FBBC05; } .gword .g { color: #34A853; }

.rev-carousel { margin-top: 2.8rem; position: relative; }
.rev-quote { display: block; text-align: center; font-family: var(--font-voice); font-weight: 600;
  font-size: 4rem; line-height: .5; color: rgba(191,160,104,.4); margin-bottom: .6rem; user-select: none; }
.rev-viewport { overflow: hidden; }
.rev-track { display: flex; transition: transform .8s var(--ease-luxe); will-change: transform; }
.rev-card { flex: 0 0 100%; padding-inline: .5rem; }
.rev-inner {
  position: relative; background: #fff; border: 1px solid var(--border-light);
  border-radius: 3px; padding: clamp(1.8rem,4vw,2.6rem); max-width: 720px; margin-inline: auto;
}
.rev-inner .gseal { position: absolute; top: 1.4rem; right: 1.4rem; width: 22px; height: 22px; }
.rev-inner .stars { margin-bottom: 1.1rem; }
.rev-text { color: var(--on-light-strong); font-size: 1.05rem; line-height: 1.8; }
.rev-text.placeholder { color: #9b988e; font-style: italic; }
.rev-author { margin-top: 1.4rem; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--on-light-body); }

.rev-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.8rem; }
.rev-nav { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-light);
  display: grid; place-items: center; color: var(--on-light-title); transition: border-color .4s, color .4s; }
.rev-nav:hover { border-color: var(--champagne); color: var(--champagne); }
.rev-nav svg { width: 16px; height: 16px; }
.rev-dots { display: flex; gap: .5rem; }
.rev-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-descritor); transition: transform .3s, background .3s; }
.rev-dot[aria-current="true"] { background: var(--champagne); transform: scale(1.25); }

.reviews-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; margin-top: 2.4rem; }
.reviews-seeall { font-size: 13px; letter-spacing: 1px; color: var(--on-light-strong); }
.reviews-seeall:hover { color: var(--champagne); }
.reviews-seeall .arrow { color: var(--champagne); }

/* utilidades de espaçamento */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
