/* ============================================================
   MAGEN — Tokens & Sistema Tipográfico
   ============================================================ */

:root {
  /* Paleta oficial MAGEN (manual da marca) */
  --ink:        #0B1F3F;   /* Marinho profundo (principal) */
  --ink-deep:   #07152C;   /* Marinho mais profundo (para fundos) */
  --graphite:   #4A4A4A;   /* Grafite (neutro) */
  --paper:      #FBF6EC;   /* Off-white (fundo claro) */
  --paper-warm: #F3ECD9;   /* Off-white levemente mais quente */
  --gold:       #C5A880;   /* Dourado (acento) */
  --gold-soft:  #B6966A;   /* Dourado escuro */
  --gold-deep:  #8E7349;   /* Dourado mais escuro (texto sobre paper) */
  --green:      #1B3A2E;   /* Verde escuro (alternativo) */
  --line:       #E2D8C2;   /* Linhas finas (sobre paper) */
  --line-dark:  #1F3556;   /* Linhas (sobre marinho) */
  --muted:      #6B6B6B;   /* Texto secundário sobre paper */
  --muted-dark: #9AA4B5;   /* Texto secundário sobre marinho */

  /* Tipografia oficial: Poppins */
  --font-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Ritmo */
  --container:  1240px;
  --gutter:     clamp(20px, 5vw, 48px);
  --section-y:  clamp(80px, 12vw, 160px);

  /* Curvas */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   Base
   ============================================================ */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

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

/* ============================================================
   Tipografia institucional
   ============================================================ */

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.display-xl  { font-size: clamp(40px, 6.4vw, 76px); font-weight: 700; }
.display-lg  { font-size: clamp(30px, 4.4vw, 50px); font-weight: 700; }
.display-md  { font-size: clamp(24px, 3vw, 36px); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.eyebrow-light { color: var(--gold); }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink);
  max-width: 62ch;
}

.lede-muted { color: var(--muted); }

/* ============================================================
   Layout
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section-tight {
  padding-top: calc(var(--section-y) * 0.7);
  padding-bottom: calc(var(--section-y) * 0.7);
}

.surface-paper { background: var(--paper); color: var(--ink); }
.surface-warm  { background: var(--paper-warm); color: var(--ink); }
.surface-ink   { background: var(--ink); color: var(--paper); }
.surface-deep  { background: var(--ink-deep); color: var(--paper); }

/* Hairlines */
.hairline,
.hairline-top {
  border-top: 1px solid var(--line);
}
.surface-ink .hairline,
.surface-deep .hairline,
.surface-ink .hairline-top,
.surface-deep .hairline-top {
  border-color: var(--line-dark);
}

.hairline-bottom {
  border-bottom: 1px solid var(--line);
}
.surface-ink .hairline-bottom,
.surface-deep .hairline-bottom {
  border-color: var(--line-dark);
}

