/* ═══════════════════════════════════════════════════════════
   UNHAS TERAPIA & SPA · Landing Premium
   Paleta: creme/areia/dourado sobre marrom profundo
   ═══════════════════════════════════════════════════════════ */

:root {
  --cream: #f7f0e4;
  --cream-soft: #efe4d0;
  --sand: #e3cda8;
  --gold: #b9913f;
  --gold-light: #d9b96a;
  --gold-deep: #96702a;
  --ink: #241a0e;
  --ink-soft: #4a3a26;
  --bg: #1d150c;
  --bg-2: #2a2013;
  --card: #fffaf1;
  --whats: #1eb954;
  --radius: 22px;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --shadow-lg: 0 30px 60px -18px rgba(20, 12, 4, 0.55);
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

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

/* ── scrollbar discreta ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 8px; }

/* ═══════════ AURORA + SPARKLES ═══════════ */
.aurora { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.aurora__blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
  will-change: transform;
}
.aurora__blob--1 { width: 55vmax; height: 55vmax; left: -18vmax; top: -12vmax;
  background: radial-gradient(circle, #4a3413, transparent 65%);
  animation: drift1 26s ease-in-out infinite alternate; }
.aurora__blob--2 { width: 45vmax; height: 45vmax; right: -15vmax; top: 22%;
  background: radial-gradient(circle, #3d2c10, transparent 65%);
  animation: drift2 32s ease-in-out infinite alternate; }
.aurora__blob--3 { width: 50vmax; height: 50vmax; left: 8vmax; bottom: -20vmax;
  background: radial-gradient(circle, #443113, transparent 65%);
  animation: drift1 38s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate(9vmax, 6vmax) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-7vmax, -5vmax) scale(0.92); } }

#sparkles { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

main, .header, .footer { position: relative; z-index: 2; }

/* ═══════════ BOTÕES ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.04em; padding: 0.9em 1.9em; border-radius: 99px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, background 0.35s, color 0.35s;
  will-change: transform;
}
.btn--gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-light) 55%, var(--gold));
  background-size: 200% 100%;
  color: #fff; box-shadow: 0 12px 30px -8px rgba(185, 145, 63, 0.55);
  animation: goldflow 5s ease-in-out infinite;
}
@keyframes goldflow { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.btn--gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 40px -10px rgba(185, 145, 63, 0.7); }
.btn--ghost {
  border: 1px solid rgba(227, 205, 168, 0.45); color: var(--sand);
  background: rgba(247, 240, 228, 0.04); backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: var(--sand); color: var(--ink); transform: translateY(-3px); }
.btn--big { font-size: 1.05rem; padding: 1.1em 2.4em; }

/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.header.scrolled {
  background: rgba(29, 21, 12, 0.82); backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.header__inner {
  max-width: 1200px; margin: 0 auto; height: var(--header-h);
  display: flex; align-items: center; gap: 1.5rem; padding: 0 clamp(1rem, 4vw, 2rem);
}
.header__brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.header__brand img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); }
.header__brand span { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }
.header__brand em { color: var(--gold-light); }
.header__nav { display: flex; gap: 1.6rem; }
.header__nav a {
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-soft);
  position: relative; padding: 0.3em 0;
}
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-light); transition: width 0.35s;
}
.header__nav a:hover::after { width: 100%; }
.header__cta { font-size: 0.85rem; padding: 0.7em 1.5em; }
.header__burger { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.header__burger span { width: 24px; height: 2px; background: var(--cream); transition: 0.35s; }
.header__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobilemenu {
  display: none; flex-direction: column; gap: 1.2rem; padding: 1.4rem 1.6rem 2rem;
  background: rgba(29, 21, 12, 0.97);
}
.mobilemenu.open { display: flex; animation: menuIn 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-14px); } }
.mobilemenu a:not(.btn) { font-size: 1.05rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-soft); }

/* ═══════════ HERO ═══════════ */
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-h) + 3rem) clamp(1rem, 4vw, 2rem) 4rem; position: relative; }
.hero__inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--sand);
  border: 1px solid rgba(227, 205, 168, 0.3); padding: 0.55em 1.2em; border-radius: 99px;
  margin-bottom: 1.6rem; background: rgba(247, 240, 228, 0.04);
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--whats); box-shadow: 0 0 0 0 rgba(30, 185, 84, 0.6); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(30, 185, 84, 0); } 100% { box-shadow: 0 0 0 0 rgba(30, 185, 84, 0); } }

