:root {
  --primary: #6c5ce7;
  --primary-dark: #5a4bd1;
  --secondary: #00cec9;
  --accent: #fdcb6e;
  --dark: #1a1a2e;
  --dark-card: #16213e;
  --gray: #636e72;
  --light-gray: #dfe6e9;
  --bg: #0f0f1a;
  --bg-card: #1e1e36;
  --text: #f5f6fa;
  --text-muted: #b2bec3;
  --success: #00b894;
  --danger: #d63031;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(108, 92, 231, 0.15);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 999;
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

a { color: var(--secondary); text-decoration: none; }
main a:not(.btn):not(.btn-nav) { text-decoration: underline; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(108, 92, 231, 0.1);
  transition: all 0.3s;
}
.header.scrolled { background: rgba(15, 15, 26, 0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo span { -webkit-text-fill-color: var(--text); }
.logo.logo-img {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  display: inline-flex;
  align-items: center;
}
.logo-img { height: 32px; width: auto; max-width: 100%; display: block; }
@media (max-width: 768px) { .logo-img { height: 28px; } }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }
.nav .btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.nav .btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); color: #fff; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(108,92,231,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #8b7cf7);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(108,92,231,0.1); }
.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
}
.btn-secondary:hover { filter: brightness(1.1); transform: translateY(-2px); }

.hero-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark-card), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(108,92,231,0.2);
}
.play-btn {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 40px rgba(108,92,231,0.3);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 60px rgba(108,92,231,0.4); }
.play-btn svg { fill: #fff; width: 30px; height: 30px; margin-left: 4px; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stat .hero-stat-value { font-size: 1.8rem; font-weight: 800; color: var(--secondary); margin: 0; }
.hero-stat p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.section-tag {
  display: inline-block;
  background: rgba(108,92,231,0.12);
  color: #a29bfe;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ===== DORES ===== */
.dores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.dor-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}
.dor-card:hover { transform: translateY(-4px); border-color: rgba(108,92,231,0.2); }
.dor-icon {
  width: 48px;
  height: 48px;
  background: rgba(108,92,231,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.dor-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.dor-card p { color: var(--text-muted); font-size: 0.9rem; }
.dor-solucao {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== MODULOS ===== */
.modulos-bg { background: var(--bg-card); }
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.modulo-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.modulo-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.modulo-num {
  font-size: 2rem;
  font-weight: 800;
color: rgba(162,155,254,0.72);
  margin-bottom: 12px;
}
.modulo-card h3 { font-size: 1rem; margin-bottom: 8px; }
.modulo-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(108,92,231,0.06), var(--bg-card));
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .pricing-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.pricing-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-period { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; }
.pricing-features li.nao::before { content: '✗'; color: var(--text-muted); }
.pricing-features li.nao { color: var(--text-muted); }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  text-align: left;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== GARANTIA ===== */
.garantia {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(0,206,201,0.15);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
}
.garantia-icon { font-size: 4rem; margin-bottom: 20px; }
.garantia h3 { font-size: 1.6rem; margin-bottom: 12px; }
.garantia p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { font-size: 1.3rem; display: block; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; }
.footer-col .footer-col-title { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--text-muted); font-weight: 700; }
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* ===== SOBRE ===== */
.sobre-missao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre-valores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.valor-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.valor-icon { font-size: 2rem; margin-bottom: 12px; }
.valor-card h4 { margin-bottom: 8px; }
.valor-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--dark-card), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: rgba(108,92,231,0.1);
  color: #a29bfe;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-body p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }
.blog-body a { font-size: 0.85rem; font-weight: 600; }

/* ===== MEMBROS ===== */
.membro-header {
  background: linear-gradient(135deg, rgba(15,15,30,0.98), rgba(20,18,40,0.98));
  padding: 14px 0;
  border-bottom: 1px solid rgba(108,92,231,0.15);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
.membro-dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 56px);
  background: linear-gradient(160deg, #0c0c1d 0%, #110f24 40%, #0d1117 100%);
}
.membro-sidebar {
  background: linear-gradient(180deg, rgba(15,15,30,0.95), rgba(10,10,25,0.98));
  padding: 24px 12px;
  border-right: 1px solid rgba(108,92,231,0.1);
  position: sticky; top: 56px; height: calc(100vh - 56px); overflow-y: auto;
}
.membro-sidebar::before {
  content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%;
  background: linear-gradient(180deg, rgba(108,92,231,0.3), transparent 50%, rgba(16,185,129,0.2));
  pointer-events: none;
}
.membro-avatar-sm {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.membro-avatar-sm:hover { transform: scale(1.08); box-shadow: 0 0 16px rgba(162,155,254,0.4); }
.membro-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-muted);
  margin-bottom: 2px;
  transition: all 0.2s;
  font-size: 0.85rem;
  text-decoration: none;
  position: relative;
}
.membro-sidebar nav a:hover {
  background: rgba(108,92,231,0.1);
  color: var(--text);
}
.membro-sidebar nav a.active {
  background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(16,185,129,0.08));
  color: var(--primary); font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(108,92,231,0.2);
}
.membro-sidebar nav a.active::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 60%; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}
.membro-sidebar nav hr {
  border: none; border-top: 1px solid rgba(108,92,231,0.1); margin: 12px 0;
}
.membro-header .sidebar-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 8px; align-items: center; justify-content: center;
  color: var(--text-muted); transition: background 0.2s;
}
.membro-header .sidebar-toggle:hover { background: rgba(255,255,255,0.06); }
.membro-header .sidebar-toggle span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 1px; position: relative; }
.membro-header .sidebar-toggle span::before, .membro-header .sidebar-toggle span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 1px;
}
.membro-header .sidebar-toggle span::before { top: -6px; }
.membro-header .sidebar-toggle span::after { top: 6px; }
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 199; }
.sidebar-overlay.open { display: block; }
.membro-content { padding: 32px 40px; }
.membro-welcome h1 { font-size: 1.6rem; margin-bottom: 4px; }
.membro-progress {
  background: linear-gradient(135deg, rgba(108,92,231,0.08), rgba(16,185,129,0.05));
  border: 1px solid rgba(108,92,231,0.15);
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}
.membro-progress::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(108,92,231,0.1), transparent 70%);
  pointer-events: none;
}
.progress-bar {
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 12px;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #10b981);
  border-radius: 999px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 0 12px rgba(108,92,231,0.4);
  position: relative;
}
.progress-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.section-title-membro {
  font-size: 1.1rem; font-weight: 700; margin: 36px 0 16px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.section-title-membro::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(108,92,231,0.3), transparent);
}
.modulo-lista { display: flex; flex-direction: column; gap: 8px; }
.modulo-item {
  background: linear-gradient(135deg, rgba(20,20,40,0.6), rgba(15,15,35,0.8));
  border: 1px solid rgba(108,92,231,0.1);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}
