/* ============================================================
   Jeovanio Santana — dark "executive" system
   Tokens replicated from the approved bio-link reference
   (matte black / graphite / soft blue, Sora + Inter)
   ============================================================ */

:root {
  --matte-black: oklch(15% .012 260);
  --graphite: oklch(20% .015 260);
  --muted: oklch(22% .015 250);
  --soft-white: oklch(97% .005 250);
  --premium-gray: oklch(75% .012 260);
  --executive: oklch(40% .09 240);
  --soft-blue: oklch(62% .09 240);
  --petrol: oklch(32% .08 245);

  --border: oklch(100% 0 0 / .08);
  --glass-bg: oklch(100% 0 0 / .04);
  --glass-border: oklch(100% 0 0 / .08);

  --shadow-premium: 0 20px 60px -20px oklch(32% .08 245 / .45), 0 1px 0 0 oklch(100% 0 0 / .06) inset;
  --shadow-glow: 0 0 60px -10px oklch(62% .09 240 / .5);

  --gradient-text: linear-gradient(135deg, oklch(97% .005 250), oklch(62% .09 240));
  --gradient-hero: radial-gradient(ellipse at top, oklch(40% .09 240 / .45), transparent 60%),
                    radial-gradient(ellipse at bottom, oklch(32% .08 245 / .35), transparent 55%);
  --gradient-button: linear-gradient(135deg, oklch(40% .09 240 / .55), oklch(32% .08 245 / .35));

  --radius: 1rem;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--matte-black);
  color: var(--soft-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--soft-white);
  text-wrap: balance;
  margin: 0;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
}

/* Background FX — grid + glow blobs. Fixed (sitewide) on single-screen pages
   like the bio link; absolute + confined to the hero on the multi-section site
   so scrolling text doesn't sit on top of a moving cosmic backdrop. */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero .bg-fx {
  position: absolute;
}
.bg-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gradient-hero);
}
.bg-fx::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, oklch(100% 0 0 / .025) 1px, transparent 1px),
    linear-gradient(oklch(100% 0 0 / .025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(#000 35%, transparent 78%);
  mask-image: radial-gradient(#000 35%, transparent 78%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .22;
  --px: 0px;
  --py: 0px;
  transform: translate(var(--px), var(--py));
  animation: floatSlow 9s ease-in-out infinite;
}
.blob.b1 { top: -8%; left: calc(50% - 140px); width: 280px; height: 280px; background: var(--soft-blue); }
.blob.b2 { bottom: 22%; right: -6%; width: 260px; height: 260px; background: var(--petrol); animation-delay: 2s; }
.blob.b3 { top: 45%; left: -8%; width: 220px; height: 220px; background: var(--executive); animation-delay: 4s; }

@keyframes floatSlow {
  0%, 100% { opacity: .35; transform: translate(var(--px), var(--py)) scale(1); }
  50% { opacity: .5; transform: translate(calc(var(--px) - 18px), calc(var(--py) - 18px)) scale(1.05); }
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.08); }
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 oklch(62% .09 240 / .45), 0 20px 50px -15px oklch(62% .09 240 / .55); }
  50% { box-shadow: 0 0 0 8px oklch(62% .09 240 / 0), 0 28px 65px -15px oklch(62% .09 240 / .75); }
}
.fade-up { animation: fadeUp .6s ease both; }
@media (prefers-reduced-motion: reduce) {
  .blob, .fade-up, .glow-pulse { animation: none !important; }
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ============ INTRO OVERLAY — "Mais [palavra]" na abertura ============ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--matte-black);
  animation: introFadeOut .6s ease forwards;
  animation-delay: 6s;
}
.intro-mais {
  display: inline-flex;
  align-items: baseline;
  gap: .3em;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 6vw, 52px);
  color: var(--soft-white);
}
.intro-mais-words {
  position: relative;
  display: inline-grid;
}
.intro-mais-word {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(45%);
  color: var(--soft-blue);
  animation: introWordCycle 1.45s cubic-bezier(.65,0,.35,1) forwards;
}
.intro-mais-word:nth-child(1) { animation-delay: .1s; }
.intro-mais-word:nth-child(2) { animation-delay: 1.55s; }
.intro-mais-word:nth-child(3) { animation-delay: 3s; }
.intro-mais-word:nth-child(4) { animation-delay: 4.45s; }