.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem); line-height: 1.06; letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.hero__title > span { display: block; }

.shimmer {
  background: linear-gradient(100deg, var(--gold-deep) 20%, var(--gold-light) 40%, #f3dc9e 50%, var(--gold-light) 60%, var(--gold-deep) 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 4.5s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.hero__sub { max-width: 46ch; font-size: 1.06rem; color: var(--cream-soft); margin-bottom: 2rem; }
.hero__sub strong { color: var(--gold-light); font-weight: 500; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }

.hero__proof { list-style: none; display: flex; align-items: center; gap: 1.4rem; }
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--gold-light); line-height: 1.1; display: flex; align-items: center; gap: 0.25em; }
.hero__proof .starsvg, .hero__chip svg { color: var(--gold); flex-shrink: 0; }
.hero__chip { display: inline-flex; align-items: center; gap: 0.45em; }
.hero__proof span { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247, 240, 228, 0.6); line-height: 1.35; }
.hero__proof .sep { width: 1px; height: 40px; background: rgba(227, 205, 168, 0.25); }

/* visual */
.hero__visual { position: relative; min-height: 420px; }
.hero__frame {
  position: relative; width: min(78%, 400px); margin-left: auto;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(227, 205, 168, 0.25);
}
.hero__frame img { aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.hero__frame-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 245, 220, 0.28) 48%, transparent 60%);
  background-size: 250% 100%; animation: sweep 4.5s ease-in-out infinite;
}
@keyframes sweep { 0% { background-position: 130% 0; } 60%, 100% { background-position: -130% 0; } }

.hero__polaroid {
  position: absolute; width: clamp(110px, 12vw, 160px); border-radius: 16px; overflow: hidden;
  border: 4px solid #fffaf1; box-shadow: var(--shadow-lg);
}
.hero__polaroid img { aspect-ratio: 3/3.6; object-fit: cover; }
.hero__polaroid--a { left: 0; top: 6%; transform: rotate(-7deg); animation: float 7s ease-in-out infinite; }
.hero__polaroid--b { left: 8%; bottom: -4%; transform: rotate(5deg); animation: float 8s 1.2s ease-in-out infinite; }
@keyframes float { 50% { translate: 0 -14px; } }

.hero__seal {
  position: absolute; right: -12px; bottom: -18px; width: 118px; height: 118px;
  display: grid; place-items: center; animation: float 9s 0.6s ease-in-out infinite;
}
.hero__seal svg { position: absolute; inset: 0; animation: spin 22s linear infinite; }
.hero__seal svg text { font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.22em; fill: var(--sand); }
.hero__seal img { width: 62px; height: 62px; border-radius: 50%; border: 2px solid var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__chip {
  position: absolute; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink);
  background: rgba(255, 250, 241, 0.92); border-radius: 99px; padding: 0.5em 1.1em;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.5); white-space: nowrap; backdrop-filter: blur(4px);
}
.hero__chip--1 { top: 2%; right: 4%; animation: float 6.5s ease-in-out infinite; }
.hero__chip--2 { top: 44%; left: -4%; animation: float 7.5s 0.8s ease-in-out infinite; }
.hero__chip--3 { bottom: 16%; right: -2%; animation: float 8s 1.6s ease-in-out infinite; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1.5px solid rgba(227, 205, 168, 0.5); border-radius: 20px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 4px; background: var(--gold-light); animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot { 60% { transform: translateY(16px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

/* ═══════════ WORD MARQUEE ═══════════ */
.wordmarquee {
  overflow: hidden; border-block: 1px solid rgba(227, 205, 168, 0.18);
  background: rgba(247, 240, 228, 0.03); padding: 1.05rem 0; position: relative; z-index: 2;
}
.wordmarquee__track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: marquee 30s linear infinite; }
.wordmarquee span {
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--sand); white-space: nowrap;
}
.wordmarquee i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1rem, 4vw, 2rem); }
.section__head { max-width: 760px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); text-align: center; }
.kicker { font-size: 0.78rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.section__head h2, .experience h2, .finale h2 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.12;
}
.section__lead { margin-top: 1rem; color: rgba(247, 240, 228, 0.72); font-size: 1.02rem; }

