/* ============================================================
   Rafael Plate — Psicólogo Clínico
   Paleta: mente profunda (navy/grafite) → clareza (branco quente)
   ============================================================ */

:root {
  --ink: #070d18;
  --navy: #0c1626;
  --navy-2: #101c30;
  --graphite: #16202e;
  --amber: #e0a458;
  --amber-soft: #f0c987;
  --amber-deep: #b97f35;
  --cream: #f7f1e7;
  --warm-white: #fbf8f2;
  --beige: #eadfcd;
  --text-light: #edf1f7;
  --text-dim: #9daabb;
  --text-dark: #241f18;
  --text-dark-dim: #6b6152;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92vw); margin: 0 auto; }

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

/* ---------- tipografia ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.eyebrow--dark { color: var(--amber-deep); }

.title-xl {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 2.2rem;
}
.title-xl em, .title-lg em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-soft);
}
.title-xl--dark { color: var(--text-dark); }
.title-xl--dark em, .title-lg--dark em { color: var(--amber-deep); }

.title-lg {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.title-lg--dark { color: var(--text-dark); }

.lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-dim);
  max-width: 46rem;
  margin-bottom: 2rem;
}
.lead--dark { color: var(--text-dark-dim); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), background 0.3s;
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(135deg, var(--amber-soft), var(--amber));
  color: #241703;
  box-shadow: 0 8px 32px rgba(224, 164, 88, 0.35);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 44px rgba(224, 164, 88, 0.5); }
.btn--ghost-light {
  border: 1px solid rgba(237, 241, 247, 0.35);
  color: var(--text-light);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { border-color: var(--amber); color: var(--amber-soft); transform: translateY(-3px); }
.btn--big { font-size: 1.05rem; padding: 1.2rem 2.6rem; }
.btn--nav { padding: 0.6rem 1.4rem; font-size: 0.8rem; background: var(--amber); color: #241703; }
.btn--nav:hover { background: var(--amber-soft); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  /* scrim sempre presente para leitura do nome sobre o canvas */
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.82), rgba(7, 13, 24, 0.35) 70%, transparent);
  transition: background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s, transform 0.5s var(--ease-out);
}
.nav--scrolled {
  background: rgba(7, 13, 24, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav--hidden { transform: translateY(-110%); }
.nav__brand { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo {
  width: 44px; height: 44px; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(4, 8, 16, 0.55));
}
.nav__name {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 500;
  line-height: 1.1; display: flex; flex-direction: column;
  color: #fff;
  text-shadow: 0 1px 8px rgba(4, 8, 16, 0.9);
}
.nav__name em {
  font-family: var(--sans); font-style: normal; font-weight: 500;
  font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-soft); margin-top: 3px;
  text-shadow: 0 1px 6px rgba(4, 8, 16, 0.9);
}
.nav__right { display: flex; align-items: center; gap: 0.9rem; }
.nav__socials { display: flex; gap: 0.45rem; }
.nav__soc {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(237, 241, 247, 0.22);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out), color 0.3s;
}
.nav__soc[title="Instagram"] { color: #e4405f; border-color: rgba(228, 64, 95, 0.5); }
.nav__soc[title="Spotify"] { color: #1db954; border-color: rgba(29, 185, 84, 0.5); }
.nav__soc[title="YouTube"] { color: #ff0000; border-color: rgba(255, 0, 0, 0.5); }
.nav__soc:hover { transform: translateY(-2px); color: #fff; }
.nav__soc[title="Instagram"]:hover { background: #e4405f; border-color: #e4405f; }
.nav__soc[title="Spotify"]:hover { background: #1db954; border-color: #1db954; }
.nav__soc[title="YouTube"]:hover { background: #ff0000; border-color: #ff0000; }
.nav__links { display: flex; gap: 1.8rem; }
.nav__links a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(237, 241, 247, 0.88);
  text-shadow: 0 1px 6px rgba(4, 8, 16, 0.8);
  transition: color 0.3s; position: relative;
}
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--amber); transition: width 0.35s var(--ease-out); }
.nav__links a:hover { color: var(--text-light); }
.nav__links a:hover::after { width: 100%; }

/* ---------- HERO / jornada ---------- */
.hero { position: relative; height: 620vh; background: var(--ink); }
.hero__pin { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }

/* hero estático para prefers-reduced-motion */
.hero--static { height: 100vh; height: 100svh; }
.hero--static .hero__pin { position: relative; }
.hero--static .hero__skip,
.hero--static .hero__scroll-hint { display: none; }

/* link "pular introdução" */
.hero__skip {
  position: absolute; top: 5.6rem; right: clamp(1rem, 4vw, 3rem); z-index: 6;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237, 241, 247, 0.7);
  border: 1px solid rgba(237, 241, 247, 0.25);
  padding: 0.4rem 0.9rem; border-radius: 100px;
  backdrop-filter: blur(6px);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.hero__skip:hover { color: var(--ink); background: var(--amber-soft); border-color: var(--amber-soft); }
.hero__skip:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
#journey { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 52%, rgba(4, 8, 16, 0.55) 100%);
}

.hero__caption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 0 6vw;
  opacity: 0;
  pointer-events: none;
  /* scrim central para garantir leitura sobre o canvas */
  background: radial-gradient(ellipse 62% 52% at 50% 50%, rgba(4, 8, 16, 0.62), rgba(4, 8, 16, 0.28) 55%, transparent 78%);
}
.hero__caption h1, .hero__caption h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5.6vw, 4.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(4, 8, 16, 0.95), 0 4px 60px rgba(4, 8, 16, 0.85);
}
.hero__caption--final h2 span { font-style: italic; color: var(--amber-soft); }
.hero__kicker {
  font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--amber-soft); font-weight: 500; margin-bottom: 1.3rem;
  text-shadow: 0 1px 18px rgba(4, 8, 16, 0.9);
}
.hero__sub {
  margin-top: 1.4rem;
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  font-weight: 400;
  color: rgba(240, 244, 250, 0.95);
  max-width: 40rem;
  text-shadow: 0 1px 10px rgba(4, 8, 16, 0.95), 0 2px 30px rgba(4, 8, 16, 0.9);
}
.hero__cta-row { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; justify-content: center; }
.hero__caption--final.is-active { pointer-events: auto; }