@keyframes introWordCycle {
  0%   { opacity: 0; transform: translateY(45%); }
  20%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-45%); }
}
@keyframes introFadeOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--font-display);
  border: 1px solid var(--glass-border);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn-primary {
  background: var(--gradient-button);
  color: var(--soft-white);
  border-color: oklch(62% .09 240 / .4);
  box-shadow: var(--shadow-premium);
}
.btn-primary:hover { transform: translateY(-2px); border-color: oklch(62% .09 240 / .7); }
.btn-ghost { background: var(--glass-bg); color: var(--soft-white); }
.btn-ghost:hover { border-color: oklch(62% .09 240 / .4); }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--soft-blue);
  margin-bottom: 16px;
}
.eyebrow .rule { height: 1px; width: 28px; background: linear-gradient(90deg, transparent, var(--soft-blue)); }
.eyebrow .rule.r { background: linear-gradient(90deg, var(--soft-blue), transparent); }

/* Badge de seção — sinaliza oferta alternativa (ex: mentoria) */
.section-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: oklch(62% .09 240 / .15);
  border: 1px solid oklch(62% .09 240 / .4);
  color: var(--soft-blue);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============ NAV (site) ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: oklch(15% .012 260 / .55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(100% 0 0 / .05);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 9px; }
.nav-brand img { height: 24px; width: auto; }
.nav-brand span { font-family: var(--font-display); font-size: 14.5px; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 13.5px; color: var(--premium-gray); transition: color .2s ease; }
.nav-links a:hover { color: var(--soft-white); }
.btn-nav { padding: 8px 18px; font-size: 13px; }

/* ============ HERO (site) ============ */
.hero { padding: 96px 0 76px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 46px; line-height: 1.14; }
.hero-cascade { display: flex; flex-direction: column; gap: 2px; }
.cascade-line { display: block; opacity: 0; animation: fadeUp .6s ease both; }
.cascade-line em {
  font-style: normal;
  color: var(--soft-blue);
  text-shadow: 0 0 24px oklch(62% .09 240 / .45);
}
.cascade-cursor {
  display: inline-block;
  width: 3px;
  height: .8em;
  margin-left: 6px;
  background: var(--soft-blue);
  vertical-align: -0.1em;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Foto + cards flutuantes do hero */
.hero-photo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--graphite);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-premium);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-photo-arc {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px oklch(62% .09 240 / .35), 0 0 70px -10px oklch(62% .09 240 / .5);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}
.stat-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 12px;
  animation: statFloat 5s ease-in-out infinite;
}
.stat-card .stat-label { font-size: 11px; color: var(--premium-gray); }
.stat-card .stat-value { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--soft-white); }
.stat-card-1 { top: 8%; left: -6%; animation-delay: 0s; }
.stat-card-2 { bottom: 10%; right: -8%; animation-delay: 1.4s; }
@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 860px) {
  .stat-card-1 { left: 0; }
  .stat-card-2 { right: 0; }
}
.hero .lede { color: var(--premium-gray); font-size: 18px; max-width: 52ch; margin: 20px 0 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  font-size: 12px;
  color: var(--premium-gray);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 13px;
  background: var(--glass-bg);
}
.hero-mark { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-mark .ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}
.hero-mark .ring::before {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: var(--soft-blue);
  opacity: .18;
  filter: blur(50px);
  animation: pulseGlow 3.5s ease-in-out infinite;
}
.hero-mark img { width: 96px; position: relative; filter: drop-shadow(0 4px 22px oklch(62% .09 240 / .5)); }

/* ============ SECTIONS (site) ============ */
section { padding: 76px 0; background: linear-gradient(180deg, var(--matte-black), oklch(16% .013 260)); }
section.alt { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, var(--graphite), oklch(19% .014 260)); }

