:root {
  --black: #0d0d0d;
  --black-soft: #121211;
  --sage: #8a9a87;
  --gold: #c9a876;
  --gold-dim: rgba(201, 168, 118, 0.35);
  --off: #f5f1ea;
  --muted: rgba(245, 241, 234, 0.62);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--off);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: 0.01em; margin: 0 0 18px; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.15; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
em { font-style: italic; }
p { margin: 0 0 20px; color: var(--muted); }
strong { color: var(--off); font-weight: 400; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.center { text-align: center; }
h2.center + .rule, .rule.center { margin-left: auto; margin-right: auto; }

.rule {
  width: 120px;
  height: 1px;
  margin: 26px 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  width: 5px;
  height: 5px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gold);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(201, 168, 118, 0.16);
  padding: 12px 26px;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--off);
  text-decoration: none;
  white-space: nowrap;
}
.nav__brand span { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.24em; }
.nav__links { display: none; gap: 26px; }
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav__links a:hover { color: var(--gold); }
@media (min-width: 900px) { .nav__links { display: flex; } }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 130px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(138, 154, 135, 0.16), transparent 60%),
    linear-gradient(180deg, #101110 0%, var(--black) 70%);
}
.hero__glow {
  position: absolute;
  left: 50%;
  top: 18%;
  width: 780px;
  height: 780px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 168, 118, 0.16), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; }

.medallion {
  width: clamp(180px, 44vw, 246px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8px;
  background: conic-gradient(from 200deg, var(--gold), rgba(138, 154, 135, 0.5), var(--gold));
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(201, 168, 118, 0.2);
  margin-bottom: 34px;
}
.medallion img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--black);
}

.hero__name {
  font-size: clamp(2.8rem, 10vw, 5.2rem);
  line-height: 1;
  margin: 0;
  letter-spacing: 0.02em;
}
.hero__role {
  font-size: 0.8rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 14px 0 0;
}
.hero__quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  line-height: 1.28;
  color: var(--off);
  margin: 0 0 18px;
}
.hero__quote em { color: var(--gold); }
.hero__sub { max-width: 460px; margin: 0 auto 34px; }

.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 26px;
  list-style: none;
  padding: 0;
  margin: 46px 0 0;
  font-size: 0.67rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.45);
}
.values li { position: relative; }
.values li + li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 1px;
  height: 11px;
  transform: translateY(-50%);
  background: var(--gold-dim);
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 999px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--sans);
}
.btn--gold {
  background: linear-gradient(120deg, #d8bb8b, var(--gold) 55%, #a9884f);
  color: #14130f;
  box-shadow: 0 18px 40px -20px rgba(201, 168, 118, 0.75);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -20px rgba(201, 168, 118, 0.9); }
.btn--outline { border-color: var(--gold-dim); color: var(--gold); background: transparent; }
.btn--outline:hover { background: rgba(201, 168, 118, 0.1); transform: translateY(-2px); }

/* SECTIONS */
.section { position: relative; padding: clamp(80px, 12vw, 140px) 0; overflow: hidden; }
.section--dark {
  background: linear-gradient(180deg, #0a0a0a, #111312 55%, #0a0a0a);
  border-top: 1px solid rgba(201, 168, 118, 0.1);
  border-bottom: 1px solid rgba(201, 168, 118, 0.1);
}
.veil {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(60% 50% at 20% 20%, rgba(138, 154, 135, 0.14), transparent 65%),
    radial-gradient(50% 45% at 85% 75%, rgba(201, 168, 118, 0.12), transparent 65%);
  pointer-events: none;
}
.section .container { position: relative; z-index: 1; }

/* SPLIT */
.split { display: grid; gap: clamp(34px, 6vw, 70px); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 0.9fr 1.1fr; }
  .split--reverse { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: 6px 6px 140px 140px;
  filter: saturate(0.95) contrast(1.02);
}
.split__frame {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold-dim);
  border-radius: 6px 6px 140px 140px;
  pointer-events: none;
}
.split__text blockquote {
  margin: 30px 0 0;
  padding-left: 20px;
  border-left: 1px solid var(--gold-dim);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-style: italic;
  color: var(--off);
}
.split__notes { display: grid; gap: 18px; align-content: start; }
.note {
  padding: 22px 24px;
  border: 1px solid rgba(245, 241, 234, 0.08);
  border-radius: 14px;
  background: rgba(245, 241, 234, 0.03);
}
.note h3 { color: var(--gold); font-size: 1.05rem; }
.note p { margin: 0; font-size: 0.94rem; }

/* CARDS */
.cards { display: grid; gap: 20px; margin-top: 54px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card {
  padding: 34px 26px;
  border: 1px solid rgba(201, 168, 118, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 241, 234, 0.045), rgba(245, 241, 234, 0.01));
  transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201, 168, 118, 0.4); }