/* ============================================================
   Botões
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: all 320ms var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(11, 31, 63, 0.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(197, 168, 128, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 650ms var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--graphite);
  border-color: var(--graphite);
  transform: translateY(-1px);
}
.btn-primary:hover::after { left: 130%; }

.btn-primary-inverse {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-primary-inverse:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.surface-ink .btn-ghost,
.surface-deep .btn-ghost {
  color: var(--paper);
  border-color: var(--line-dark);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.surface-ink .btn-ghost:hover,
.surface-deep .btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
  transition: color 320ms var(--ease-out), border-color 320ms var(--ease-out);
}
.btn-link:hover { color: var(--gold-deep); border-color: var(--gold); }
.surface-ink .btn-link, .surface-deep .btn-link {
  color: var(--paper);
  border-color: var(--line-dark);
}
.surface-ink .btn-link:hover, .surface-deep .btn-link:hover {
  color: var(--gold); border-color: var(--gold);
}

/* ============================================================
   Navegação
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 320ms var(--ease-out), border-color 320ms var(--ease-out), padding 320ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(247, 244, 238, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.78;
  transition: opacity 240ms var(--ease-out), color 240ms var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms var(--ease-out);
}
.nav-links a:hover { opacity: 1; color: var(--gold-deep); }
.nav-links a:hover::after { transform: scaleX(1); }

/* CTA do menu — preenchimento dourado deslizante (estilo Nubank) */
.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-size: 13px;
  padding: 11px 20px;
  transition: color 360ms var(--ease-out), border-color 360ms var(--ease-out);
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 400ms var(--ease-out);
}
.nav-cta:hover {
  color: var(--ink);
  border-color: var(--gold);
}
.nav-cta:hover::before { transform: translateX(0); }
/* Hambúrguer (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms var(--ease-out), opacity 200ms var(--ease-out), background 320ms var(--ease-out);
}
@media (max-width: 880px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(80vw, 330px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 88px 36px 40px;
    margin: 0;
    background: var(--ink-deep);
    transform: translateX(100%);
    transition: transform 440ms var(--ease-out);
    z-index: 110;
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.45);
  }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links a {
    color: var(--paper);
    opacity: 0;
    transform: translateX(26px);
    font-size: 19px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.16);
    transition: opacity 360ms var(--ease-out), transform 360ms var(--ease-out);
  }
  .nav-open .nav-links a { opacity: 0.92; transform: none; }
  .nav-open .nav-links li:nth-child(1) a { transition-delay: 0.10s; }
  .nav-open .nav-links li:nth-child(2) a { transition-delay: 0.16s; }
  .nav-open .nav-links li:nth-child(3) a { transition-delay: 0.22s; }
  .nav-open .nav-links li:nth-child(4) a { transition-delay: 0.28s; }
  .nav-open .nav-links li:nth-child(5) a { transition-delay: 0.34s; }
  .nav-open .nav-links li:nth-child(6) a { transition-delay: 0.40s; }
  .nav-links a::after { display: none; }
  .nav-open .nav-toggle span { background: var(--paper); }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   Wordmark
   ============================================================ */

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.wordmark img {
  display: block;
  height: 38px;
  width: auto;
  user-select: none;
}
.wordmark-lg img { height: 56px; }
@media (max-width: 880px) {
  .wordmark img { height: 32px; }
  .wordmark-lg img { height: 44px; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding-top: clamp(140px, 18vw, 200px);
  padding-bottom: var(--section-y);
}

/* Fundo animado do hero (Notion + cores MAGEN) */
.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: -30%;
  background-image:
    linear-gradient(to right, rgba(197, 168, 128, 0.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(197, 168, 128, 0.22) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, #000 32%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, #000 32%, transparent 78%);
  animation: heroGridDrift 14s linear infinite;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.hero-glow-1 {
  width: 620px;
  height: 620px;
  top: -160px;
  left: -80px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.65), transparent 70%);
  animation: heroFloat1 9s ease-in-out infinite;
}
.hero-glow-2 {
  width: 540px;
  height: 540px;
  top: 40px;
  right: -100px;
  background: radial-gradient(circle, rgba(27, 58, 46, 0.32), transparent 70%);
  animation: heroFloat2 11s ease-in-out infinite;
}
@keyframes heroGridDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(58px, 58px); }
}
@keyframes heroFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(120px, 80px) scale(1.18); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, 90px) scale(1.22); }
}
/* Animações solicitadas explicitamente pelo cliente — mantidas mesmo
   com "reduzir movimento" do sistema. (Acessibilidade abdicada a pedido.) */

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
/* Entrada escalonada do hero (visível ao carregar) */
.hero-content .eyebrow,
.hero-content h1,
.hero-content .lede,
.hero-content .hero-ctas {
  animation: heroRise 1000ms var(--ease-out) both;
}
.hero-content .eyebrow   { animation-delay: 80ms; }
.hero-content h1         { animation-delay: 200ms; }
.hero-content .lede      { animation-delay: 380ms; }
.hero-content .hero-ctas { animation-delay: 540ms; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  margin: 24px 0 28px;
}
.hero .lede {
  margin-bottom: 44px;
  max-width: 56ch;
  color: var(--ink);
  opacity: 0.82;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ============================================================
   Vídeo
   ============================================================ */

.video-section {
  padding: clamp(110px, 12vw, 170px) 0;
  position: relative;
  transition: background-color 600ms linear;
  /* Separação diagonal — corte de uma seção pra outra (estilo Conquer/Unilab) */
  clip-path: polygon(0 3.2vw, 100% 0, 100% 100%, 0 calc(100% - 3.2vw));
  margin-top: -1px;
}

/* ============================================================
   Nome vertical na lateral (estilo "QUEM SOMOS" da Conquer)
   ============================================================ */
.has-sidelabel {
  position: relative;
  overflow: clip;
}
.has-sidelabel .container {
  position: relative;
  z-index: 1;
}
.side-label {
  position: absolute;
  top: 50%;
  right: 0.06em;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 104px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  /* Brilho dourado sutil + borda off-white (no tom do site) */
  background: linear-gradient(180deg,
    rgba(11, 31, 63, 0.55) 0%,
    rgba(182, 150, 106, 0.55) 38%,
    #E7D4B0 50%,
    rgba(182, 150, 106, 0.55) 62%,
    rgba(11, 31, 63, 0.55) 100%);
  background-size: 100% 320%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(226, 216, 194, 0.85);
  opacity: 0.45;
  filter: drop-shadow(0 10px 22px rgba(142, 115, 73, 0.25));
  animation: sideShimmer 5.5s ease-in-out infinite;
}
@keyframes sideShimmer {
  0%   { background-position: 50% 0%; }
  50%  { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}
@media (max-width: 880px) {
  .side-label { font-size: 52px; opacity: 0.4; }
}
.video-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.video-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
@property --bd-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: transparent;
  border: none;
  border-radius: 14px;
  overflow: visible;
  isolation: isolate;
}
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--ink-deep);
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 13px;
}
/* Borda surreal girando ao redor do vídeo */
.video-frame::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  z-index: 0;
  background: conic-gradient(from var(--bd-angle),
    var(--gold) 0%, #f3e3c4 12%, var(--ink) 30%, #1B3A2E 50%,
    var(--gold) 68%, #f3e3c4 82%, var(--gold) 100%);
  animation: videoBorderSpin 6s linear infinite;
}
/* Glow difuso surreal por trás */
.video-frame::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 26px;
  z-index: -1;
  background: conic-gradient(from var(--bd-angle),
    var(--gold), #1B3A2E, var(--ink), var(--gold-soft), var(--gold));
  filter: blur(32px);
  opacity: 0.6;
  animation: videoBorderSpin 6s linear infinite;
}
@keyframes videoBorderSpin {
  to { --bd-angle: 360deg; }
}
.video-caption {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted-dark);
  max-width: 60ch;
}

/* ============================================================
   Bloco de Identificação (dores)
   ============================================================ */

/* ============================================================
   Sintomas — cards empilhando no scroll (estilo Nubank)
   ============================================================ */