/* ═══════════ SERVIÇOS ═══════════ */
.services__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem;
}
.svc {
  position: relative; border-radius: var(--radius); padding: 2rem 1.6rem 1.8rem;
  background: linear-gradient(160deg, rgba(255, 250, 241, 0.055), rgba(255, 250, 241, 0.02));
  border: 1px solid rgba(227, 205, 168, 0.16);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s, background 0.45s;
  overflow: hidden;
}
.svc::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(217, 185, 106, 0.16), transparent 65%);
}
.svc:hover { transform: translateY(-8px); border-color: rgba(217, 185, 106, 0.5); }
.svc:hover::before { opacity: 1; }
.svc__num {
  position: absolute; top: 1.1rem; right: 1.3rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: rgba(227, 205, 168, 0.3);
}
.svc__icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
  background: linear-gradient(140deg, rgba(217, 185, 106, 0.22), rgba(150, 112, 42, 0.12));
  border: 1px solid rgba(217, 185, 106, 0.35);
}
.svc h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; margin-bottom: 0.6rem; }
.svc p { font-size: 0.92rem; color: rgba(247, 240, 228, 0.72); margin-bottom: 1.3rem; }
.svc a { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); display: inline-flex; gap: 0.4em; }
.svc a i { font-style: normal; transition: transform 0.3s; }
.svc a:hover i { transform: translateX(5px); }

/* ═══════════ FILMSTRIP (carrossel infinito) ═══════════ */
.gallery { padding-inline: 0; }
.gallery .section__head { padding-inline: clamp(1rem, 4vw, 2rem); }
.filmstrip { overflow: hidden; padding: 0.7rem 0; }
.filmstrip__track { display: flex; gap: 1.1rem; width: max-content; animation: marquee 42s linear infinite; }
.filmstrip--reverse .filmstrip__track { animation-direction: reverse; animation-duration: 48s; }
.filmstrip:hover .filmstrip__track { animation-play-state: paused; }
.filmstrip figure {
  width: clamp(200px, 24vw, 300px); border-radius: 18px; overflow: hidden; flex-shrink: 0;
  border: 1px solid rgba(227, 205, 168, 0.2); position: relative;
}
.filmstrip img {
  aspect-ratio: 4/5; object-fit: cover; width: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.filmstrip figure:hover img { transform: scale(1.07); }
.gallery__follow { text-align: center; margin-top: 2.2rem; }

/* ═══════════ SPOTLIGHT (fotos com brilho) ═══════════ */
.spotlight__grid {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem);
}
.glow-card {
  position: relative; border-radius: var(--radius); cursor: zoom-in;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
/* o brilho dourado pulsante atrás da foto */
.glow-card::before {
  content: ""; position: absolute; inset: -14%; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 185, 106, 0.55), rgba(185, 145, 63, 0.22) 55%, transparent 75%);
  filter: blur(26px); opacity: 0.75;
  animation: breathe 4.2s ease-in-out infinite;
}
.glow-card:nth-child(3n+2)::before { animation-delay: 1.3s; }
.glow-card:nth-child(3n)::before { animation-delay: 2.5s; }
@keyframes breathe { 50% { opacity: 1; transform: scale(1.12); } }
.glow-card img {
  border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; width: 100%;
  border: 1px solid rgba(243, 220, 158, 0.4);
  box-shadow: 0 24px 55px -18px rgba(0, 0, 0, 0.65);
}
/* varredura de luz por cima */
.glow-card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 248, 228, 0.22) 50%, transparent 65%);
  background-size: 240% 100%; animation: sweep 6s ease-in-out infinite;
}
.glow-card:nth-child(2n)::after { animation-delay: 2s; }
.glow-card:hover { transform: translateY(-10px) scale(1.02); }
.glow-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1.2rem 1rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem; text-align: center;
  color: #fff8e8; border-radius: 0 0 var(--radius) var(--radius);
  background: linear-gradient(transparent, rgba(20, 13, 5, 0.75));
  opacity: 0; transform: translateY(8px); transition: 0.45s;
}
.glow-card:hover figcaption { opacity: 1; transform: none; }
.spotlight__cta { text-align: center; margin-top: clamp(2.5rem, 6vw, 4rem); }
.spotlight__cta p { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--sand); margin-bottom: 1.2rem; }