/* Mentoria — tratamento próprio, sinaliza "rota alternativa" */
section.mentoria-alt {
  border-top: 1px solid oklch(62% .09 240 / .3);
  border-bottom: 1px solid oklch(62% .09 240 / .3);
  background: linear-gradient(180deg, oklch(19% .02 245), oklch(16% .015 255));
}
.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-head h2 { font-size: 30px; }
.section-head p { color: var(--premium-gray); margin-top: 12px; font-size: 16px; }

/* Fit columns */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-col { border-radius: var(--radius); padding: 28px 30px; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.fit-col:hover { transform: translateY(-3px); box-shadow: 0 12px 32px -14px oklch(62% .09 240 / .3); }
.fit-col h3 { font-family: var(--font-sans); font-size: 12px; letter-spacing: .8px; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.fit-col.yes { border-color: oklch(62% .09 240 / .3); }
.fit-col.yes h3 { color: var(--soft-blue); }
.fit-col.no h3 { color: var(--premium-gray); }
.fit-col ul { margin: 0; padding-left: 20px; }
.fit-col li { margin-bottom: 9px; font-size: 15px; color: var(--premium-gray); }

.fit-nudge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: 12px;
  background: oklch(62% .09 240 / .1);
  border: 1px solid oklch(62% .09 240 / .35);
  font-size: 13.5px;
  color: var(--soft-white);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.fit-nudge:hover { background: oklch(62% .09 240 / .18); border-color: oklch(62% .09 240 / .55); transform: translateX(2px); }
.fit-nudge strong { color: var(--soft-blue); font-weight: 600; white-space: nowrap; }
.fit-nudge .arrow { display: inline-block; transition: transform .2s ease; }
.fit-nudge:hover .arrow { transform: translateX(3px); }

/* Services */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc-card { border-radius: 18px; padding: 34px 32px; transition: transform .25s ease, border-color .25s ease; position: relative; overflow: hidden; }
.svc-card:hover { transform: translateY(-3px); border-color: oklch(62% .09 240 / .35); box-shadow: 0 12px 32px -12px oklch(62% .09 240 / .35); }
.svc-num { font-family: var(--font-display); color: var(--soft-blue); font-size: 14px; margin-bottom: 18px; display: block; }
.svc-card h3 { font-size: 21px; margin-bottom: 12px; }
.svc-card p { color: var(--premium-gray); font-size: 15px; margin-bottom: 18px; }
.svc-card ul { margin: 0; padding-left: 20px; }
.svc-card li { font-size: 14.5px; color: var(--premium-gray); margin-bottom: 8px; }

/* Process */
.process { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; }
.process-row { display: grid; grid-template-columns: 56px 200px 1fr; gap: 20px; align-items: center; padding: 22px 26px; }
.process-row + .process-row { border-top: 1px solid var(--border); }
.process-num { font-family: var(--font-display); color: var(--soft-blue); font-size: 17px; }
.process-title { font-weight: 600; font-family: var(--font-display); font-size: 15px; }
.process-desc { color: var(--premium-gray); font-size: 14.5px; }

/* Results */
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card { border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.result-card:hover { transform: translateY(-3px); border-color: oklch(62% .09 240 / .35); box-shadow: 0 12px 32px -12px oklch(62% .09 240 / .35); }
.result-shot { width: 100%; display: block; border-bottom: 1px solid var(--border); }
.result-info { padding: 18px 20px; }
.result-info .tag { font-size: 11px; letter-spacing: .7px; text-transform: uppercase; color: var(--soft-blue); font-weight: 600; margin-bottom: 8px; display: block; }
.result-info p { font-size: 13.5px; color: var(--premium-gray); margin: 0; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border-radius: var(--radius); padding: 22px 26px; }
.faq-item h3 { font-size: 16px; font-family: var(--font-display); font-weight: 600; margin-bottom: 8px; }
.faq-item p { margin: 0; color: var(--premium-gray); font-size: 14.5px; }

/* Closing CTA */
.closing {
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  background: var(--gradient-button);
  border: 1px solid oklch(62% .09 240 / .35);
  position: relative;
  overflow: hidden;
}
.closing h2 { font-size: 30px; margin-bottom: 14px; }
.closing p { color: var(--premium-gray); max-width: 50ch; margin: 0 auto 28px; font-size: 16px; }
.closing .hero-ctas { justify-content: center; }

/* Footer */
footer.site-footer {
  padding: 56px 0 0;
  color: var(--premium-gray);
  font-size: 13px;
  border-top: 1px solid var(--border);
}
footer.site-footer a { color: var(--premium-gray); transition: color .2s ease; }
footer.site-footer a:hover { color: var(--soft-white); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand .nav-brand { margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; max-width: 32ch; margin: 0; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--soft-white);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a { font-size: 13.5px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}
.footer-lgpd { color: var(--premium-gray); opacity: .75; max-width: 46ch; }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 860px) {
  html { overflow-x: hidden; }
  body { overflow-x: hidden; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { order: -1; margin-bottom: 8px; }
  .hero-photo-frame { max-width: 280px; margin: 0 auto; }
  .fit-grid, .svc-grid { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; gap: 6px; }
  .nav-links { display: none; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 32px; }
  section { padding: 56px 0; }
  .section-head h2 { font-size: 25px; }
  .fit-col, .svc-card { padding: 24px 22px; }
  .faq-item { padding: 18px 20px; }
  .closing { padding: 40px 26px; }
  .closing h2 { font-size: 25px; }
  .btn { min-height: 44px; padding-top: 0; padding-bottom: 0; }
  .hero-ctas .btn, .closing .btn { flex: 1 1 auto; justify-content: center; }
  /* Margem de segurança: menos custo de composição em celulares mais fracos */
  .glass, .nav, .lightbox { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .blob { filter: blur(40px); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 27px; }
  .nav-brand span { display: none; }
  .btn-nav { padding: 8px 14px; }
  .hero-photo-frame { max-width: 220px; }
  .stat-card { padding: 9px 12px; }
  .stat-card .stat-value { font-size: 15px; }
  .stat-card .stat-label { font-size: 9.5px; }
  .closing h2 { font-size: 21px; }
  .section-head h2 { font-size: 22px; }
}

/* ============================================================
   VIDA — scroll progress, reveals, spotlight, micro-interações
   ============================================================ */

/* Barra de progresso de leitura */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--executive), var(--soft-blue));
  box-shadow: 0 0 12px oklch(62% .09 240 / .6);
  z-index: 200;
}

/* Reveal ao rolar a tela */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.fit-grid [data-reveal]:nth-child(2) { transition-delay: .1s; }
.svc-grid [data-reveal]:nth-child(2) { transition-delay: .1s; }
.result-grid [data-reveal]:nth-child(2) { transition-delay: .1s; }
.result-grid [data-reveal]:nth-child(3) { transition-delay: .2s; }
.process [data-reveal]:nth-child(2) { transition-delay: .08s; }
.process [data-reveal]:nth-child(3) { transition-delay: .16s; }
.process [data-reveal]:nth-child(4) { transition-delay: .24s; }
.faq [data-reveal]:nth-child(2) { transition-delay: .07s; }
.faq [data-reveal]:nth-child(3) { transition-delay: .14s; }
.faq [data-reveal]:nth-child(4) { transition-delay: .21s; }
.faq [data-reveal]:nth-child(5) { transition-delay: .28s; }
.footer-grid [data-reveal]:nth-child(2) { transition-delay: .08s; }
.footer-grid [data-reveal]:nth-child(3) { transition-delay: .16s; }

/* Spotlight — glow que segue o cursor dentro do card */
.spotlight { position: relative; }
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), oklch(62% .09 240 / .14), transparent 72%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.spotlight:hover::before { opacity: 1; }
.spotlight > * { position: relative; }

/* Nav — sublinhado animado + logo com vida */
.nav-links a { position: relative; padding-bottom: 2px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--soft-blue);
  transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--soft-white); }