.symptoms-stack {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 9vw, 130px);
}
/* Layout editorial alternado — imagem de um lado, texto do outro */
.symptom-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "media head" "media desc";
  grid-template-rows: auto auto;
  column-gap: clamp(36px, 5vw, 84px);
  row-gap: 18px;
  align-items: center;
}
.symptom-card:nth-child(even) {
  grid-template-areas: "head media" "desc media";
}
.symptom-content { display: contents; }
.symptom-media {
  grid-area: media;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink), var(--gold-soft));
  box-shadow: 0 30px 64px rgba(11, 31, 63, 0.16);
}
.symptom-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms var(--ease-out);
}
.symptom-card:hover .symptom-media img { transform: scale(1.05); }
.symptom-media-num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: rgba(251, 246, 236, 0.6);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.symptom-head {
  grid-area: head;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  background: none;
  height: auto;
}
.symptom-num {
  padding: 0;
  border: none;
  border-radius: 0;
  height: auto;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.symptom-num::before { content: "Sintoma "; }
.symptom-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.symptom-desc {
  grid-area: desc;
  align-self: start;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 46ch;
}
@media (max-width: 880px) {
  .symptoms-stack { gap: 56px; }
  .symptom-card,
  .symptom-card:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "head" "desc";
    row-gap: 16px;
  }
}

/* ============================================================
   Posicionamento (split)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.split-aside .eyebrow { margin-bottom: 16px; display: block; }
.split-aside h2 { margin: 0; }
.split-body p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: var(--ink);
  opacity: 0.84;
}
.split-body p strong { color: var(--ink); opacity: 1; font-weight: 600; }
.split-body .pull {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  opacity: 1;
  padding: 28px 0 0;
  border-top: 1px solid var(--gold);
  margin-top: 36px;
}
.split-body .pull::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 22px;
  display: none;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   Pilares
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
  margin-top: 56px;
}
.pillar {
  position: relative;
  padding: clamp(28px, 2.3vw, 40px) clamp(24px, 1.9vw, 34px) clamp(30px, 2.5vw, 42px);
  border: 1px solid rgba(11, 31, 63, 0.07);
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff 0%, #fbf9f3 100%);
  box-shadow: 0 18px 44px -30px rgba(11, 31, 63, 0.28);
  overflow: hidden;
  transition: transform .38s var(--ease-out), box-shadow .38s var(--ease-out), border-color .38s var(--ease-out);
}
/* barra dourada no topo que cresce no hover */
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), #e7d4b0);
  transition: width .45s var(--ease-out);
}
.pillar:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 64px -30px rgba(11, 31, 63, 0.42);
  border-color: rgba(197, 168, 128, 0.5);
}
.pillar:hover::before { width: 100%; }
/* número grande em dourado gradiente */
.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #C5A880 0%, #EFDBB4 45%, #b8915f 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.pillar p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   PILARES — diagrama circular interativo (estilo Unilab)
   Ícones em roda; hover acende e troca o texto do centro.
   ============================================================ */
.pillars-layout { display: grid; gap: clamp(28px, 4vw, 60px); }
@media (min-width: 900px) {
  .pillars-layout {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
  }
  .pillars-intro { max-width: 460px; }
  .pillars-orbit { margin-top: 0 !important; }
}
.pillars-orbit {
  margin-top: clamp(36px, 5vw, 70px);
  display: flex;
  justify-content: center;
}
/* palavras grifadas no texto (estilo Unilab) */
.hl-text { color: var(--gold-deep); font-weight: 600; }
.orbit-ring {
  position: relative;
  width: min(580px, 92vw);
  aspect-ratio: 1;
  --radius: clamp(138px, 21vw, 230px);
  --size: clamp(72px, 9vw, 106px);
}
.orbit-ring::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: calc(var(--radius) * 2);
  height: calc(var(--radius) * 2);
  margin: calc(var(--radius) * -1);
  border-radius: 50%;
  border: 2px dashed rgba(197, 168, 128, 0.7);
  opacity: 0;
  transform: scale(0.55);
  transition: opacity .7s var(--ease-out) .15s, transform .8s cubic-bezier(.18,.8,.22,1) .15s;
}
.orbit-ring.is-revealed::before { opacity: 1; transform: scale(1); }
.orbit-center {
  position: absolute; inset: 20%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity .6s var(--ease-out) .5s;
}
.orbit-ring.is-revealed .orbit-center { opacity: 1; }
.orbit-eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 8px;
}
.orbit-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--ink); margin: 0 0 10px; letter-spacing: -0.01em;
}
.orbit-desc {
  font-size: clamp(12.5px, 0.92vw, 15px);
  color: var(--muted); line-height: 1.5; margin: 0; max-width: 24ch;
}
.orbit-center.swap .orbit-title,
.orbit-center.swap .orbit-desc { animation: orbitFade .35s var(--ease-out); }
@keyframes orbitFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.orbit-item {
  position: absolute; top: 50%; left: 50%;
  width: var(--size); height: var(--size);
  margin: calc(var(--size) / -2);
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  /* estado inicial: escondido no centro */
  transform: rotate(calc(var(--i) * 60deg)) translateY(0) rotate(calc(var(--i) * -60deg)) scale(0.15);
  opacity: 0;
  transition: transform .75s cubic-bezier(.18,.8,.22,1), opacity .5s var(--ease-out);
}
/* quando entra na tela: cada ícone "abre" do centro pra sua posição (em sequência) */
.orbit-ring.is-revealed .orbit-item {
  transform: rotate(calc(var(--i) * 60deg)) translateY(calc(-1 * var(--radius))) rotate(calc(var(--i) * -60deg)) scale(1);
  opacity: 1;
  transition-delay: calc(var(--i) * 0.1s);
}
.orbit-icon {
  width: 100%; height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: filter .3s var(--ease-out);
}
.orbit-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 50%; }
.orbit-item:hover .orbit-icon,
.orbit-item.is-active .orbit-icon { filter: drop-shadow(0 8px 22px rgba(197, 168, 128, 0.7)); }
/* piscada/glow dourado em onda pelos ícones parados */
@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(197, 168, 128, 0)); }
  50%      { filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.55)); }
}
.orbit-ring.is-revealed .orbit-item:not(.is-active):not(:hover) .orbit-icon {
  animation: iconGlow 2.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.42s);
}
/* ícones "vivos": animação própria quando ativo/hover */
@keyframes iconSpin { to { transform: rotate(360deg); } }
@keyframes iconBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes iconBeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes iconSwing { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }
.orbit-item.is-active .orbit-icon,
.orbit-item:hover .orbit-icon { animation: iconBob 1.7s ease-in-out infinite; }
.orbit-item[aria-label="Processos Críticos"].is-active .orbit-icon,
.orbit-item[aria-label="Processos Críticos"]:hover .orbit-icon { animation: iconSpin 6s linear infinite; }
.orbit-item[aria-label="Planejamento de 90 Dias"].is-active .orbit-icon,
.orbit-item[aria-label="Planejamento de 90 Dias"]:hover .orbit-icon { animation: iconBeat 1.5s ease-in-out infinite; }
.orbit-item[aria-label="Diagnóstico Real"].is-active .orbit-icon,
.orbit-item[aria-label="Diagnóstico Real"]:hover .orbit-icon { animation: iconBeat 1.8s ease-in-out infinite; }
.orbit-item[aria-label="Rotina de Gestão"].is-active .orbit-icon,
.orbit-item[aria-label="Rotina de Gestão"]:hover .orbit-icon { animation: iconSwing 2s ease-in-out infinite; }
@media (max-width: 560px) {
  .orbit-desc { max-width: 18ch; }
  .orbit-center { inset: 17%; }
}

