/* =========================================
   CATEQUESE PARA ADULTOS — Stylesheet
   Paleta: #0B0B0B · #343432 · #FFF500 · #B7B34A · #F5F5F5 · #13213C
   Fontes: Bebas Neue + Montserrat
   ========================================= */

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

:root {
  --bg:      #0B0B0B;
  --bg2:     #181815;
  --bg3:     #343432;
  --accent:  #FFF500;
  --gold:    #B7B34A;
  --light:   #F5F5F5;
  --navy:    #13213C;
  --muted:   rgba(245,245,245,0.52);
  --border:  rgba(245,245,245,0.08);

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-drama:  cubic-bezier(0.25, 1, 0.5, 1);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 8px;
  --r-md: 18px;
  --r-lg: 30px;
  --r-xl: 44px;

  --nav-h: 76px;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, .font-display { font-family: 'Bebas Neue', sans-serif; }

.display-xl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.02em;
}
.display-lg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.92;
  letter-spacing: 0.025em;
}
.display-md {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0.03em;
}
.display-sm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.body-lg { font-size: 1.05rem; font-weight: 300; line-height: 1.82; }
.body-md { font-size: 0.92rem; font-weight: 400; line-height: 1.75; }

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.container-wide { max-width: 1380px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

.section { padding: clamp(80px, 10vw, 128px) 0; }
.section-light { background: var(--light); color: #1a1a17; }
.section-medium { background: var(--bg2); }
.section-dark2 { background: var(--bg3); }
.section-navy { background: var(--navy); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: calc(100% - 32px);
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11,11,11,0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(245,245,245,0.07);
  border-radius: 100px;
  padding: 14px 28px;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s, top 0.3s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(11,11,11,0.94);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  top: 10px;
}

.navbar-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.navbar-links li {
  position: relative;
  z-index: 1;
}
.navbar-links a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.62);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}
.navbar-links a.active { color: var(--accent); }
.navbar-links li:hover a,
.navbar-links li:hover a.active { color: #0b0b0b; }

.nav-cursor {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  border-radius: 100px;
  background: var(--accent);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: left 0.42s cubic-bezier(.4,0,.2,1),
              width 0.42s cubic-bezier(.4,0,.2,1),
              opacity 0.25s ease;
}

.navbar-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: #0b0b0b;
  padding: 9px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}
.navbar-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 24px rgba(255,245,0,0.35);
  background: #ffff2a;
}
.navbar-btn:active { transform: scale(0.97); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--light);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,11,11,0.98);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 60px);
  letter-spacing: 0.06em;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s, background 0.25s, color 0.25s;
}
.btn:active { transform: translateY(1px) !important; box-shadow: none !important; }

.btn-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: opacity 0.45s var(--ease-out);
}
.btn:hover .btn-label { opacity: 0; }

.btn-icon {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  z-index: 2;
  width: 44px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  transition: width 0.55s var(--ease-out), transform 0.18s var(--ease-out), background 0.3s, color 0.3s;
  pointer-events: none;
}
.btn-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.btn:hover .btn-icon { width: calc(100% - 10px); }
.btn:active .btn-icon { transform: scale(0.96); }

.btn-primary {
  background: var(--accent);
  color: #0b0b0b;
  padding: 18px 64px 18px 32px;
}
.btn-primary:hover {
  background: #ffff26;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255,245,0,0.32);
}
.btn-primary .btn-icon {
  background: #0b0b0b;
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  padding: 16px 64px 16px 32px;
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #0b0b0b;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255,245,0,0.2);
}
.btn-outline .btn-icon {
  background: var(--accent);
  color: #0b0b0b;
}
.btn-outline:hover .btn-icon {
  background: #0b0b0b;
  color: var(--accent);
}

.btn-ghost {
  background: rgba(245,245,245,0.06);
  color: var(--light);
  padding: 16px 64px 16px 32px;
  border: 1px solid rgba(245,245,245,0.12);
}
.btn-ghost:hover {
  background: rgba(245,245,245,0.1);
  transform: translateY(-2px);
}
.btn-ghost .btn-icon {
  background: var(--accent);
  color: #0b0b0b;
}

/* ===== HERO — HOME ===== */
#hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,245,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,245,0,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,245,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-end;
}
.hero-left { }
.hero-right { padding-bottom: 6px; }

