/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: hsl(27, 91%, 47%);
  --primary-glow: hsl(27, 91%, 55%);
  --bg: hsl(0, 0%, 2.7%);
  --bg2: hsl(20, 30%, 4%);
  --fg: #f5f5f5;
  --muted: rgba(255,255,255,0.45);
  --border: rgba(255,255,255,0.08);
  --radius: 18px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --purple: hsl(270, 70%, 60%);
  --purple-glow: hsl(270, 70%, 68%);
  --bronze: hsl(38, 60%, 50%);
  --bronze-glow: rgba(201,153,58,0.55);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-primary { color: var(--primary); }

.text-glow {
  text-shadow: 0 0 20px hsl(27 91% 47% / 0.7), 0 0 40px hsl(27 91% 47% / 0.3);
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(7,7,7,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}

#navbar.scrolled {
  background: rgba(7,7,7,0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--fg);
  text-decoration: none;
}

.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

.nav-links .nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--primary);
  border-radius: 100px;
  color: var(--primary);
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 24px 120px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, hsl(27 91% 47% / 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: brightness(0.55);
}

.hero-content {
  position: relative;
  width: 100%;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  margin-bottom: 28px;
  border-radius: 100px;
  border: 1px solid hsl(27 91% 47% / 0.3);
  background: hsl(27 91% 47% / 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--primary);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-subtitle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-subtitle-line {
  display: none;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 0 30px hsl(27 91% 47% / 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px hsl(27 91% 47% / 0.6);
  background: hsl(27, 91%, 52%);
}

.btn-primary.large { padding: 20px 44px; font-size: 13px; }

.btn-icon { font-size: 16px; }

.btn-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  line-height: 1.3;
}

.btn-secondary .btn-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-scroll-hint span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
}

.hero-scroll-hint span:nth-child(1) { animation: dotPulse 1.5s 0s ease-in-out infinite; }
.hero-scroll-hint span:nth-child(2) { animation: dotPulse 1.5s 0.2s ease-in-out infinite; }
.hero-scroll-hint span:nth-child(3) { animation: dotPulse 1.5s 0.4s ease-in-out infinite; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ===== VÍDEO DE FUNDO POR SEÇÃO ===== */
.section-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* Overlay escuro + gradiente preto no topo e base — funde com o fundo */
.section-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,1)    0%,
      rgba(0,0,0,0.9) 20%,
      rgba(0,0,0,0.65) 40%,
      rgba(0,0,0,0.65) 60%,
      rgba(0,0,0,0.9) 80%,
      rgba(0,0,0,1)   100%
    );
  z-index: 1;
  pointer-events: none;
}
/* Gap (espaço preto) entre as seções com vídeo */
#hero, #cursos, #servicos, #manifesto {
  margin-bottom: 80px;
}

/* ===== SHOWCASE — 4 vídeos overlay em sessões ===== */
.showcase-section {
  position: relative;
  height: 1200vh; /* 4 sessões × 300vh */
}

.showcase-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* Cada vídeo empilhado, absoluto */
.sv {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.sv.active { opacity: 1; }

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.0)  40%,
    rgba(0,0,0,0.0)  60%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Dots de sessão */
.showcase-dots {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s;
}
.sdot.active {
  background: var(--primary);
  transform: scale(1.4);
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 90px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== CURSOS ===== */
.section-cursos {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 100vh;
  padding: 60px 0 120px;
  background: transparent;
}
.section-cursos .container { position: relative; z-index: 2; width: 100%; }

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

.curso-card {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.52);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.curso-card:hover {
  border-color: hsl(27 91% 47% / 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px hsl(27 91% 47% / 0.08);
}

.curso-card.highlight {
  border-color: hsl(27 91% 47% / 0.3);
  background: hsl(27 91% 47% / 0.04);
}

.curso-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: hsl(27 91% 47% / 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.curso-icon { font-size: 28px; margin-bottom: 16px; }

.curso-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--fg);
}

.curso-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.curso-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.curso-link:hover { opacity: 0.7; }

/* ===== SERVIÇOS ===== */
.section-servicos {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 100vh;
  padding: 60px 0 120px;
  background: transparent;
}
.section-servicos .container { position: relative; z-index: 2; width: 100%; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.servico-card {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s;
}

.servico-card:hover {
  border-color: hsl(27 91% 47% / 0.3);
  transform: translateY(-4px);
}

.servico-card.highlight {
  border-color: hsl(27 91% 47% / 0.4);
  background: hsl(27 91% 47% / 0.03);
  box-shadow: 0 0 60px hsl(27 91% 47% / 0.06), 0 30px 60px rgba(0,0,0,0.4);
}

.servico-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--primary);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #fff;
  white-space: nowrap;
}

.servico-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--primary);
  margin-bottom: 12px;
}