/* ============================================================
   Método (estrutura de 6 meses)
   ============================================================ */

/* ============================================================
   Seção MÉTODO com fundo escuro (estilo Treinamentos da Conquer)
   ============================================================ */
.method-section {
  position: relative;
  color: var(--paper);
  background-color: var(--ink-deep);
  background-image:
    linear-gradient(rgba(7, 21, 44, 0.84), rgba(7, 21, 44, 0.93)),
    url('assets/img/feed/05.jpg');
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}
@media (min-width: 900px) {
  .method-section { background-attachment: fixed; }
}
.method-section .display { color: var(--paper); }
.method-section .eyebrow { color: var(--gold); }
.method-section .lede,
.method-section .lede-muted { color: var(--muted-dark); }
.method-section .method-meta {
  border-top-color: rgba(197, 168, 128, 0.28);
  border-bottom-color: rgba(197, 168, 128, 0.28);
}
.method-section .method-meta-item { border-right-color: rgba(197, 168, 128, 0.22); }
.method-section .method-meta-label { color: var(--gold); }
.method-section .method-meta-value { color: var(--paper); }
.method-section .method-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(158deg, rgba(11, 31, 63, 0.66), rgba(7, 21, 44, 0.5));
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out),
              box-shadow 420ms var(--ease-out), border-color 420ms var(--ease-out);
}
.method-section .method-card > * { position: relative; z-index: 1; }
/* número gigante fantasma no fundo do card */
.method-section .method-card::before {
  content: attr(data-num);
  position: absolute;
  top: -26px;
  right: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 128px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(197, 168, 128, 0.16);
  pointer-events: none;
  z-index: 0;
  transition: transform 600ms var(--ease-out), -webkit-text-stroke-color 420ms var(--ease-out);
}
/* linha de destaque dourada no topo */
.method-section .method-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(197, 168, 128, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 560ms var(--ease-out);
  z-index: 2;
}
/* entradas direcionais: 1º esquerda · meio de baixo · 3º direita */
.method-grid .method-card.reveal { opacity: 0; }
.method-grid .method-card[data-dir="left"].reveal  { transform: translateX(-90px); }
.method-grid .method-card[data-dir="up"].reveal    { transform: translateY(90px); }
.method-grid .method-card[data-dir="right"].reveal { transform: translateX(90px); }
.method-grid .method-card.reveal.is-visible { transform: none; opacity: 1; }
/* hover premium (depois das diretivas, pra vencer no hover) */
.method-section .method-card.is-visible:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 66px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(197, 168, 128, 0.25);
  border-color: rgba(197, 168, 128, 0.6);
}
.method-section .method-card.is-visible:hover::before {
  transform: scale(1.08) translateY(6px);
  -webkit-text-stroke-color: rgba(197, 168, 128, 0.42);
}
.method-section .method-card.is-visible:hover::after { transform: scaleX(1); }
.method-section .method-card-num { color: var(--gold); }
.method-section .method-card-title { color: var(--paper); }
.method-section .method-card-desc,
.method-section .method-card-note { color: var(--muted-dark); }
.method-section .method-card ul { border-top-color: rgba(197, 168, 128, 0.2); }
.method-section .method-card li {
  color: var(--paper);
  border-bottom-color: rgba(197, 168, 128, 0.16);
}
/* Título com palavra GIGANTE contornada atrás (estilo Treinamentos da Conquer) */
.method-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.method-intro .divider { margin-left: auto; margin-right: auto; }
.method-title-wrap {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin: 22px 0 0;
}
.method-title-wrap h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
}
.method-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  /* nudge óptico: caixas maiúsculas sobem visualmente; desce um pouco pra centrar no título */
  transform: translate(-50%, calc(-50% + 0.14em));
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  /* dimensionado pra caber inteiro no container, sem cortar as pontas */
  font-size: min(11.2vw, 150px);
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.6px rgba(231, 212, 176, 0.32);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 880px) {
  .method-ghost { font-size: 12vw; -webkit-text-stroke-width: 1px; letter-spacing: 0.01em; }
}