.hero-right .body-lg {
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-stats-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding-top: 48px;
}
.stat {
  padding: 0 clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--border);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }

.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-l {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}

/* ===== CONTEXTO ===== */
#contexto {
  background: var(--bg2);
  padding: clamp(80px, 10vw, 128px) 0;
}

.contexto-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  margin-bottom: 80px;
}

.contexto-left h2 { margin-bottom: 28px; }
.contexto-left .body-lg { color: var(--muted); max-width: 460px; }

.platform-doc {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  max-width: 420px;
}
.platform-doc-label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,0,0,0.55);
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.platform-doc img {
  width: 100%;
  height: auto;
  display: block;
}

.questions-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}
.q-pill {
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  background: rgba(245,245,245,0.04);
  border: 1px solid rgba(245,245,245,0.09);
  border-radius: 100px;
  padding: 10px 22px;
  cursor: default;
  transition: color 0.22s var(--ease-out), border-color 0.22s, background 0.22s;
}
.q-pill:hover {
  color: var(--accent);
  border-color: rgba(255,245,0,0.25);
  background: rgba(255,245,0,0.04);
}

.manifesto-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.manifesto-col p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.92;
  margin-bottom: 18px;
}
.manifesto-col p strong { color: var(--light); font-weight: 600; }

.manifesto-highlight {
  background: rgba(255,245,0,0.04);
  border: 1px solid rgba(255,245,0,0.13);
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 44px);
}
.manifesto-highlight p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,245,245,0.8);
  line-height: 1.88;
  margin-bottom: 14px;
}
.manifesto-highlight p:last-of-type { margin-bottom: 32px; }

/* ===== CASES ===== */
#casos {
  background: var(--bg);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
}

.casos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
}
.casos-header-r {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

.carousel-wrap {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.carousel-track:active { cursor: grabbing; }
.carousel-track::-webkit-scrollbar { display: none; }

.caso-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.caso-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,245,0,0.22);
}

.caso-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.18);
  position: relative;
  overflow: hidden;
}
.caso-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.caso-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11,11,11,0.82);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(255,245,0,0.18);
  backdrop-filter: blur(6px);
}

.caso-body {
  padding: 26px 28px 32px;
}
.caso-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.caso-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--light);
  line-height: 1.04;
  margin-bottom: 10px;
}
.caso-sub {
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

.carousel-nav {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  justify-content: flex-end;
}
.c-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(245,245,245,0.16);
  color: var(--light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color 0.22s var(--ease-out), color 0.22s, transform 0.2s var(--ease-out);
}
.c-btn:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.08); }
.c-btn:active { transform: scale(0.95); }

/* ===== DEPOIMENTOS ===== */
#depoimentos {
  background: var(--bg2);
  padding: clamp(80px, 10vw, 128px) 0;
}
.dep-header { text-align: center; margin-bottom: 64px; }
.dep-header h2 { margin-bottom: 16px; }
.dep-header p { color: var(--muted); font-size: 0.92rem; font-weight: 300; }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dep-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 0.28s var(--ease-out), border-color 0.28s;
}
.dep-card:hover { transform: translateY(-4px); border-color: rgba(255,245,0,0.15); }

.dep-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.dep-quote {
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,245,245,0.72);
  margin-bottom: 28px;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.dep-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid rgba(255,245,0,0.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--gold);
}
.dep-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.dep-role { font-size: 0.72rem; color: var(--muted); }

/* ===== MÉTODO PREVIEW ===== */
#metodo-home {
  background: var(--navy);
  padding-bottom: 0;
}

/* Two-column: left sticky + right scroll cards */
.metodo-scroll-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 7vw, 100px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 128px) clamp(24px, 5vw, 80px);
  min-height: 260vh;
  align-items: start;
}

.metodo-left {
  position: sticky;
  top: clamp(80px, 14vh, 140px);
  align-self: start;
}
.metodo-left h2 { margin-bottom: 20px; }
.metodo-left .body-lg { color: rgba(245,245,245,0.6); margin-bottom: 0; max-width: 380px; }

.steps-list {
  display: block;
  padding-top: 8px;
}