.card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  margin-bottom: 22px;
}
.card__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.card p { margin: 0; font-size: 0.95rem; }

/* PSICANÁLISE */
.display em { color: var(--gold); font-size: 1.12em; }
.lead { font-family: var(--serif); font-size: 1.35rem; line-height: 1.55; color: rgba(245, 241, 234, 0.86); }
.pillars { display: grid; gap: 18px; margin-top: 46px; }
@media (min-width: 780px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { padding-top: 18px; border-top: 1px solid rgba(201, 168, 118, 0.22); }
.pillar span { font-family: var(--serif); color: var(--gold); font-size: 1.4rem; }
.pillar p { margin: 8px 0 0; font-size: 0.95rem; }

/* CAROUSEL */
.carousel { margin-top: 48px; }
.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.quote {
  scroll-snap-align: center;
  flex: 0 0 min(100%, 420px);
  margin: 0;
  padding: 34px 30px;
  border: 1px solid rgba(245, 241, 234, 0.1);
  border-radius: 18px;
  background: rgba(13, 13, 13, 0.5);
}
.quote blockquote {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(245, 241, 234, 0.82);
}
.quote figcaption { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); }
.carousel__nav { display: flex; justify-content: center; gap: 12px; margin-top: 26px; }
.carousel__nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease;
}
.carousel__nav button:hover { background: rgba(201, 168, 118, 0.12); }

/* STEPS */
.steps { list-style: none; padding: 0; margin: 30px 0 34px; display: grid; gap: 18px; counter-reset: s; }
.steps li { display: grid; gap: 2px; padding-left: 44px; position: relative; counter-increment: s; }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.05rem;
}
.steps strong { font-family: var(--serif); font-size: 1.1rem; }
.steps span { color: var(--muted); font-size: 0.95rem; }

/* CONTATO */
.contact-line {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 4px;
  margin-bottom: 30px;
}
.socials { display: flex; flex-wrap: wrap; gap: 22px; }
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.socials a:hover { color: var(--gold); }
.socials svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; }

.form { display: grid; gap: 16px; padding: clamp(26px, 4vw, 38px); border: 1px solid rgba(201, 168, 118, 0.18); border-radius: 20px; background: rgba(245, 241, 234, 0.03); }
.form label { display: grid; gap: 8px; }
.form span { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage); }
.form input, .form textarea {
  width: 100%;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 10px;
  color: var(--off);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 13px 15px;
  transition: border-color 0.3s ease;
  resize: vertical;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form input::placeholder, .form textarea::placeholder { color: rgba(245, 241, 234, 0.32); }
.form button { justify-self: start; border: none; }
.form__hint { margin: 0; font-size: 0.85rem; color: var(--sage); min-height: 1.2em; }

/* FOOTER */
.footer { padding: 60px 0 110px; text-align: center; border-top: 1px solid rgba(201, 168, 118, 0.12); }
.footer__name { font-family: var(--serif); font-size: 1.5rem; color: var(--off); margin: 0 0 6px; }
.footer__name span { color: var(--gold); }
.footer__tag { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245, 241, 234, 0.45); margin: 0 0 22px; }
.footer__small { font-size: 0.78rem; color: rgba(245, 241, 234, 0.35); margin: 0; }

/* WHATSAPP FAB */
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1f2d20;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.9);
  transition: transform 0.35s ease;
}
.wa:hover { transform: scale(1.07); }
.wa svg { width: 30px; height: 30px; fill: var(--off); position: relative; z-index: 1; }
.wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa__pulse { animation: none; }
}