.method-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  margin-bottom: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method-meta-item {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.method-meta-item:last-child { border-right: none; }
.method-meta-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.method-meta-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
@media (max-width: 880px) {
  .method-meta { grid-template-columns: 1fr; }
  .method-meta-item { border-right: none; border-bottom: 1px solid var(--line); }
  .method-meta-item:last-child { border-bottom: none; }
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.method-card {
  padding: 36px 32px 40px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.method-card-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.method-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
}
.method-card-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.6;
}
.method-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
}
.method-card li {
  padding: 10px 0 10px 18px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
  line-height: 1.5;
}
.method-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.method-card-note {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
@media (max-width: 1080px) {
  /* Mobile: cards do método EMPILHAM no scroll (estilo Conquer) */
  .method-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
  }
  .method-grid .method-card {
    position: sticky;
    top: 84px;
    /* opaco no mobile pra o card cobrir totalmente o de baixo ao empilhar */
    background: linear-gradient(158deg, #112443 0%, #0a1a32 100%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 -2px 0 rgba(197,168,128,0.25), 0 24px 50px rgba(0,0,0,0.55);
  }
  .method-grid .method-card:nth-child(2) { top: 100px; }
  .method-grid .method-card:nth-child(3) { top: 116px; }
  /* entrada só em fade no mobile (sem deslocamento lateral que estoura a tela) */
  .method-grid .method-card[data-dir].reveal { transform: translateY(36px); }
  .method-grid .method-card.reveal.is-visible { transform: none; }
}

/* ============================================================
   Dashboard / Prova Real Vialab
   ============================================================ */

.dashboard-section {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.dashboard-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.dashboard-head h2 { margin: 0; color: var(--paper); }
.dashboard-head p {
  font-size: 17px;
  color: var(--muted-dark);
  line-height: 1.65;
  margin: 0;
  max-width: 50ch;
}
@media (max-width: 880px) {
  .dashboard-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.kpi {
  padding: 36px 28px 40px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kpi-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.kpi-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--paper);
  line-height: 1;
  margin: 4px 0;
}
.kpi-value .kpi-unit {
  font-size: 0.45em;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-left: 4px;
  vertical-align: top;
  display: inline-block;
  margin-top: 0.4em;
}
.kpi-label {
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.45;
}
@media (max-width: 1080px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .kpi-grid { grid-template-columns: 1fr; }
}

/* Linha do tempo: 2 → 40+ */
.growth-timeline {
  margin-top: 72px;
  padding: 56px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.growth-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 180px;
  margin: 0;
}
.growth-bar {
  flex: 1;
  background: var(--graphite);
  position: relative;
  transition: background 400ms var(--ease-out);
  min-width: 0;
}
.growth-bar.is-active { background: var(--gold); }
.growth-bar.is-start { background: var(--gold-soft); }
.growth-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted-dark);
  letter-spacing: 0.08em;
}
.growth-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.growth-meta-item:last-child { text-align: right; }
.growth-meta-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.growth-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

.dashboard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}
.dashboard-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line-dark);
  font-size: 13px;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.dashboard-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.dashboard-close {
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--gold);
  max-width: 32ch;
  line-height: 1.3;
}
.dashboard-close-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.65;
  max-width: 60ch;
}

/* ============================================================
   Risco
   ============================================================ */

.risk-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  margin-top: 64px;
}
.risk-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.risk-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--gold);
  min-width: 36px;
  letter-spacing: 0.08em;
}
.risk-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.risk-desc {
  font-size: 14px;
  color: var(--muted-dark);
  margin: 0;
  line-height: 1.55;
}
.risk-close {
  margin-top: 72px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.3;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 38ch;
  padding-top: 32px;
  border-top: 1px solid var(--gold);
}
@media (max-width: 880px) {
  .risk-list { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   Resultados
   ============================================================ */

.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.result-card {
  padding: 32px 28px 36px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.result-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.result-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.result-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.disclaimer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.65;
}
@media (max-width: 880px) {
  .results { grid-template-columns: 1fr; }
}

/* ============================================================
   Fundadores
   ============================================================ */

.founders-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  margin-top: 64px;
  align-items: start;
}
.founders-photo {
  position: relative;
  aspect-ratio: 933 / 1400;
  overflow: hidden;
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink-deep) 100%);
}
/* Brilho que varre o placeholder enquanto não há foto real */
.founders-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(197, 168, 128, 0.18) 50%, transparent 70%);
  background-size: 250% 100%;
  animation: founderSheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
.founders-photo.playing::before { display: none; }
@keyframes founderSheen {
  0%   { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}
.founders-photo img,
.founders-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founders-photo img {
  transform: scale(1.04);
  transition: transform 1000ms var(--ease-out);
  will-change: transform;
}
/* Ken Burns suave quando a seção entra em tela */
.founders-photo.in-view img {
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2.5%, -2%); }
}
/* Vídeo embutido (aparece ao dar play) */
.founders-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
  transition: opacity 480ms var(--ease-out);
  pointer-events: none;
}
.founders-photo.playing .founders-video {
  opacity: 1;
  pointer-events: auto;
}
.founders-photo.playing img { opacity: 0; }
/* Marca d'água quando não há foto real ainda */
.founders-photo-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.12em;
  color: rgba(197, 168, 128, 0.18);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}