.servico-icon { font-size: 32px; margin-bottom: 16px; }

.servico-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--fg);
}

.servico-price {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0.8;
}

.servico-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.servico-bullets {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.servico-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.bullet-check {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.btn-servico {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border: 1px solid hsl(27 91% 47% / 0.4);
  border-radius: 100px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  background: none;
}

.btn-servico:hover, .btn-servico.primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-servico.primary:hover {
  background: hsl(27, 91%, 52%);
}

/* ===== MANIFESTO ===== */
.section-manifesto {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 0 120px;
  overflow: hidden;
  background: transparent;
}
.section-manifesto .container { position: relative; z-index: 2; width: 100%; }
.section-manifesto .manifesto-inner { text-align: center; }

.manifesto-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, hsl(27 91% 47% / 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-inner {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 90px);
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 20px 0 28px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto-quote .text-primary {
  -webkit-text-fill-color: var(--primary);
  text-shadow: 0 0 30px hsl(27 91% 47% / 0.5);
}

.manifesto-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

/* ===== GRAVAÇÕES ===== */
.section-gravacoes {
  padding: 120px 0;
  background: var(--bg2);
}

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

.gravacao-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s;
}

.gravacao-card:hover {
  border-color: hsl(27 91% 47% / 0.3);
  transform: translateY(-4px);
}

.gravacao-lock {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lock-icon { font-size: 28px; }

.gravacao-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gravacao-project {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--primary);
}

.gravacao-date {
  font-size: 11px;
  color: var(--muted);
}

.gravacao-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--fg);
}

.gravacao-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

.btn-unlock {
  padding: 12px 20px;
  border: 1px solid hsl(27 91% 47% / 0.4);
  border-radius: 100px;
  color: var(--primary);
  background: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.btn-unlock:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== CTA ===== */
.section-cta {
  position: relative;
  padding: 140px 24px;
  background: var(--bg);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(27 91% 47% / 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-line-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(27 91% 47% / 0.3), transparent);
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid hsl(27 91% 47% / 0.2);
  border-radius: 26px;
  padding: 72px 48px;
  background: hsl(27 91% 47% / 0.02);
  box-shadow: 0 0 80px hsl(27 91% 47% / 0.07), 0 40px 80px rgba(0,0,0,0.5);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(27 91% 47% / 0.55), transparent);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin: 16px 0;
}

.cta-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  max-width: 360px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.3);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: relative;
  background: hsl(0, 0%, 6%);
  border: 1px solid hsl(27 91% 47% / 0.25);
  border-radius: 20px;
  padding: 48px 40px;
  width: min(440px, 90vw);
  text-align: center;
  box-shadow: 0 0 60px hsl(27 91% 47% / 0.1), 0 40px 80px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal-overlay.open .modal { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--fg); }

.modal-icon { font-size: 40px; margin-bottom: 16px; }

.modal-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.modal-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-size: 15px;
  outline: none;
  margin-bottom: 8px;
  transition: border-color 0.2s;
  font-family: var(--font-body);
}

.modal-input:focus { border-color: hsl(27 91% 47% / 0.5); }

.modal-error {
  font-size: 12px;
  color: #ff5555;
  margin-bottom: 16px;
  display: none;
  letter-spacing: 0.1em;
}

.modal-error.visible { display: block; }

/* ===== MODAL DE VÍDEO ===== */
.modal-video {
  width: min(860px, 94vw);
  padding: 44px 20px 20px;
  background: hsl(0, 0%, 5%);
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-label {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-align: center;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cursos-grid, .servicos-grid, .gravacoes-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(7,7,7,0.97);
    padding: 32px 24px;
    border-bottom: 1px solid var(--border);
    gap: 24px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-toggle { display: flex; }


  .cta-inner { padding: 48px 24px; }


}

@media (max-width: 600px) {
  #hero { padding: 100px 20px 60px; }
  .hero-title { font-size: 68px; }
  .hero-subtitle { font-size: 22px; }
  .section-cursos, .section-servicos, .section-manifesto,
  .section-gravacoes, .section-cta { padding: 80px 0; }
  .section-cursos .container, .section-servicos .container,
  .section-gravacoes .container { padding: 0 16px; }
  .manifesto-quote { font-size: 38px; }
}

/* ===== SEÇÃO REELS INSTAGRAM ===== */

/* ===== REELS INSTAGRAM — lado a lado, sem moldura ===== */
.section-reels {
  padding: 80px 0 100px;
  background: var(--bg);
}

.reels-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 24px;
}

.reels-ig-btn {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.15em;
}