.nav-links a.is-active::after { width: 100%; }
.nav-brand img { transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
.nav-brand:hover img { transform: rotate(-10deg) scale(1.1); }

/* Botão primário — brilho passando no hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, oklch(100% 0 0 / .3), transparent 65%);
  transform: translateX(-120%);
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.btn-primary:hover::after { transform: translateX(120%); }

/* Ícones e números ganham vida no hover do card pai */
.svc-card, .process-row { transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.svc-num { transition: transform .3s cubic-bezier(.34,1.56,.64,1), color .3s ease; display: inline-block; }
.svc-card:hover .svc-num { transform: scale(1.15) translateY(-2px); color: var(--soft-white); }
.process-num { transition: transform .3s cubic-bezier(.34,1.56,.64,1), text-shadow .3s ease; display: inline-block; }
.process-row:hover { background: oklch(100% 0 0 / .02); }
.process-row:hover .process-num { transform: scale(1.2); text-shadow: 0 0 18px oklch(62% .09 240 / .6); }
.fit-nudge .arrow { display: inline-block; }
.chip { transition: transform .25s ease, border-color .25s ease; }
.chip:hover { transform: translateY(-2px); border-color: oklch(62% .09 240 / .4); }

/* Cards de resultado — leve zoom na imagem no hover, cursor de lupa */
.result-shot { transition: transform .5s cubic-bezier(.16,1,.3,1); cursor: zoom-in; }
.result-card:hover .result-shot { transform: scale(1.04); }

/* Fade-in em cascata dentro dos cards, disparado quando o card entra na tela */
.fit-col ul li, .svc-card ul li { opacity: 0; }
.fit-col.is-visible ul li, .svc-card.is-visible ul li {
  animation: fadeUp .5s cubic-bezier(.16,1,.3,1) both;
}
.fit-col.is-visible ul li:nth-child(1), .svc-card.is-visible ul li:nth-child(1) { animation-delay: .15s; }
.fit-col.is-visible ul li:nth-child(2), .svc-card.is-visible ul li:nth-child(2) { animation-delay: .23s; }
.fit-col.is-visible ul li:nth-child(3), .svc-card.is-visible ul li:nth-child(3) { animation-delay: .31s; }
.fit-col.is-visible ul li:nth-child(4), .svc-card.is-visible ul li:nth-child(4) { animation-delay: .39s; }

/* Eyebrow — as linhas crescem quando a seção entra na tela */
.eyebrow .rule { width: 0; transition: width .6s cubic-bezier(.16,1,.3,1) .25s; }
[data-reveal].is-visible .eyebrow .rule { width: 28px; }

/* Stat cards do hero — fade-in individual antes de começar a flutuar */
.stat-card {
  opacity: 0;
  animation: statIntro .6s cubic-bezier(.16,1,.3,1) both, statFloat 5s ease-in-out 5.4s infinite;
}
.stat-card-1 { animation-delay: .4s, 5.4s; }
.stat-card-2 { animation-delay: .6s, 5.6s; }
@keyframes statIntro {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Lightbox das imagens de resultado */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: oklch(15% .012 260 / .92);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 720px);
  max-height: 85vh;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-premium);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--soft-white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-progress { display: none; }
  .spotlight::before { display: none; }
  .btn-primary::after { display: none; }
  .fit-col ul li, .svc-card ul li, .stat-card { opacity: 1 !important; animation: none !important; }
  .eyebrow .rule { width: 28px !important; transition: none !important; }
}