.founders-photo img.is-missing { display: none; }
.founders-photo img.is-missing ~ .founders-photo-mark {
  opacity: 1;
  animation: markPulse 5s ease-in-out infinite;
}
@keyframes markPulse {
  0%, 100% { transform: scale(1);    color: rgba(197, 168, 128, 0.14); }
  50%      { transform: scale(1.08); color: rgba(197, 168, 128, 0.28); }
}
/* Botão de play */
.media-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(251, 246, 236, 0.94);
  border: none;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 14px 44px rgba(7, 21, 44, 0.4);
  transition: transform 320ms var(--ease-out), background 320ms var(--ease-out), opacity 320ms var(--ease-out);
}
.media-play[hidden] { display: none; }
.media-play svg {
  width: 28px;
  height: 28px;
  fill: var(--ink);
  margin-left: 4px;
  transition: fill 320ms var(--ease-out);
}
.media-play::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(251, 246, 236, 0.55);
  animation: playPulse 2.4s ease-out infinite;
}
.media-play:hover {
  transform: scale(1.09);
  background: var(--gold);
}
.founders-photo.playing .media-play {
  opacity: 0;
  pointer-events: none;
}
@keyframes playPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}
.founders-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197, 168, 128, 0.32);
  pointer-events: none;
  z-index: 3;
}
.founders-bios {
  display: flex;
  flex-direction: column;
}
.founder-bio {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.founder-bio:first-child { padding-top: 0; }
.founder-bio:last-child { border-bottom: none; padding-bottom: 0; }
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.founder-role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
  font-weight: 600;
}
.founder-credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
}
.founder-credentials li {
  padding: 9px 0 9px 22px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
  line-height: 1.4;
}
.founder-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.founder-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.founder-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.founder-instagram:hover { color: var(--gold-deep); border-color: var(--gold); }
.founder-instagram svg { width: 14px; height: 14px; }
@media (max-width: 1080px) {
  .founders-layout { grid-template-columns: 1fr; gap: 48px; }
  .founders-photo { max-width: 540px; }
}

/* ============================================================
   Anti-guru
   ============================================================ */

.antiguru {
  text-align: center;
  padding: clamp(100px, 14vw, 180px) var(--gutter);
}
.antiguru h2 {
  margin: 0 auto 56px;
  max-width: 18ch;
}
.antiguru-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 32ch;
  margin: 0 auto;
}
.antiguru-list li {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--paper);
  opacity: 0.86;
}

/* ============================================================
   Bloco de contato direto
   ============================================================ */

.contact-section {
  padding: clamp(80px, 11vw, 140px) 0;
}
.contact-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.contact-head h2 { margin: 16px 0 20px; }
.contact-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 320ms var(--ease-out), transform 320ms var(--ease-out), background 320ms var(--ease-out);
  min-height: 220px;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: var(--paper-warm);
}
.contact-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 320ms var(--ease-out), border-color 320ms var(--ease-out);
}
.contact-card:hover .contact-card-icon {
  color: var(--gold-deep);
  border-color: var(--gold);
}
.contact-card-icon svg { width: 16px; height: 16px; }
.contact-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.25;
}
.contact-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 auto;
}
.contact-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: transform 320ms var(--ease-out), color 320ms var(--ease-out);
}
.contact-card:hover .contact-card-arrow {
  color: var(--gold-deep);
  transform: translateX(4px);
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Formulário
   ============================================================ */

.apply-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.apply-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.apply-head h2 { margin: 16px 0 20px; }
.apply-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.apply-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  width: 100%;
  transition: border-color 240ms var(--ease-out);
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-deep);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 9px) center;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.choice-group { display: flex; flex-direction: column; gap: 12px; }
.choice-group > label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.choice-group.has-error > label { color: #B8483B; }
.choice-group.has-error .choice span { border-color: rgba(184, 72, 59, 0.5); }
.choice-group .choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: all 240ms var(--ease-out);
  border-radius: 2px;
  background: transparent;
}
.choice input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.choice:hover span { border-color: var(--gold-soft); }
.field-error {
  font-size: 12px;
  color: #B8483B;
  margin-top: 4px;
  letter-spacing: 0.02em;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: #B8483B; }
.field.has-error .field-error { display: block; }
.apply-submit {
  margin-top: 16px;
  align-self: flex-start;
}
.apply-footer-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
}
.apply-success {
  display: none;
  text-align: center;
  padding: 60px 32px;
  border: 1px solid var(--gold);
}
.apply-success.is-visible { display: block; }
.apply-success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.apply-success p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 720px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink-deep);
  color: var(--paper);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .wordmark-text { color: var(--paper); }
.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted-dark);
  max-width: 36ch;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 240ms var(--ease-out);
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ============================================================
   Animações de revelação
   ============================================================ */

/* ============================================================
   Feed Instagram (estilo Oh Lalá · cores MAGEN)
   ============================================================ */