.hero__scroll-hint {
  position: absolute; bottom: 4.5vh; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-dim);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
}
.hero__scroll-hint span {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: drip 2s var(--ease-out) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--navy);
  border-block: 1px solid rgba(240, 201, 135, 0.14);
  overflow: hidden;
  padding: 1.05rem 0;
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex; gap: 2.2rem; width: max-content;
  animation: marquee 36s linear infinite;
  font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap;
}
.marquee__track i { color: var(--amber); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- seções ---------- */
section { position: relative; }
.section--dark { background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 60%, var(--navy-2) 100%); padding: clamp(5rem, 10vw, 8.5rem) 0; }
.section--light { background: var(--warm-white); color: var(--text-dark); padding: clamp(5rem, 10vw, 8.5rem) 0; }

/* áreas */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2.1rem 1.9rem;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(240, 201, 135, 0.4); }
.card__icon { width: 46px; height: 46px; color: var(--amber); margin-bottom: 1.3rem; }
.card__icon svg { width: 100%; height: 100%; }
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin-bottom: 0.7rem; }
.card p { font-size: 0.92rem; color: var(--text-dim); margin-bottom: 1.1rem; }
.card ul { list-style: none; }
.card li {
  font-size: 0.85rem; color: rgba(237, 241, 247, 0.75);
  padding: 0.42rem 0 0.42rem 1.3rem; position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.card li::before { content: ""; position: absolute; left: 0; top: 0.95em; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-deep); }
.card__link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1.2rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--amber-soft);
  border-bottom: 1px solid rgba(240, 201, 135, 0.35);
  padding-bottom: 0.15rem;
  transition: color 0.3s, border-color 0.3s;
}
.card__link span { transition: transform 0.35s var(--ease-out); }
.card__link:hover { color: var(--amber); border-color: var(--amber); }
.card__link:hover span { transform: translateX(4px); }

/* abordagem */
.abordagem { overflow: hidden; }
.abordagem__bg { position: absolute; inset: -12% 0; opacity: 0.14; pointer-events: none; }
.abordagem__bg img { width: 100%; height: 100%; object-fit: cover; }
.abordagem .container { position: relative; }
.pilares {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.6rem 2rem; margin: 3rem 0 0;
}
.pilar span { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--amber); display: block; margin-bottom: 0.7rem; }
.pilar h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; margin-bottom: 0.6rem; }
.pilar p { font-size: 0.9rem; color: var(--text-dim); }

.caminho { margin-top: clamp(4rem, 8vw, 6.5rem); }
.passos { list-style: none; margin-top: 2.5rem; max-width: 46rem; }
.passo {
  display: flex; gap: 1.6rem; padding: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.passo:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.passo b { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--amber); font-size: 1.15rem; min-width: 2.2rem; }