/* Stacking cards */
.step {
  position: sticky;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 24px 64px -24px rgba(0,0,0,0.8), 0 -1px 0 rgba(255,255,255,0.03);
}
.step:nth-child(1) { top: calc(var(--nav-h) + 0px);  z-index: 1; }
.step:nth-child(2) { top: calc(var(--nav-h) + 14px); z-index: 2; }
.step:nth-child(3) { top: calc(var(--nav-h) + 28px); z-index: 3; }
.step:nth-child(4) { top: calc(var(--nav-h) + 42px); z-index: 4; }
.step:last-child { margin-bottom: 0; }

/* Header row: title left, number right */
.step-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.step-t {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--light);
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--accent);
  opacity: 0.45;
  flex-shrink: 0;
}
.step-d {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
  max-width: 44ch;
}

.metodo-conclusion {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 56px;
  position: relative;
  background: var(--navy);
  z-index: 2;
}

.metodo-punchline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--accent);
}

/* ===== PROFESSORES ===== */
#professores {
  background: var(--bg);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
}
.prof-header { margin-bottom: 0; }

.prof-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Image-accordion */
.prof-accordion {
  display: flex;
  gap: 14px;
  align-items: stretch;
  width: 100%;
}
.prof-acc-item {
  position: relative;
  height: 480px;
  flex-basis: 80px;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow 1.2s cubic-bezier(.22,.61,.36,1),
              flex-basis 1.2s cubic-bezier(.22,.61,.36,1);
  will-change: flex-grow, flex-basis;
}
.prof-acc-item.active {
  flex-grow: 1;
}
.prof-acc-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  filter: brightness(0.78) saturate(0.9);
  transition: transform 1.6s cubic-bezier(.16,1,.3,1),
              filter 1s ease;
  will-change: transform, filter;
}
.prof-acc-item.active img {
  transform: scale(1);
  filter: brightness(1) saturate(1);
}
.prof-acc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.42) 45%,
    rgba(0,0,0,0.18) 80%,
    rgba(0,0,0,0.05) 100%);
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.prof-acc-label {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
  white-space: nowrap;
  color: #fff;
  text-align: center;
  transition: transform 0.95s cubic-bezier(.16,1,.3,1),
              bottom 0.95s cubic-bezier(.16,1,.3,1);
  will-change: transform, bottom;
}
.prof-acc-item.active .prof-acc-label {
  transform: translateX(-50%) rotate(0);
  bottom: 32px;
}
.prof-acc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  transition: opacity 0.6s ease;
}
.prof-acc-meta {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s 0.35s ease,
              transform 0.7s 0.35s cubic-bezier(.16,1,.3,1);
}
.prof-acc-item.active .prof-acc-meta {
  opacity: 1;
  transform: translateY(0);
}

.prof-av {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--bg3);
  border: 3px solid rgba(255,245,0,0.13);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--gold);
  overflow: hidden;
}
.prof-av img { width: 100%; height: 100%; object-fit: cover; }

.prof-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 5px; color: var(--light); }
.prof-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.prof-inst { font-size: 0.74rem; font-weight: 300; color: var(--muted); line-height: 1.5; }

/* ===== CITAÇÃO ===== */
#citacao {
  background: var(--bg2);
  padding: clamp(80px, 10vw, 128px) 0;
}
.cit-split {
  display: flex;
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

/* --- Imagem: wrapper externo --- */
.cit-img-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* --- Moldura dourada com cantos decorativos --- */
.cit-img-frame {
  position: relative;
  padding: 12px;
}
/* Borda tênue de fundo */
.cit-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(183,179,74,0.22);
  pointer-events: none;
  z-index: 2;
}
/* Cantos em L dourados */
.cit-img-frame::after {
  content: '';
  position: absolute;
  inset: -4px;
  background:
    linear-gradient(var(--gold), var(--gold)) top    left  / 28px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) top    left  / 2px 28px no-repeat,
    linear-gradient(var(--gold), var(--gold)) top    right / 28px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) top    right / 2px 28px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom left  / 28px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom left  / 2px 28px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom right / 28px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom right / 2px 28px no-repeat;
  pointer-events: none;
  z-index: 3;
}