/* ═══════════ EXPERIÊNCIA / REELS ═══════════ */
.experience { background: linear-gradient(180deg, transparent, rgba(247, 240, 228, 0.035) 18% 82%, transparent); }
.experience__inner {
  max-width: 1220px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(2rem, 4vw, 3.6rem); align-items: center;
}
.experience__sub {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.2; margin-bottom: 1rem;
}
.experience__badge--hot {
  background: linear-gradient(120deg, #8c1d1d, #c0392b);
  box-shadow: 0 10px 25px -8px rgba(192, 57, 43, 0.6);
}
.experience__badge svg { vertical-align: -2px; margin-right: 0.3em; }
.experience__list b svg { color: var(--gold-light); vertical-align: -3px; margin-right: 0.35em; }
.experience__phone { position: relative; justify-self: center; }
.phone {
  position: relative; width: min(250px, 74vw); border-radius: 42px; overflow: hidden;
  border: 10px solid #0d0a06; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(227, 205, 168, 0.3), 0 0 80px -20px rgba(217, 185, 106, 0.45);
  background: #000;
}
.phone video { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; }
.phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px; background: #0d0a06; border-radius: 12px; z-index: 2;
}
.phone__sound {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 250, 241, 0.92); color: var(--gold-deep);
  display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.phone__sound.on { background: var(--gold); color: #fff; }
.experience__badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  z-index: 3; background: var(--gold); color: #fff; font-size: 0.74rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.5em 1.1em; border-radius: 99px;
  white-space: normal; text-align: center; width: max-content; max-width: min(230px, 82vw);
  line-height: 1.35; box-shadow: 0 10px 25px -8px rgba(185, 145, 63, 0.7);
}
.experience__copy h2 { margin-bottom: 1.2rem; }
.experience__copy > p { color: rgba(247, 240, 228, 0.75); max-width: 52ch; margin-bottom: 1.8rem; }
.experience__list { list-style: none; display: grid; gap: 1.2rem; margin-bottom: 2rem; }
.experience__list li { display: grid; gap: 0.2rem; padding-left: 1.2rem; border-left: 2px solid rgba(217, 185, 106, 0.5); }
.experience__list b { font-weight: 500; font-size: 1.02rem; }
.experience__list span { font-size: 0.92rem; color: rgba(247, 240, 228, 0.65); }

/* ═══════════ DEPOIMENTOS ═══════════ */
.testi { max-width: 900px; margin: 0 auto; }
.testi__viewport { display: grid; grid-auto-flow: column; overflow: hidden; }
.testi__card {
  grid-area: 1 / 1; opacity: 0; transform: translateX(60px) scale(0.97); pointer-events: none;
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--card); color: var(--ink); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg); text-align: center;
}
.testi__card.active { opacity: 1; transform: none; pointer-events: auto; }
.testi__stars { color: var(--gold); font-size: 1.25rem; letter-spacing: 0.25em; margin-bottom: 1rem; }
.testi__text { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.45rem); line-height: 1.5; color: var(--ink-soft); }
.testi__text::before { content: "“"; color: var(--gold); font-size: 1.4em; }
.testi__text::after { content: "”"; color: var(--gold); font-size: 1.4em; }
.testi__who { margin-top: 1.4rem; display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.testi__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff;
  background: linear-gradient(140deg, var(--gold), var(--gold-deep));
}
.testi__stars { display: flex; justify-content: center; gap: 0.3em; }
.testi__stars svg { color: var(--gold); }
.testimonials__badge {
  margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.95rem; color: var(--cream-soft);
  border: 1px solid rgba(227, 205, 168, 0.3); border-radius: 99px; padding: 0.5em 1.2em;
  background: rgba(247, 240, 228, 0.04);
}
.testimonials__badge b { font-size: 1.05rem; color: var(--gold-light); }
.testimonials__stars { display: inline-flex; gap: 0.15em; }
.testimonials__stars svg { color: var(--gold); }
.testi__who b { display: block; font-weight: 600; font-size: 0.95rem; }
.testi__who span { font-size: 0.8rem; color: #8a7350; }
.testi__nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 1.8rem; }
.testi__nav button {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(227, 205, 168, 0.4); background: transparent; color: var(--sand); font-size: 1rem;
  transition: 0.3s;
}
.testi__nav button:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.testi__dots { display: flex; gap: 0.5rem; }
.testi__dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(227, 205, 168, 0.3); transition: 0.3s; cursor: pointer; }
.testi__dots i.on { background: var(--gold-light); transform: scale(1.35); }
.testimonials__google { text-align: center; margin-top: 2.2rem; }