.passo h4 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; margin-bottom: 0.35rem; }
.passo p { font-size: 0.9rem; color: var(--text-dim); }
.passo div span {
  display: inline-block; margin-top: 0.55rem;
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-soft); border: 1px solid rgba(240, 201, 135, 0.3);
  padding: 0.28rem 0.7rem; border-radius: 100px;
}

/* sobre */
.sobre.section--light { background: linear-gradient(180deg, #efe6d8 0%, var(--warm-white) 30%); }
.sobre__grid {
  display: grid; grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.sobre__media { position: relative; }
.sobre__frame {
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(36, 23, 3, 0.25);
}
.sobre__frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.sobre__media figcaption { margin-top: 1rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dark-dim); text-align: center; }
.sobre__text p { color: #4d443a; margin-bottom: 1.15rem; max-width: 36rem; }
.sobre__text strong { font-weight: 600; color: var(--text-dark); }
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.6rem 0; }
.chip-link {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 500;
  border: 1px solid rgba(185, 127, 53, 0.35); color: var(--amber-deep);
  padding: 0.42rem 0.95rem; border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.chip-link:hover {
  background: var(--amber);
  color: #241703;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224, 164, 88, 0.35);
}
.podcast {
  display: flex; gap: 1.1rem; align-items: center;
  background: #f1e8da; border: 1px solid rgba(185, 127, 53, 0.2);
  padding: 1.2rem 1.4rem; border-radius: 16px; max-width: 30rem;
}
.podcast__icon { color: var(--amber-deep); flex-shrink: 0; }
.podcast b { font-family: var(--serif); font-weight: 500; color: var(--text-dark); font-size: 0.98rem; }
.podcast__links { display: flex; gap: 1rem; margin-top: 0.3rem; }
.podcast__links a { font-size: 0.78rem; font-weight: 500; color: var(--amber-deep); border-bottom: 1px solid rgba(185, 127, 53, 0.4); transition: color 0.3s; }
.podcast__links a:hover { color: var(--text-dark); }

/* ambiente / galeria */
.gallery {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 1.1rem;
  width: min(1320px, 94vw);
  margin: 3.2rem auto 0;
}
.gallery__item { position: relative; border-radius: 16px; overflow: hidden; margin: 0; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; left: 1.1rem; bottom: 0.9rem;
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 22, 38, 0.45), transparent 45%);
}
.gallery__item:nth-child(1) { grid-column: span 4; aspect-ratio: 4 / 3.1; }
.gallery__item:nth-child(2) { grid-column: span 3; aspect-ratio: 4 / 4.15; }
.gallery__item:nth-child(3) { grid-column: span 3; aspect-ratio: 4 / 4.15; }
.gallery__item:nth-child(4) { grid-column: span 3; aspect-ratio: 4 / 3; }
.gallery__item:nth-child(5) { grid-column: span 7; aspect-ratio: 21 / 8; }
.ai-note { font-size: 0.72rem; color: var(--text-dark-dim); margin-top: 1.1rem; letter-spacing: 0.03em; }

.beneficio__wrap { margin-top: clamp(4rem, 8vw, 6rem); }
.beneficios { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.8rem; margin-top: 2.4rem; }
.beneficio span { font-family: var(--serif); font-style: italic; color: var(--amber-deep); font-size: 1.05rem; display: block; margin-bottom: 0.6rem; }
.beneficio p { font-size: 0.93rem; color: #4d443a; }
.nota-acolhida {
  margin-top: 3rem; background: #f1e8da; border-left: 3px solid var(--amber);
  padding: 1.6rem 1.9rem; border-radius: 0 16px 16px 0; max-width: 52rem;
}
.nota-acolhida b { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; }
.nota-acolhida p { font-size: 0.9rem; color: #4d443a; margin-top: 0.5rem; }

/* confiança / FAQ */
.confianca { background: linear-gradient(180deg, var(--warm-white), var(--cream)); }
.faq-title { margin-top: clamp(3rem, 6vw, 4.5rem); }
.faq { max-width: 52rem; margin-top: 1.6rem; }
.faq__item { border-top: 1px solid rgba(36, 31, 24, 0.14); }
.faq__item:last-child { border-bottom: 1px solid rgba(36, 31, 24, 0.14); }
.faq__item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--serif); font-weight: 400; font-size: 1.12rem;
  padding: 1.35rem 0.2rem; color: var(--text-dark);
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--amber-deep); }
.faq__mark { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq__mark::before, .faq__mark::after {
  content: ""; position: absolute; background: var(--amber-deep); transition: transform 0.35s var(--ease-out);
}
.faq__mark::before { inset: 50% 0 auto 0; height: 1.5px; transform: translateY(-50%); }
.faq__mark::after { inset: 0 auto 0 50%; width: 1.5px; transform: translateX(-50%); }
.faq__item[open] .faq__mark::after { transform: translateX(-50%) scaleY(0); }
.faq__item p { padding: 0 2.5rem 1.5rem 0.2rem; font-size: 0.94rem; color: #4d443a; max-width: 46rem; }

/* CTA final */
.cta {
  position: relative; overflow: hidden;
  background: var(--navy);
  padding: clamp(6rem, 12vw, 10rem) 0;
  text-align: center;
}
.cta__bg { position: absolute; inset: -15% 0; opacity: 0.22; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(224, 164, 88, 0.22), transparent 60%),
              linear-gradient(180deg, var(--cream) 0%, rgba(247, 241, 231, 0) 18%),
              linear-gradient(180deg, rgba(12, 22, 38, 0.4), rgba(7, 13, 24, 0.92));
}
.cta__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.cta .lead { margin-inline: auto; }
.cta__meta { margin-top: 1.6rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.cta__podcast { margin-top: 1rem; font-size: 0.85rem; color: var(--text-dim); font-weight: 300; }
.cta__podcast a { color: var(--amber-soft); border-bottom: 1px solid rgba(240, 201, 135, 0.4); transition: color 0.3s, border-color 0.3s; }
.cta__podcast a:hover { color: var(--amber); border-color: var(--amber); }

/* footer */
.footer { background: var(--ink); border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer__brand img { width: 48px; height: 48px; object-fit: contain; }
.footer__brand b { font-family: var(--serif); font-weight: 500; display: block; }
.footer__brand span { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.1em; }
.footer p { font-size: 0.85rem; color: var(--text-dim); max-width: 22rem; }
.footer h4 { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.1rem; font-weight: 500; }
.footer__grid a { display: block; font-size: 0.88rem; color: var(--text-dim); padding: 0.28rem 0; transition: color 0.3s; }
.footer__grid a:hover { color: var(--amber-soft); }
.footer__muted { display: block; font-size: 0.82rem; color: rgba(157, 170, 187, 0.6); padding-top: 0.3rem; }
.footer__legal { margin-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 1.6rem; }
.footer__legal p { font-size: 0.72rem; color: rgba(157, 170, 187, 0.55); max-width: none; margin-bottom: 0.35rem; }

/* whatsapp flutuante */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  opacity: 0; transform: translateY(20px) scale(0.8); pointer-events: none;
}
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55); }