/* --- Inner: clipagem do shimmer + vinheta --- */
.cit-img-inner {
  position: relative;
  overflow: hidden;
  display: block;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.80),
    0 8px 24px  rgba(0,0,0,0.50),
    0 0 0 1px   rgba(255,255,255,0.04);
}
/* Vinheta sobre a foto */
.cit-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 38%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Shimmer — faixa de luz diagonal que percorre a foto em loop */
.cit-img-inner::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -70%;
  width: 35%;
  height: 140%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,245,0,0.07) 45%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,245,0,0.07) 55%,
    transparent 100%
  );
  transform: skewX(-12deg);
  animation: cit-shimmer 6s ease-in-out 1s infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes cit-shimmer {
  0%   { left: -70%; opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* Foto */
.cit-photo {
  display: block;
  width: clamp(200px, 24vw, 300px);
  aspect-ratio: 7/10;
  object-fit: cover;
  object-position: top center;
  filter: sepia(18%) contrast(1.08) brightness(0.88) saturate(0.9);
  transition: filter 0.6s ease;
}
.cit-img-frame:hover .cit-photo {
  filter: sepia(8%) contrast(1.1) brightness(0.95) saturate(1);
}

/* Caption abaixo da foto */
.cit-img-caption {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

/* --- Conteúdo de texto --- */
.cit-content {
  flex: 1 1 0;
  position: relative;
}
/* " decorativa — fora do fluxo, puramente visual */
.cit-deco {
  position: absolute;
  top: -0.18em;
  left: -0.12em;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(120px, 18vw, 240px);
  color: rgba(255,245,0,0.055);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
/* Texto da citação */
.cit-text {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 2.5vw, 25px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(245,245,245,0.86);
  max-width: 580px;
  margin: 0 0 40px;
  padding-top: clamp(16px, 2.5vw, 36px);
}
/* Fonte — linha dourada + texto */
.cit-source {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.cit-source::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.7;
}

/* --- Mobile --- */
@media (max-width: 700px) {
  .cit-split {
    flex-direction: column;
    text-align: center;
  }
  .cit-text { margin: 0 auto 28px; }
}

/* ===== CTA FINAL ===== */
#cta-final {
  background: var(--bg);
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  text-align: center;
  position: relative;
}
.cta-final-top { margin-bottom: 0; }
.cta-final-bottom { margin-top: 24px; position: relative; }
.cta-final-bottom::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  max-width: 100%;
  background: radial-gradient(circle, rgba(255,245,0,0.042) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-final-bottom > * { position: relative; z-index: 1; }
.cta-kicker { margin-bottom: 24px; }
.cta-head { margin-bottom: 20px; }
.cta-sub { color: var(--muted); font-size: 0.95rem; font-weight: 300; max-width: 440px; margin: 0 auto 52px; }

/* Word-by-word scroll reveal (CTA final) */
.text-reveal-wrap {
  position: relative;
  height: 200vh;
}
.text-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(20px, 4vw, 48px);
}
.text-reveal-target {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  max-width: 1100px;
  text-align: center;
}
.tr-line {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.tr-word {
  display: inline-block;
  margin: 0 0.16em;
  white-space: nowrap;
  color: var(--light);
  opacity: 0.18;
  transition: opacity 0.08s linear;
  will-change: opacity;
}
.tr-accent .tr-word {
  color: var(--accent);
}

/* ===== FOOTER ===== */
footer {
  background: #050505;
  padding: 64px 0 36px;
  border-top: 1px solid rgba(245,245,245,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-brand img {
  display: block;
  width: auto;
  height: 28px;
}
.footer-tagline { font-size: 0.82rem; font-weight: 300; color: rgba(245,245,245,0.35); line-height: 1.7; max-width: 280px; }
.footer-col-h { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--light); margin-bottom: 22px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-size: 0.82rem; font-weight: 300; color: rgba(245,245,245,0.38); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(245,245,245,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.72rem; color: rgba(245,245,245,0.22); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.72rem; color: rgba(245,245,245,0.22); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(245,245,245,0.5); }

/* ===== PÁGINA MÉTODO ===== */
#hero-metodo {
  min-height: 75dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: clamp(40px, 6vw, 72px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#hero-metodo .hero-inner {
  text-align: center;
  justify-items: center;
}
#hero-metodo .hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hero-metodo .hero-stats-row {
  justify-items: center;
}
/* Photo layer */
.hero-metodo-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-metodo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.60) saturate(0.80);
}
/* Gradient overlay — escurece mais embaixo (área de texto) */
.hero-metodo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(11,11,11,1.0)  0%,
      rgba(11,11,11,0.80) 35%,
      rgba(11,11,11,0.45) 65%,
      rgba(11,11,11,0.20) 100%),
    linear-gradient(to right,
      rgba(11,11,11,0.45) 0%,
      transparent 60%);
}
/* Grid texture fica acima da foto/overlay */
.hero-bg-grid { z-index: 2; }
/* Conteúdo acima de tudo */
#hero-metodo .container { position: relative; z-index: 3; }
#hero-metodo .hero-bg-glow { z-index: 2; }
.hero-metodo-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,245,0,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,245,0,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.metodo-hero-questions {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 36px;
}
.mhq {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: 0.04em;
  color: rgba(245,245,245,0.32);
  line-height: 1.3;
  transition: color 0.2s;
}
.mhq:nth-child(1) { color: rgba(245,245,245,0.5); }
.mhq.acc { color: var(--accent); }

#casos-metodo {
  background: var(--bg2);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
}