.modulo-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  opacity: 0; transition: opacity 0.3s;
}
.modulo-item:hover { border-color: rgba(108,92,231,0.25); box-shadow: 0 8px 32px rgba(108,92,231,0.12); transform: translateY(-2px); }
.modulo-item:hover::before { opacity: 1; }
.modulo-item-info h3 { font-size: 0.95rem; margin-bottom: 2px; }
.modulo-item-info p { color: var(--text-muted); font-size: 0.82rem; }
.modulo-item-status {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.status-completo { background: rgba(16,185,129,0.15); color: #10b981; box-shadow: 0 0 8px rgba(16,185,129,0.15); }
.status-andamento { background: rgba(108,92,231,0.15); color: #a78bfa; box-shadow: 0 0 8px rgba(108,92,231,0.15); }
.status-trancado { background: rgba(255,255,255,0.05); color: var(--text-muted); }

/* Botão do menu mobile (visível apenas em telas pequenas) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { font-size: 2.2rem; }
  .sobre-missao { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15,15,26,0.98);
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 16px;
    z-index: 50;
  }
  .hero { padding-top: 60px; }
  .hero-content h1 { font-size: 1.8rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .membro-sidebar { display: none; position: fixed; top: 56px; left: 0; bottom: 0; width: 260px; z-index: 200; box-shadow: 4px 0 24px rgba(0,0,0,0.5); }
  .membro-sidebar.open { display: block; }
  .membro-header .sidebar-toggle { display: flex; }
}

/* ===== PAGINA INTERNA ===== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   VISUAL & ANIMAÇÕES (estilo Webflow/Framer)
   ============================================================ */

/* Orbs de fundo flutuantes */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.orb-1 {
  width: 540px; height: 540px; top: -140px; left: -140px;
  background: radial-gradient(circle, rgba(108,92,231,0.55) 0%, transparent 70%);
  animation: orbFloat 20s ease-in-out infinite alternate;
}
.orb-2 {
  width: 480px; height: 480px; bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(0,206,201,0.4) 0%, transparent 70%);
  animation: orbFloat 26s ease-in-out infinite alternate-reverse;
}
.orb-3 {
  width: 320px; height: 320px; top: 28%; left: 52%;
  background: radial-gradient(circle, rgba(253,203,110,0.22) 0%, transparent 70%);
  animation: orbFloat 32s ease-in-out infinite alternate;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(46px, -34px) scale(1.12); }
}
.hero-grid, .hero-video { position: relative; z-index: 1; }

/* Entrada do hero (stagger) */
.js-anim .hero-content > *,
.js-anim .hero-video-placeholder {
  animation: riseIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}
.js-anim .hero-content > :nth-child(1) { animation-delay: 0.10s; }
.js-anim .hero-content > :nth-child(2) { animation-delay: 0.22s; }
.js-anim .hero-content > :nth-child(3) { animation-delay: 0.34s; }
.js-anim .hero-content > :nth-child(4) { animation-delay: 0.46s; }
.js-anim .hero-content > :nth-child(5) { animation-delay: 0.58s; }
.js-anim .hero-video-placeholder { animation-delay: 0.30s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* Flutuação do card de vídeo (usa translate, independe do transform) */
.hero-video-placeholder {
  animation: riseIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s backwards,
             floatY 7s ease-in-out 1.2s infinite;
}
@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* Gradiente "fluindo" no destaque do título */
.hero-content h1 span {
  background-size: 200% auto;
  animation: gradientShift 6s linear infinite;
}
@keyframes gradientShift { to { background-position: 200% center; } }

/* Reveal ao rolar */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.js-anim .reveal.reveal-visible { opacity: 1; transform: translateY(0); }
.js-anim .pricing-card.featured.reveal-visible { transform: scale(1.03); }
.js-anim .pricing-card.featured.reveal-visible:hover { transform: scale(1.03) translateY(-4px); }

/* Brilho nos cards ao passar o mouse */
.dor-card, .modulo-card, .pricing-card, .blog-card, .valor-card {
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.3s,
    box-shadow 0.4s;
}
.dor-card:hover, .modulo-card:hover, .pricing-card:hover,
.blog-card:hover, .valor-card:hover {
  box-shadow: 0 16px 44px rgba(108, 92, 231, 0.22);
}

/* Borda animada no plano em destaque */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.pricing-card.featured { position: relative; z-index: 1; }
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--angle), var(--primary), var(--secondary), var(--accent), var(--primary));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: spinBorder 8s linear infinite;
  pointer-events: none;
}
@keyframes spinBorder { to { --angle: 360deg; } }