.reels-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.reel-item {
  flex: 0 0 auto;
}
/* Container que corta a moldura do Instagram */
.reel-clip {
  width: 320px;
  height: 560px;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  position: relative;
}
/* Iframe maior que o container — esconde chrome do Instagram */
.reel-clip iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Destaque tombado pra esquerda */
.reel-clip.rotated {
  width: 560px;
  height: 320px;
}
.reel-clip.rotated iframe {
  width: 320px;
  height: 560px;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
}
@media (max-width: 900px) {
  .reels-row { flex-direction: column; align-items: center; }
  .reel-clip.rotated { width: 320px; height: 560px; }
  .reel-clip.rotated iframe { transform: none; width: 100%; height: 100%; }
}

/* ===== MARCAS QUE NOS ESCOLHERAM — marquee ===== */
.section-marcas {
  padding: 100px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
.marcas-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 24px;
}
.marcas-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* Fades laterais */
.marcas-track-wrap::before,
.marcas-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marcas-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.marcas-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.marcas-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marcas-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marca-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  flex-shrink: 0;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.marca-item:hover { opacity: 1; }
.marca-item img {
  max-height: 44px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.marca-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37,211,102,0.6), 0 6px 16px rgba(0,0,0,0.5);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.55); }
  50%      { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}


/* ── Instagram Feed Grid ─────────────────────────── */
.ig-feed-wrap {
  padding: 40px 24px 60px;
  width: 100%;
}

.ig-embed-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.ig-embed-grid .instagram-media {
  border-radius: 12px !important;
  overflow: hidden;
  width: 100% !important;
  min-width: unset !important;
  max-width: 100% !important;
}


/* ===== SEO SECTION — Filmmaker Imobiliário ===== */
.section-seo {
  padding: var(--section-padding) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.seo-content > p {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.seo-content strong {
  color: var(--fg);
  font-weight: 600;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.seo-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}

.seo-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.seo-item p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.seo-areas {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}

.seo-areas h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.seo-areas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-areas li {
  font-size: 0.8rem;
  color: var(--fg);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
}

.seo-faq h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.seo-faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.seo-faq details + details { margin-top: 0; }

.seo-faq summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.seo-faq summary::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--fg-muted);
  transition: transform 0.2s;
}

.seo-faq details[open] summary::after {
  transform: rotate(45deg);
}

.seo-faq details p {
  padding: 0 1.25rem 1rem;
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}


/* ─── CURSOS: acento roxo ─── */
.section-cursos .section-eyebrow,
.section-cursos .text-primary {
  color: var(--purple) !important;
  text-shadow: none;
}
.section-cursos .curso-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 32px rgba(139,92,246,0.18);
}
.section-cursos .btn-primary,
.section-cursos .btn-vaga {
  background: var(--purple);
  box-shadow: none;
}
.section-cursos .btn-primary:hover,
.section-cursos .btn-vaga:hover {
  background: var(--purple-glow);
  box-shadow: 0 0 40px rgba(139,92,246,0.5);
}

/* ─── Serviço NOVO: bronze/dourado ─── */
.servico-card.novo-servico {
  border: 1px solid var(--bronze);
  background: linear-gradient(135deg, rgba(201,153,58,0.07) 0%, var(--bg2) 100%);
  position: relative;
}

.servico-card.novo-servico .servico-badge {
  background: var(--bronze);
  color: #0a0804;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 100px;
}
.servico-card.novo-servico .servico-eyebrow {
  color: var(--bronze);
}
.servico-card.novo-servico .servico-title {
  text-shadow: rgba(201,153,58,0.35) 0 0 20px;
}
.servico-card.novo-servico .servico-title span {
  color: var(--bronze);
}
.servico-card.novo-servico .btn-servico {
  border-color: var(--bronze);
  color: var(--bronze);
}
.servico-card.novo-servico .btn-servico:hover {
  background: var(--bronze);
  color: #0a0804;
  box-shadow: 0 0 30px var(--bronze-glow);
}
.servico-card.novo-servico:hover {
  border-color: var(--bronze);
  box-shadow: 0 0 40px rgba(201,153,58,0.12);
}


/* ===== PURPLE THEME — CURSOS SECTION ===== */
.text-purple { color: var(--purple); }

.section-cursos--purple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 70%, hsl(270 70% 60% / 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.section-cursos--purple .section-eyebrow {
  color: var(--purple);
}

.section-cursos--purple .curso-card:hover {
  border-color: hsl(270 70% 60% / 0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px hsl(270 70% 60% / 0.12);
}

.section-cursos--purple .curso-card.highlight {
  border-color: hsl(270 70% 60% / 0.35);
  background: hsl(270 70% 60% / 0.05);
}

.section-cursos--purple .curso-num {
  color: hsl(270 70% 60% / 0.20);
}

.section-cursos--purple .curso-link {
  color: var(--purple);
}

.section-cursos--purple .curso-link:hover {
  color: var(--purple-glow);
  text-shadow: 0 0 12px hsl(270 70% 60% / 0.4);
}