.metodo-intro {
  background: var(--bg);
  padding: clamp(80px, 10vw, 128px) 0;
}
.metodo-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 7vw, 100px);
  align-items: center;
  margin-bottom: 80px;
}
.metodo-intro-grid .body-lg { color: var(--muted); margin-bottom: 32px; }

.cases-examples {
  display: flex;
  flex-direction: column;
}
.case-ex {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(245,245,245,0.58);
  line-height: 1.65;
  transition: color 0.2s;
  background: none;
  border-radius: 0;
}
.case-ex:first-child { border-top: 1px solid var(--border); }
.case-ex:hover { color: rgba(245,245,245,0.85); }
.case-ex--cta {
  color: var(--light);
  border-bottom: none;
  padding-bottom: 0;
}
.case-ex--cta strong { color: var(--accent); }
.case-ex-icon { color: var(--accent); font-size: 15px; flex-shrink: 0; margin-top: 3px; }

.sobre-metodo { padding: 80px 0 0; border-top: 1px solid var(--border); }
.sobre-metodo-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.sobre-quote {
  margin: 0;
  font-size: clamp(1.15rem, 1.85vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--light);
  letter-spacing: -0.015em;
}
.sobre-quote em { font-style: normal; color: var(--accent); }
.sobre-side .eyebrow { display: block; margin-bottom: 18px; }
.sobre-side p { font-size: 0.92rem; font-weight: 300; color: var(--muted); line-height: 1.9; margin: 0; }
.sobre-side p strong { color: var(--light); font-weight: 600; }
@media (max-width: 768px) {
  .sobre-metodo-inner { grid-template-columns: 1fr; gap: 40px; }
}

#fundamentos {
  height: 480vh;
  background: var(--bg2);
}
.fund-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  padding: clamp(48px, 7vw, 80px) 0 clamp(28px, 3vw, 44px);
}
.fund-header { flex-shrink: 0; }
.fund-stage {
  flex: 1;
  overflow: hidden;
  margin-top: clamp(20px, 3vw, 36px);
  display: flex;
  align-items: stretch;
}
/* Track: todos os cards em linha, desliza como um bloco */
.fund-track {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-shrink: 0;
  will-change: transform;
}
.fund-card {
  flex: 0 0 min(680px, 72vw);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s;
}
.fund-card:hover { border-color: rgba(255,245,0,0.18); }
.fund-roman {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 108px);
  line-height: 1;
  letter-spacing: 0.06em;
  color: rgba(255,245,0,0.08);
  -webkit-text-stroke: 1.5px rgba(255,245,0,0.55);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,245,0,0.10);
}
.fund-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 16px;
  line-height: 1.25;
}
.fund-body {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  color: rgba(245,245,245,0.72);
  line-height: 1.82;
}
.fund-body strong {
  color: var(--light);
  font-weight: 500;
}
.fund-dots {
  display: flex; gap: 8px; justify-content: center;
  flex-shrink: 0; margin-top: clamp(14px, 2vw, 24px);
}
.fund-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(245,245,245,0.2);
  transition: background 0.3s, transform 0.3s;
}
.fund-dot--on { background: var(--accent); transform: scale(1.35); }