/* ============================================================
   BIO LINK PAGE
   ============================================================ */
.bio-page { min-height: 100vh; display: flex; flex-direction: column; }
.bio-wrap { max-width: 420px; margin: 0 auto; padding: 56px 20px 40px; flex: 1; display: flex; flex-direction: column; width: 100%; }

.bio-header { display: flex; flex-direction: column; align-items: center; text-align: center; }
.bio-avatar { position: relative; margin-bottom: 22px; width: 96px; height: 96px; }
.bio-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--soft-blue);
  filter: blur(24px);
  opacity: .45;
  animation: pulseGlow 3.5s ease-in-out infinite;
}
.bio-avatar .ring {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-premium);
}
.bio-avatar img { width: 60px; filter: drop-shadow(0 2px 12px oklch(62% .09 240 / .6)); }

.bio-header h1 { font-size: 28px; }
.bio-header .lede { margin-top: 12px; max-width: 30ch; color: var(--soft-white); opacity: .85; font-size: 15px; line-height: 1.5; }

.bio-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  padding: 6px 13px;
  font-size: 11px;
  color: var(--premium-gray);
}
.bio-badge svg { color: var(--soft-blue); width: 12px; height: 12px; }

.bio-divider { margin-top: 20px; display: flex; align-items: center; gap: 10px; }
.bio-divider .rule { height: 1px; width: 30px; }
.bio-divider .rule.l { background: linear-gradient(90deg, transparent, var(--soft-blue)); }
.bio-divider .rule.r { background: linear-gradient(90deg, var(--soft-blue), transparent); }
.bio-divider span { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--soft-blue); }