/* ═══════════ ONDE ESTAMOS ═══════════ */
.location__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.location__info { display: grid; gap: 1.3rem; justify-items: start; }
.location__addr {
  font-size: 1.12rem; line-height: 1.55; color: var(--cream);
  display: grid; grid-template-columns: auto 1fr; gap: 0.7em; align-items: start;
}
.location__addr svg, .location__hours svg { color: var(--gold-light); margin-top: 3px; }
.location__hours { display: flex; align-items: center; gap: 0.6em; color: rgba(247, 240, 228, 0.7); }
.location__btns { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.btn--waze {
  background: #33ccff; color: #05303f; font-weight: 600;
  box-shadow: 0 12px 28px -10px rgba(51, 204, 255, 0.5);
}
.btn--waze:hover { transform: translateY(-3px); background: #5cd6ff; }
.btn--maps {
  background: #fffaf1; color: #1a73e8; font-weight: 600;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.45);
}
.btn--maps:hover { transform: translateY(-3px); }
.location__map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(227, 205, 168, 0.25); box-shadow: var(--shadow-lg);
}
.location__map iframe { width: 100%; height: 380px; border: 0; display: block; filter: saturate(0.85) contrast(1.02); }

/* ═══════════ FINALE ═══════════ */
.finale { padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 2rem); position: relative; overflow: hidden; }
.finale::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(900px, 120vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 185, 106, 0.18), transparent 70%);
  animation: breathe 5s ease-in-out infinite;
}
.finale__inner { position: relative; max-width: 680px; margin: 0 auto; text-align: center; display: grid; justify-items: center; gap: 1.3rem; }
.finale__logo {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--gold); box-shadow: 0 0 60px -8px rgba(217, 185, 106, 0.75);
}
.finale p { color: rgba(247, 240, 228, 0.75); }
.finale__hint { font-size: 0.85rem; color: rgba(247, 240, 228, 0.55); }

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid rgba(227, 205, 168, 0.15); background: rgba(15, 10, 5, 0.6); }
.footer__inner {
  max-width: 1100px; margin: 0 auto; padding: 3.2rem clamp(1rem, 4vw, 2rem) 2rem;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem;
}
.footer__brand img { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--gold); margin-bottom: 0.9rem; }
.footer__brand p { font-family: var(--font-display); font-style: italic; color: var(--sand); }
.footer__col h4 { font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.9rem; font-weight: 500; }
.footer__col p, .footer__col a { display: block; font-size: 0.95rem; color: rgba(247, 240, 228, 0.75); margin-bottom: 0.45rem; }
.footer__col a:hover { color: var(--gold-light); }
.footer__legal { text-align: center; font-size: 0.78rem; color: rgba(247, 240, 228, 0.4); padding: 1.2rem; border-top: 1px solid rgba(227, 205, 168, 0.08); }

/* ═══════════ FLUTUANTES ═══════════ */
.whatsfab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%; background: var(--whats);
  display: grid; place-items: center; box-shadow: 0 14px 34px -8px rgba(30, 185, 84, 0.65);
  transition: transform 0.3s;
}
.whatsfab:hover { transform: scale(1.1) rotate(6deg); }
.whatsfab__ping { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--whats); animation: fabping 2s ease-out infinite; }
@keyframes fabping { to { transform: scale(1.55); opacity: 0; } }

.stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: linear-gradient(transparent, rgba(15, 10, 5, 0.92) 40%);
  transform: translateY(110%); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.stickycta.show { transform: none; }
.stickycta .btn { width: 100%; font-size: 1rem; }

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(15, 10, 4, 0.94);
  display: grid; place-items: center; grid-template-rows: 1fr auto; gap: 1rem; padding: 3.5rem 1rem 2rem;
  opacity: 0; visibility: hidden; transition: 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-height: 72vh; max-width: min(92vw, 640px); border-radius: 18px;
  border: 1px solid rgba(227, 205, 168, 0.4); box-shadow: 0 0 90px -18px rgba(217, 185, 106, 0.5);
}
.lightbox__close {
  position: absolute; top: 16px; right: 18px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(227, 205, 168, 0.4); background: transparent; color: var(--cream); font-size: 1.1rem; cursor: pointer;
}
.lightbox__cta { justify-self: center; }

/* ═══════════ REVEAL ON SCROLL ═══════════ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.d1 { transition-delay: 0.1s; } .reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; } .reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; } .reveal.d6 { transition-delay: 0.6s; }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════ RESPONSIVO ═══════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .header__nav, .header__cta { display: none; }
  .header__burger { display: flex; }
  .header { background: rgba(29, 21, 12, 0.82); backdrop-filter: blur(14px); }

  .hero { padding-top: calc(var(--header-h) + 1.6rem); padding-bottom: 5.5rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 3.2rem; }
  .hero__copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero__sub { font-size: 1rem; }
  .hero__ctas { justify-content: center; }
  .hero__proof { justify-content: center; gap: 1rem; }
  .hero__visual { min-height: 0; width: min(100%, 420px); margin: 0 auto; padding-bottom: 2.2rem; }
  .hero__frame { margin: 0 auto; width: 76%; }
  .hero__polaroid--a { left: -2%; top: 2%; }
  .hero__polaroid--b { left: 2%; bottom: 0; }
  .hero__seal { right: -4px; bottom: -6px; width: 100px; height: 100px; }
  .hero__chip--2 { left: -2%; }
  .hero__chip--3 { right: -1%; bottom: 10%; }
  .hero__scroll { display: none; }

  .experience__inner { grid-template-columns: 1fr; justify-items: center; }
  .experience__copy { text-align: center; }
  .experience__list { text-align: left; max-width: 480px; margin-inline: auto; }
  .experience__copy .btn { margin-inline: auto; }
  .experience__phone { margin-top: 1.2rem; }

  .location__inner { grid-template-columns: 1fr; }
  .location__info { justify-items: center; text-align: center; }
  .location__addr { grid-template-columns: auto; justify-items: center; }
  .location__btns { justify-content: center; }
  .location__map iframe { height: 300px; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer__brand img { margin-inline: auto; }

  .stickycta { display: block; }
  .whatsfab { bottom: 84px; right: 14px; width: 56px; height: 56px; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; max-width: 440px; }
  .spotlight__grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .glow-card figcaption { opacity: 1; transform: none; font-size: 0.95rem; }
  .hero__title { font-size: clamp(2.35rem, 11vw, 3rem); }
  .hero__proof strong { font-size: 1.35rem; }
  .btn--big { width: 100%; max-width: 380px; }
  .filmstrip figure { width: 62vw; }
  .wordmarquee span { font-size: 1.05rem; }
}

@media (max-width: 400px) {
  .spotlight__grid { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; }
  .hero__chip { font-size: 0.7rem; }
  .hero__proof { gap: 0.7rem; flex-wrap: wrap; }
  .hero__proof span { font-size: 0.68rem; }
}

/* ═══════════ MODO QA (?qa — só para inspeção) ═══════════ */
html.qa { scroll-behavior: auto; }
.qa .reveal { opacity: 1; transform: none; transition: none; }
.qa .hero { min-height: 0; }

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