#reflexao {
  background: var(--navy);
  padding: clamp(80px, 10vw, 128px) 0;
  text-align: center;
}
.refl-quote {
  font-size: clamp(19px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.68;
  color: rgba(245,245,245,0.8);
  max-width: 780px;
  margin: 0 auto 48px;
  font-style: italic;
}
.refl-sub { font-size: 0.88rem; font-weight: 300; color: var(--muted); max-width: 560px; margin: 0 auto 48px; line-height: 1.8; }

#temas {
  background: var(--bg2);
  padding: clamp(80px, 10vw, 128px) 0;
}
.temas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.temas-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.temas-body {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.88;
  margin-top: 24px;
  margin-bottom: 48px;
}
.temas-right { width: 100%; }
.temas-img-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
}
.temas-img-wrap img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.temas-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  border: 1px solid rgba(183,179,74,0.22);
  pointer-events: none;
}
@media (max-width: 860px) {
  .temas-grid { grid-template-columns: 1fr; }
  .temas-right { display: none; }
}

#entrega {
  background: var(--bg);
  padding: clamp(80px, 10vw, 128px) 0;
}

.entrega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.entrega-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.entrega-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255,245,0,0.07);
  border: 1px solid rgba(255,245,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.entrega-t { font-size: 0.92rem; font-weight: 600; color: var(--light); margin-bottom: 7px; line-height: 1.38; }
.entrega-d { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.72; }

.entrega-promise {
  margin-top: 64px;
  padding: 48px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.ep-checks { display: flex; flex-direction: column; gap: 14px; }
.ep-check {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(245,245,245,0.78);
}
.ep-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ===== PÁGINA INSCRIÇÃO ===== */
#hero-inscricao {
  min-height: 42dvh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.insc-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,245,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}

#form-section {
  background: var(--bg2);
  padding: clamp(80px, 10vw, 120px) 0;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(60px, 7vw, 100px);
  align-items: start;
}

.form-benefits h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  color: var(--light);
}

.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,245,245,0.72);
  line-height: 1.6;
}
.bcheck {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,245,0,0.08);
  border: 1px solid rgba(255,245,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 52px);
}
.form-card-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: 0.04em;
  color: var(--light);
  margin-bottom: 6px;
}
.form-card-sub { font-size: 0.85rem; font-weight: 300; color: var(--muted); margin-bottom: 40px; }

.f-group { margin-bottom: 22px; }
.f-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.45);
  margin-bottom: 9px;
}
.f-input {
  width: 100%;
  background: rgba(245,245,245,0.04);
  border: 1px solid rgba(245,245,245,0.1);
  border-radius: 8px;
  padding: 15px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--light);
  outline: none;
  transition: border-color 0.22s var(--ease-out), box-shadow 0.22s;
}
.f-input::placeholder { color: rgba(245,245,245,0.2); }
.f-input:focus { border-color: rgba(255,245,0,0.5); box-shadow: 0 0 0 3px rgba(255,245,0,0.07); }

.btn-form {
  width: 100%;
  padding: 20px;
  font-size: 0.8rem;
  border-radius: 8px;
  margin-top: 8px;
  justify-content: center;
}