.bio-hint { margin-top: 24px; font-size: 12px; color: var(--premium-gray); }

.bio-nav { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

.link-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .25s ease, border-color .25s ease;
}
.link-card:hover { transform: translateY(-2px); }
.link-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, oklch(100% 0 0 / .08), transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
  pointer-events: none;
}
.link-card:hover::after { transform: translateX(100%); }

.link-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(15% .012 260 / .6);
  border: 1px solid var(--glass-border);
  color: var(--soft-blue);
}
.link-body { flex: 1; min-width: 0; }
.link-body .row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.link-body h2 { font-size: 15px; font-family: var(--font-display); font-weight: 600; }
.link-body p { margin: 4px 0 0; font-size: 12.5px; color: var(--premium-gray); line-height: 1.4; }
.link-arrow { flex-shrink: 0; color: var(--premium-gray); transition: transform .25s ease, color .25s ease; }
.link-card:hover .link-arrow { transform: translate(2px, -2px); color: var(--soft-blue); }

.link-card.primary {
  background: linear-gradient(135deg, oklch(40% .09 240 / .55), oklch(32% .08 245 / .4));
  border: 1px solid oklch(62% .09 240 / .4);
  animation: ctaGlow 2.8s ease-in-out infinite;
}
.link-card.primary .link-icon { width: 48px; height: 48px; background: oklch(62% .09 240 / .15); border-color: oklch(62% .09 240 / .5); }

.link-card.disabled {
  opacity: .5;
  pointer-events: none;
}
.link-card.disabled .link-icon { color: var(--premium-gray); }
.disabled-tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--premium-gray);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 9px;
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  border-radius: 999px;
  border: 1px solid oklch(62% .09 240 / .3);
  background: oklch(62% .09 240 / .1);
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--soft-blue);
}
.badge-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--soft-blue); animation: pulseGlow 2s ease-in-out infinite; }

.bio-social { margin-top: 40px; }
.bio-social .divider-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bio-social .divider-row .rule { flex: 1; height: 1px; background: var(--border); }
.bio-social .divider-row span { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--premium-gray); }
.bio-social .icons { display: flex; justify-content: center; gap: 12px; }
.bio-social .icons a {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--premium-gray);
  transition: transform .25s ease, color .25s ease, border-color .25s ease;
}
.bio-social .icons a:hover { transform: translateY(-2px); color: var(--soft-white); border-color: oklch(62% .09 240 / .5); }

.bio-footer { margin-top: auto; padding-top: 48px; text-align: center; }
.bio-footer p { font-size: 11.5px; line-height: 1.5; color: var(--premium-gray); opacity: .85; margin: 0; }
.bio-footer .copyright { margin-top: 12px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--premium-gray); opacity: .5; }