/* ---------- menu mobile / tablet ---------- */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 10px;
}
.nav__burger span {
  display: block; height: 2px; width: 100%;
  background: var(--text-light); border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  padding: 5.4rem clamp(1.2rem, 5vw, 2.4rem) 1.6rem;
  background: rgba(9, 16, 29, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(4, 8, 16, 0.5);
  display: flex; flex-direction: column;
  transform: translateY(-105%);
  transition: transform 0.5s var(--ease-out);
}
.nav-menu.is-open { transform: none; }
.nav-menu > a {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text-light);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-menu__socials { display: flex; gap: 0.7rem; padding: 1.2rem 0 0.4rem; }
.nav-menu__socials .nav__soc { width: 34px; height: 34px; }
.nav-menu__cta {
  margin-top: 0.8rem;
  text-align: center;
  font-weight: 600; font-size: 0.95rem;
  background: linear-gradient(135deg, var(--amber-soft), var(--amber));
  color: #241703;
  padding: 0.95rem 1.4rem;
  border-radius: 100px;
}

/* reveals */
.reveal { opacity: 0; transform: translateY(42px); }

/* ---------- responsivo ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__socials { display: none; }
  .nav__burger { display: flex; }
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__media { max-width: 420px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item { grid-column: span 1 !important; aspect-ratio: 4 / 3 !important; }
  .gallery__item:nth-child(5) { grid-column: span 2 !important; aspect-ratio: 16 / 8 !important; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .passo { gap: 1rem; }
}
@media (max-width: 560px) {
  .hero__cta-row .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .wa-float { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
}

/* acessibilidade: usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .hero__scroll-hint span { animation: none; }
  /* conteúdo sempre visível, sem depender de animação de rolagem */
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero { height: 100vh; height: 100svh; }
  .hero__skip, .hero__scroll-hint { display: none; }
  * { scroll-behavior: auto !important; }
}