.form-terms {
  font-size: 0.7rem;
  color: rgba(245,245,245,0.27);
  text-align: center;
  margin-top: 18px;
  line-height: 1.6;
}
.form-terms a { color: rgba(245,245,245,0.42); text-decoration: underline; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Stats rising up (numbers + labels) */
.stat-rise { overflow: hidden; }
.stat-rise .stat-n,
.stat-rise .stat-l {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.95s cubic-bezier(.16,.84,.3,1), transform 0.95s cubic-bezier(.16,.84,.3,1);
  will-change: opacity, transform;
}
.stat-rise .stat-l { transform: translateY(36px); }
.stat-rise.in .stat-n,
.stat-rise.in .stat-l { opacity: 1; transform: translateY(0); }

.stat-rise.stat-rise-d1 .stat-n { transition-delay: 0.05s; }
.stat-rise.stat-rise-d1 .stat-l { transition-delay: 0.22s; }
.stat-rise.stat-rise-d2 .stat-n { transition-delay: 0.22s; }
.stat-rise.stat-rise-d2 .stat-l { transition-delay: 0.40s; }
.stat-rise.stat-rise-d3 .stat-n { transition-delay: 0.40s; }
.stat-rise.stat-rise-d3 .stat-l { transition-delay: 0.58s; }

/* Scroll-linked fade in / fade out (used on CTA final) */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .navbar-links, .navbar-btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats-row { grid-template-columns: 1fr; border-top: 1px solid var(--border); }
  .stat { padding: 20px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }

  .contexto-top { grid-template-columns: 1fr; }
  .manifesto-split { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .metodo-scroll-grid { grid-template-columns: 1fr; min-height: unset; }
  .metodo-left { position: static; top: auto; }
  .step { position: static; top: auto; }
  .metodo-conclusion { grid-template-columns: 1fr; }
  .metodo-intro-grid { grid-template-columns: 1fr; }
  .fund-grid { grid-template-columns: 1fr; }
  .entrega-grid { grid-template-columns: 1fr; }
  .entrega-promise { grid-template-columns: 1fr; gap: 36px; }
  .form-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .casos-header { flex-direction: column; align-items: flex-start; }
  .casos-header-r { text-align: left; }
}

@media (max-width: 600px) {
  html { font-size: 16px; }
  .caso-card { flex: 0 0 290px; }
  .dep-grid { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .prof-layout { grid-template-columns: 1fr; gap: 40px; }
  .prof-acc-item { height: 380px; }
}

@media (max-width: 760px) {
  .prof-accordion { flex-direction: column; }
  .prof-acc-item,
  .prof-acc-item.active { flex: 0 0 200px; height: 200px; flex-basis: auto; flex-grow: 0; }
  .prof-acc-item img { transform: scale(1); filter: brightness(1) saturate(1); }
  .prof-acc-label,
  .prof-acc-item.active .prof-acc-label {
    transform: translateX(-50%) rotate(0);
  }
  .prof-acc-meta { opacity: 1; transform: translateY(0); }
}

/* prefers-reduced-motion */
/* ── Fundamentos carousel → stack on mobile ── */
@media (max-width: 640px) {
  #fundamentos { height: auto; }
  .fund-sticky { position: relative; height: auto; overflow: visible; }
  .fund-stage { display: block; overflow: visible; height: auto; }
  .fund-track { flex-direction: column; flex-shrink: 1; gap: 16px; transform: none !important; will-change: auto; }
  .fund-card { flex: none; width: 100%; }
  .fund-dots { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .stat-rise .stat-n, .stat-rise .stat-l { opacity: 1; transform: none; }
  .scroll-fade { opacity: 1; transform: none; }
}

/* ===== HERO METODO — single column ===== */
.hero-left--full {
  grid-column: 1 / -1;
}

/* ===== PERGUNTAS SCROLL ===== */
#perguntas-scroll {
  height: 350vh;
  position: relative;
  background: var(--bg);
}
.pq-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 80px);
  overflow: hidden;
}
.pq-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: clamp(180px, 30vh, 320px);
}
.pq-item {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(calc(-50% + 48px));
  opacity: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 0.96;
  letter-spacing: 0.025em;
  color: var(--light);
  text-align: center;
  will-change: opacity, transform;
  pointer-events: none;
}
.pq-item.pq-accent { color: var(--accent); }

/* Q3: base grande para rasterização nítida — scale-up máximo ~2.5x vs layer
   left:50% + translateX(-50%) no JS garante centralização real com nowrap */
.pq-item.pq-grow {
  font-size: clamp(200px, 28vw, 400px);
  left: 50%;
  right: auto;
  width: max-content;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 600px) {
  #perguntas-scroll { height: 350vh; }
  .pq-item { font-size: clamp(36px, 9vw, 56px); }
  .pq-item.pq-grow { font-size: clamp(120px, 32vw, 200px); }
}

/* ===== LOGOS ===== */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.mobile-menu-logo {
  margin-bottom: 16px;
}
.mobile-menu-logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 56px;
  width: auto;
  border-radius: 8px;
}

.hero-logo {
  margin-bottom: 36px;
}
.hero-logo img {
  height: 64px;
  width: auto;
  border-radius: 10px;
}