.feed-section {
  padding: clamp(40px, 5vw, 68px) 0;
  background: #000;
}
.feed-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}
.feed-section .display { color: var(--paper); }
.feed-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.feed-tag svg { width: 22px; height: 22px; }
.feed-sub {
  margin: 16px auto 0;
  max-width: 56ch;
  color: var(--muted-dark);
}
.feed-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feed-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 22px;
  scrollbar-width: none;
  flex: 1;
}
.feed-track::-webkit-scrollbar { display: none; }
.feed-card {
  flex: 0 0 clamp(220px, 23%, 268px);
  scroll-snap-align: start;
}
.feed-card > a {
  display: block;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out), border-color 360ms var(--ease-out);
}
.feed-card > a:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(11, 31, 63, 0.16);
  border-color: var(--gold);
}
.feed-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}
.feed-avatar {
  position: relative;
  overflow: hidden;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), var(--gold-soft));
}
.feed-avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feed-avatar-r { background: linear-gradient(135deg, var(--gold-soft), var(--ink)); }
.feed-user {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.feed-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-deep) 100%);
}
.feed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out);
}
.feed-card > a:hover .feed-media img { transform: scale(1.07); }
.feed-media img.is-missing { display: none; }
.feed-media-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 22px;
  color: rgba(197, 168, 128, 0.30);
  pointer-events: none;
}
.feed-media img:not(.is-missing) ~ .feed-media-mark { display: none; }
.feed-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11, 31, 63, 0.42);
  opacity: 0;
  transition: opacity 360ms var(--ease-out);
}
.feed-hover svg { width: 40px; height: 40px; color: var(--paper); }
.feed-card > a:hover .feed-hover { opacity: 1; }
.feed-card-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
}
.feed-card-bottom svg { width: 22px; height: 22px; color: var(--ink); }
.feed-card-bottom .fb-save { margin-left: auto; }
/* Coração vermelho preenchido (igual Oh Lalá) */
.feed-card-bottom .fb-heart { color: #ed4956; }
.feed-card-bottom .fb-heart path { fill: #ed4956; stroke: #ed4956; }
.feed-card > a:hover .fb-heart { transform: scale(1.12); transition: transform 240ms var(--ease-out); }
.feed-arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  transition: background 300ms var(--ease-out), color 300ms var(--ease-out), border-color 300ms var(--ease-out);
  z-index: 2;
}
.feed-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.feed-arrow svg { width: 22px; height: 22px; }
.feed-cta {
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 880px) {
  .feed-card { flex-basis: 70%; }
  .feed-arrow { display: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 850ms var(--ease-out), transform 850ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* (Bloco global de "reduzir movimento" removido a pedido do cliente —
   as animações devem rodar mesmo com a preferência do sistema ligada.) */

/* ============================================================
   Banner comparativo (somente durante review — remover depois)
   ============================================================ */

.compare-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: rgba(11, 31, 63, 0.94);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out);
}
.compare-banner:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ============================================================
   Utilitários
   ============================================================ */

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 0 0 28px;
}
.surface-ink .divider, .surface-deep .divider { background: var(--gold); }
.text-center { text-align: center; }
.max-prose { max-width: 62ch; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 48px; }

/* ============================================================
   Marca d'água do escudo na seção "A MAGEN"
   ============================================================ */
.magen-watermark {
  position: absolute;
  right: 1%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 42vw, 640px);
  height: auto;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  animation: magenWmGlow 6.5s ease-in-out infinite;
}
@keyframes magenWmGlow {
  0%, 100% { opacity: 0.16; filter: drop-shadow(0 0 0 rgba(197,168,128,0)); }
  50% { opacity: 0.30; filter: drop-shadow(0 0 26px rgba(197,168,128,0.35)); }
}
@media (max-width: 880px) {
  .magen-watermark { right: 50%; transform: translate(50%, -50%); width: min(86vw, 460px); opacity: 0.14; }
}

/* ============================================================
   HERO — entrada clara premium (branco limpo, sem amarelado, sem grade)
   ============================================================ */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 65% at 50% -5%, #FFFFFF 0%, transparent 60%),
    linear-gradient(180deg, #FBFBFA 0%, #F2F2EF 100%);
}
.hero-grid { display: none !important; } /* sem grade (a pedido) */
.hero-art { display: none; } /* imagem removida do hero (a pedido) */

/* ============================================================
   BOLD — repaginação visual de impacto (reversível: remover este bloco)
   ============================================================ */
/* Palavra-chave em dourado gradiente (brilho sutil) */
.hl-gold {
  background: linear-gradient(100deg, #B8915F 0%, #C5A880 30%, #EFDBB4 52%, #C5A880 72%, #B8915F 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% 100%;
  animation: goldSweep 7s ease-in-out infinite;
}
@keyframes goldSweep { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }

/* Tipografia display mais encorpada e apertada */
.display { letter-spacing: -0.025em; }
.display-xl { line-height: 0.94; letter-spacing: -0.035em; }
.display-lg { letter-spacing: -0.03em; }

/* Eyebrows com traço dourado + cor da marca */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-weight: 600;
}
.eyebrow::before {
  content: ''; width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(197,168,128,0.2));
  flex: 0 0 auto;
}
.eyebrow-light { color: var(--gold); }

/* Divisores dourados mais presentes */
.divider { width: 64px; height: 2px; background: linear-gradient(90deg, var(--gold), rgba(197,168,128,0.15)); }

/* Botão primário com profundidade dourada na borda inferior */
.btn-primary { border-bottom: 2px solid rgba(197, 168, 128, 0.55); }

/* Nav em vidro (glass) ao rolar — mais sofisticado */
.nav.scrolled {
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(251, 246, 236, 0.78);
  box-shadow: 0 1px 0 rgba(11, 31, 63, 0.06), 0 12px 40px -28px rgba(11, 31, 63, 0.4);
}

/* ============================================================
   SINTOMAS — baralho com swipe lateral estilo Conquer
   Ativo em TODAS as telas (controlado pela classe .is-deck via JS).
   ============================================================ */