/* Marquee de tópicos */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(30, 30, 54, 0.45);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.4px;
}
.marquee-item::after { content: '✦'; margin-left: 56px; color: var(--primary); }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* Pulso no botão de play */
.play-btn { position: relative; }
.play-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(108, 92, 231, 0.6);
  animation: pulseRing 2.6s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Brilho no botão primário */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn-primary:hover::after { left: 130%; transition: left 0.7s ease; }



/* Responsividade avançada para celular */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { font-size: 2.2rem; }
  .sobre-missao { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15,15,26,0.98);
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 16px;
    z-index: 50;
  }
  .hero { padding-top: 60px; }
  .hero-content h1 { font-size: 1.8rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .membro-dashboard { grid-template-columns: 1fr; }
  .membro-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo-img { height: 32px; }
}
@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .section-title { font-size: 1.4rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-stats { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-bottom p { font-size: 0.75rem; }
  .logo-img { height: 24px; }
}/* Sublinhado animado nos links do menu */
.nav a:not(.btn-nav) { position: relative; }
.nav a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}
.nav a:not(.btn-nav):hover::after { width: 100%; }

/* Respeita preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .marquee-track, .play-btn::after, .hero-content h1 span,
  .pricing-card.featured::before, .hero-video-placeholder { animation: none !important; }
  .js-anim .hero-content > *, .js-anim .hero-video-placeholder {
    opacity: 1; transform: none; translate: none; animation: none !important;
  }
  .js-anim .reveal { opacity: 1; transform: none; transition: none !important; }
  .btn-primary::after { display: none; }
}