.symptoms-stack.is-deck {
  position: relative;
  margin: clamp(30px, 4vw, 56px) auto 0;
  height: clamp(470px, 58vw, 560px);
  max-width: clamp(330px, 46vw, 560px);
  perspective: 1400px;
  touch-action: pan-y;
}
.symptoms-stack.is-deck .symptom-card,
.symptoms-stack.is-deck .symptom-card:nth-child(even) {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  grid-template-columns: none; grid-template-areas: none; column-gap: 0; row-gap: 0;
  background: linear-gradient(158deg, #16294a 0%, #0b1a33 55%, #060d1c 100%);
  border: 1px solid rgba(197, 168, 128, 0.45);
  border-radius: 24px;
  padding: clamp(22px, 1.8vw, 32px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.78);
  overflow: hidden;
  transform-origin: center 130%;
  will-change: transform, opacity;
  cursor: grab;
}
.symptoms-stack.is-deck .symptom-card:active { cursor: grabbing; }
.symptoms-stack.is-deck .symptom-content { display: block; }
.symptoms-stack.is-deck .symptom-head { gap: 6px; margin-bottom: 14px; align-items: flex-start; }
.symptoms-stack.is-deck .symptom-num { color: var(--gold); font-size: 12px; letter-spacing: 0.22em; }
.symptoms-stack.is-deck .symptom-title { color: #fff; font-size: clamp(21px, 1.6vw, 27px); line-height: 1.14; }
.symptoms-stack.is-deck .symptom-media {
  aspect-ratio: auto;
  height: clamp(142px, 16vw, 210px);
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: none;
  flex: 0 0 auto;
}
.symptoms-stack.is-deck .symptom-media-num { display: none; }
.symptoms-stack.is-deck .symptom-desc {
  color: rgba(251, 246, 236, 0.78);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.55;
  max-width: none;
}
.deck-hint {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.deck-nav {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(11, 31, 63, 0.18); background: #fff;
  color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out), transform .15s var(--ease-out);
}
.deck-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.deck-nav:active { transform: scale(0.92); }
.deck-count-wrap {
  min-width: 54px; text-align: center;
  color: var(--ink); font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
}
.deck-count-wrap .deck-count { color: var(--gold-deep); }

/* ============================================================
   PREMIUM POLISH — refinamento de alto nível (ui-ux-pro-max)
   Camada aditiva e segura: não altera as animações existentes.
   ============================================================ */
/* Renderização de texto mais nítida (percepção premium) */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
/* Seleção de texto no tom da marca */
::selection { background: rgba(197, 168, 128, 0.30); color: var(--ink); }

/* Botões — micro-interação de toque + elevação refinada */
.btn { transition: transform .22s var(--ease-out), box-shadow .28s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out); will-change: transform; }
.btn-primary { box-shadow: 0 14px 30px -14px rgba(11, 31, 63, 0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -16px rgba(11, 31, 63, 0.6); }
.btn:active { transform: translateY(0) scale(0.985); }

/* Anel de foco dourado acessível (substitui o outline padrão) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Campos do formulário — foco sofisticado com brilho dourado */
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.18);
  outline: none;
}

/* Eyebrows e rótulos — tracking refinado */
.eyebrow, .contact-card-eyebrow, .footer-col h4 { letter-spacing: 0.16em; }

/* Números tabulares (evita "pulo" em métricas e valores) */
.method-meta-item, .growth-timeline, .kpi-grid, .footer-bottom { font-variant-numeric: tabular-nums; }

/* Links do rodapé — sublinhado dourado animado */
.footer-col a { position: relative; transition: color .2s var(--ease-out); }
.footer-col a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .28s var(--ease-out);
}
.footer-col a:hover { color: var(--gold); }
.footer-col a:hover::after { width: 100%; }

/* Cards de contato — leve elevação no hover (só sombra/borda p/ não conflitar com a entrada) */
.contact-card:hover { box-shadow: 0 26px 60px -30px rgba(11, 31, 63, 0.5); border-color: rgba(197, 168, 128, 0.5); }

/* Ícones sociais no rodapé (logos oficiais WhatsApp/Instagram) */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 236, 0.20);
  color: var(--paper);
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.social-btn svg { width: 21px; height: 21px; }
.social-btn:hover { transform: translateY(-3px); background: var(--gold); color: var(--ink); border-color: var(--gold); }
.social-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.social-ig:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285AEB 100%); color: #fff; border-color: transparent; }

/* Fallback do formulário (envio via WhatsApp quando o POST é bloqueado) */
.apply-fallback {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(27, 58, 46, 0.05);
}
.apply-fallback p {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

/* ============================================================
   Ajuste fino de espaçamento — mobile (ritmo vertical mais limpo)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --section-y: clamp(46px, 12vw, 78px);
  }
  /* remove os rótulos verticais laterais (QUEM SOMOS etc.) no celular */
  .side-label { display: none !important; }
  /* margens fixas grandes que não encolhem sozinhas no celular */
  .symptoms-stack { margin-top: 36px; gap: 34px; }
  .pillars { margin-top: 32px; }
  .growth-timeline { margin-top: 40px; padding: 36px 0; }
  .dashboard-tags { margin-top: 28px; }
  .video-meta { margin-bottom: 18px; }
  .hero .lede { margin-bottom: 32px; }
  .hero h1 { margin: 18px 0 20px; }
  /* respiro consistente entre título e conteúdo das seções */
  .split { gap: 28px; }
  .feed-cta { margin-top: 28px; }
}

@media (max-width: 420px) {
  :root {
    --section-y: clamp(40px, 11vw, 64px);
    --gutter: 18px;
  }
}
