:root {
  /* Dark Cyber Premium Theme Palette */
  --bg-main: #06080F;
  --bg-surface: #0A0D1A;
  --bg-card: rgba(16, 20, 36, 0.65);
  --bg-card-hover: rgba(20, 25, 45, 0.8);
  
  --primary: #6B46FF;
  --primary-light: #8A63F8;
  --secondary: #4A90E2;
  --accent: #00D4AA;
  
  --text-main: #FFFFFF;
  --text-muted: #A0AEC0;
  --text-accent: #6B46FF;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(107, 70, 255, 0.35);
  --border-focus: #6B46FF;
  
  --success: #10873a;
  --danger: #d42020;
  
  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  
  /* Utils */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 25px rgba(107, 70, 255, 0.35);
  --shadow-glow-lg: 0 0 40px rgba(107, 70, 255, 0.25), 0 0 80px rgba(107, 70, 255, 0.1);
  --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Previne que a navbar cubra o título das seções */
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: radial-gradient(circle at 15% 50%, rgba(107, 70, 255, 0.06) 0%, transparent 40%),
                    radial-gradient(circle at 85% 30%, rgba(74, 144, 226, 0.06) 0%, transparent 40%),
                    radial-gradient(circle at 50% 80%, rgba(0, 212, 170, 0.03) 0%, transparent 35%);
  background-attachment: fixed;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.pt-150 { padding-top: 150px; }
.pb-100 { padding-bottom: 100px; }

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

.text-gradient {
  background: linear-gradient(135deg, #8A63F8 0%, #4A90E2 50%, #00D4AA 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Typography Classes */
h1, h2, h3, h4 { 
  font-family: var(--font-heading); 
  font-weight: 700; 
  line-height: 1.2; 
  letter-spacing: -0.025em;
  color: #FFFFFF;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 800px;
  margin-bottom: 50px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0; width: 100%;
  padding: 20px 5%;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
}

nav.scrolled {
  padding: 15px 5%;
  background-color: rgba(6, 8, 15, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-light);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0px;
  color: #FFFFFF;
}

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

.nav-links {
  display: flex; gap: 35px;
}

.nav-links a {
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-muted); transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: #FFFFFF;
}

/* Badges */
.badge-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(107, 70, 255, 0.3);
  background: rgba(107, 70, 255, 0.05);
  color: #8A63F8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer; border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #6B46FF 0%, #4A90E2 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-lg);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(107, 70, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Whatsapp Button */
.whatsapp-float {
  position: relative;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float i { width: 30px; height: 30px; }

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1EBE5D;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  text-align: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4.5rem; margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.2rem; color: var(--text-muted);
  margin-bottom: 40px; max-width: 700px; margin-inline: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex; justify-content: center; gap: 20px;
  margin-bottom: 60px;
}

/* Social Proof Avatars */
.social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
  width: 100%;
  max-width: 600px;
  justify-content: center;
  margin: 0 auto;
}

.avatars {
  display: flex;
}

.avatars img, .avatar-placeholder {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--bg-main);
  margin-left: -12px;
  object-fit: cover;
  background-color: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  font-weight: bold;
}

.avatars img:first-child, .avatars .avatar-placeholder:first-child { margin-left: 0; }
.avatar-1 { background: linear-gradient(135deg, #6B46FF, #4A90E2); }
.avatar-2 { background: linear-gradient(135deg, #FF468B, #FF8A46); }
.avatar-3 { background: linear-gradient(135deg, #46FFB5, #4690FF); }

.social-proof p {
  font-size: 0.9rem; color: var(--text-muted); margin: 0;
}
.social-proof p strong { color: #fff; font-weight: 600; }

/* Grid Sections */
.section-pad { padding: 80px 0; }
.bg-surface { background-color: var(--bg-surface); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

.grid-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}

/* Card Solid (Novo) */
.card-solid {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 30px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  height: 100%;
}

.card-solid:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  color: var(--primary);
  margin-bottom: 20px;
  width: 32px;
  height: 32px;
}

/* Dashboard Mockup (Novo) */
.dashboard-mockup {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: inset 0 0 20px rgba(107, 70, 255, 0.1);
}

/* Services Cards */
.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-elevated);
  background: var(--bg-card-hover);
}

.service-card .card-icon {
  color: var(--primary);
  margin-bottom: 25px;
}

.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.service-card > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 20px; }

.service-list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px;
  padding-top: 20px; border-top: 1px solid var(--border-light);
}

.service-list li {
  position: relative; padding-left: 20px; font-size: 0.95rem; color: var(--text-muted);
}
.service-list li::before {
  content: "→"; position: absolute; left: 0; color: var(--primary); font-weight: bold; font-size: 1rem; line-height: 1;
}

.service-footer-text {
  font-size: 0.9rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.05); padding: 10px 15px; border-radius: var(--radius-sm);
}

/* Timeline (Metodologia) */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.timeline-step {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  transition: var(--transition);
}
.timeline-step:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.step-number {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800;
  color: var(--primary); margin-bottom: 15px; display: block;
}

.timeline-step h4 { font-size: 1.1rem; margin-bottom: 10px; }
.timeline-step p { font-size: 0.9rem; color: var(--text-muted); }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 25px 0; font-size: 1.15rem; font-weight: 600; color: #fff;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading);
}
.faq-icon { color: var(--primary); transition: transform 0.2s; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  color: var(--text-muted); font-size: 1rem; line-height: 1.6;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 25px; }

/* Termos e Políticas (Legal Pages Layout) */
.termos-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

.termo-indice-wrapper {
  position: sticky;
  top: 100px;
}

.termo-indice {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(10px);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.termo-indice::-webkit-scrollbar { width: 6px; }
.termo-indice::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 4px; }
.termo-indice::-webkit-scrollbar-thumb { background: rgba(107, 70, 255, 0.3); border-radius: 4px; }

.termo-indice h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #fff;
}

.termo-indice ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.termo-indice li {
  margin-bottom: 8px;
}

.termo-indice a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
}

.termo-indice a:hover,
.termo-indice a.active {
  color: #fff;
  background-color: rgba(255,255,255,0.05);
  border-left-color: var(--primary);
  font-weight: 600;
}

.termo-content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  padding-top: 100px;
  margin-top: -50px;
  color: #fff;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.termo-content h3 {
  padding-top: 100px;
  margin-top: -70px;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 1.2rem;
}

.termo-content p, .termo-content ul {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.termo-content ul {
  padding-left: 25px;
}

.termo-content li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.termo-indice-toggle {
  display: none;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.back-to-top {
  position: fixed;
  bottom: 100px; /* Above whatsapp btn */
  right: 35px;
  background: rgba(107, 70, 255, 0.2);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid var(--primary);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Forms */
.portal-form-container { max-width: 700px; margin: 0 auto; background: var(--bg-card); padding: 50px; border-radius: var(--radius-md); border: 1px solid var(--border-light); backdrop-filter: blur(10px); }
.premium-input { width: 100%; padding: 16px 20px; background-color: rgba(0,0,0,0.3); border: 1px solid var(--border-light); border-radius: var(--radius-sm); color: #fff; font-family: var(--font-main); font-size: 1rem; transition: var(--transition); }
.premium-input:focus { outline: none; border-color: var(--primary); box-shadow: var(--shadow-glow); }
.premium-input option { background-color: var(--bg-surface); color: #fff; font-size: 1rem; }
.premium-label { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.premium-label i { color: var(--primary); }
.form-section { margin-bottom: 35px; }

/* Tables */
table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
th { padding: 12px; color: #fff; text-align: left; background-color: rgba(255,255,255,0.05); border-bottom: 2px solid var(--primary); }
td { padding: 12px; border-bottom: 1px solid var(--border-light); color: var(--text-muted); }

/* CTA Final */
.cta-final { 
  background: linear-gradient(135deg, rgba(107, 70, 255, 0.12) 0%, rgba(74, 144, 226, 0.08) 50%, rgba(0, 212, 170, 0.06) 100%); 
  padding: 120px 0; 
  text-align: center; 
  border-top: 1px solid var(--border-light); 
  border-bottom: 1px solid var(--border-light); 
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107, 70, 255, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-final h2 { font-size: 2.8rem; margin-bottom: 20px; color: #fff; position: relative; }
.cta-final p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-inline: auto; position: relative; }
.cta-final .btn { position: relative; }

/* Diferencial Cards */
.diff-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}
.diff-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}
.diff-card h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.diff-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.diff-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(107, 70, 255, 0.1);
  border: 1px solid rgba(107, 70, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.diff-card:hover .diff-icon-wrap {
  background: rgba(107, 70, 255, 0.2);
  border-color: rgba(107, 70, 255, 0.4);
  box-shadow: 0 0 20px rgba(107, 70, 255, 0.2);
}

/* Footer */
footer { padding: 80px 0 40px; background: var(--bg-main); border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-muted); max-width: 300px; font-size: 0.95rem; margin-top: 15px; }
.footer-links h4, .footer-contact h4 { font-size: 1rem; margin-bottom: 20px; color: #fff; font-weight: 700; }
.footer-links a, .footer-contact p { display: flex; align-items: center; gap: 10px; color: var(--text-muted); margin-bottom: 12px; font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border-light); padding-top: 30px; display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); }

/* Animations */
.js-enabled .fade-in { 
  opacity: 0; 
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); 
  transform: translateY(30px); 
}
.js-enabled .fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 1; }

/* Staggered animation delays for grids */
.js-enabled .grid-cards .fade-in:nth-child(1) { transition-delay: 0s; }
.js-enabled .grid-cards .fade-in:nth-child(2) { transition-delay: 0.1s; }
.js-enabled .grid-cards .fade-in:nth-child(3) { transition-delay: 0.2s; }
.js-enabled .grid-cards .fade-in:nth-child(4) { transition-delay: 0.3s; }
.js-enabled .grid-cards .fade-in:nth-child(5) { transition-delay: 0.4s; }
.js-enabled .grid-cards .fade-in:nth-child(6) { transition-delay: 0.5s; }

.js-enabled .team-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.js-enabled .team-grid .fade-in:nth-child(2) { transition-delay: 0.15s; }
.js-enabled .team-grid .fade-in:nth-child(3) { transition-delay: 0.3s; }

.js-enabled .timeline .fade-in:nth-child(1) { transition-delay: 0s; }
.js-enabled .timeline .fade-in:nth-child(2) { transition-delay: 0.08s; }
.js-enabled .timeline .fade-in:nth-child(3) { transition-delay: 0.16s; }
.js-enabled .timeline .fade-in:nth-child(4) { transition-delay: 0.24s; }
.js-enabled .timeline .fade-in:nth-child(5) { transition-delay: 0.32s; }
.js-enabled .timeline .fade-in:nth-child(6) { transition-delay: 0.4s; }
.js-enabled .timeline .fade-in:nth-child(7) { transition-delay: 0.48s; }
.js-enabled .timeline .fade-in:nth-child(8) { transition-delay: 0.56s; }

/* ==================================================
   NOVA SEÇÃO: ESTILO PREMIUM E GLOW EFFECTS
   ================================================== */
:root {
  --neon-glow-primary: 0 0 20px rgba(107, 70, 255, 0.4);
  --neon-glow-secondary: 0 0 20px rgba(74, 144, 226, 0.4);
}

/* Card Glow Effect */
.glow-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.glow-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: inherit;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #6B46FF, #4A90E2) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.glow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(107, 70, 255, 0.25);
  border-color: transparent !important;
}

.glow-card:hover::after {
  opacity: 1;
}

/* Efeito Typing no Hero */
.typing-cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--secondary);
  margin-left: 4px;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  from, to { background-color: transparent }
  50% { background-color: var(--secondary) }
}

/* ==================================================
   NOVA SEÇÃO: ESTATÍSTICAS E PARCEIROS
   ================================================== */
.stats-bar {
  background: rgba(6, 8, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(90deg, #8A63F8 0%, #4A90E2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.partners-title {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 700;
}

.partners-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.4;
}

.partners-flex span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

/* ==================================================
   NOVA SEÇÃO: QUEM SOMOS (TIME DE ELITE)
   ================================================== */
.team-section {
  position: relative;
  background-color: var(--bg-main);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-avatar-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #6B46FF, #4A90E2);
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  border: 3px solid var(--bg-surface);
}

.team-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: justify;
}

.team-social-link {
  margin-top: 20px;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
}

.team-social-link:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}


/* ==================================================
   NOVA SEÇÃO: SIMULADOR DE RISCO LGPD
   ================================================== */
.simulator-container {
  max-width: 800px;
  margin: 50px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.simulator-container::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(107, 70, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.sim-header {
  text-align: center;
  margin-bottom: 40px;
}

.sim-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.sim-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.sim-progress-wrapper {
  margin-bottom: 40px;
}

.sim-progress-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.sim-progress-bar {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #6B46FF 0%, #4A90E2 100%);
  box-shadow: 0 0 10px rgba(107, 70, 255, 0.5);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-progress-steps-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.sim-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.sim-step.active {
  display: block;
}

.sim-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
  line-height: 1.5;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sim-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sim-option-btn {
  width: 100%;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sim-option-btn:hover {
  background: rgba(107, 70, 255, 0.08);
  border-color: var(--primary);
  transform: translateX(5px);
}

.sim-option-btn i {
  opacity: 0;
  color: var(--primary);
  transition: opacity 0.2s;
}

.sim-option-btn:hover i {
  opacity: 1;
}

/* Simulador: Resultados */
.sim-results {
  display: none;
  text-align: center;
  animation: scaleUp 0.5s ease;
}

.sim-results.active {
  display: block;
}

.sim-score-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 4px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.sim-score-val {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}

.sim-score-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 700;
}

.sim-risk-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.sim-risk-alto {
  background: rgba(212, 32, 32, 0.15);
  border: 1px solid var(--danger);
  color: #ff6b6b;
  box-shadow: 0 0 15px rgba(212, 32, 32, 0.2);
}

.sim-risk-medio {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid #f59e0b;
  color: #fbbf24;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.sim-risk-baixo {
  background: rgba(16, 135, 58, 0.15);
  border: 1px solid var(--success);
  color: #51cf66;
  box-shadow: 0 0 15px rgba(16, 135, 58, 0.2);
}

.sim-feedback-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 600px;
  margin-inline: auto;
}

/* WhatsApp Notification flutuante */
.whatsapp-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
}

.whatsapp-notification {
  background: rgba(10, 13, 26, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  animation: floatNotification 3s ease infinite;
  pointer-events: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.whatsapp-notification.visible {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-notification strong {
  color: #25D366;
  display: block;
}

@keyframes floatNotification {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
.mobile-menu-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 5px; }
.desktop-only { display: inline-block; }
.mobile-only { display: none; }
.nav-actions { display: flex; align-items: center; gap: 15px; }

@media (max-width: 992px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .termos-layout { grid-template-columns: 1fr; gap: 30px; }
  .termo-indice-wrapper { position: static; }
  .termo-indice-toggle { display: flex; }
  .termo-indice { display: none; margin-top: -10px; border-top-left-radius: 0; border-top-right-radius: 0; }
  .termo-indice.expanded { display: block; }
  
  /* Ajustes Responsivos Novas Seções */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .simulator-container { padding: 30px 20px; }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  
  .nav-links { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: var(--bg-surface); 
    flex-direction: column; 
    padding: 20px; 
    border-bottom: 1px solid var(--border-light); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  
  .nav-links.active { display: flex; }
  .nav-links li { margin: 15px 0; width: 100%; text-align: center; }
  .nav-links .btn { width: 100%; }

  .hero h1 { font-size: 2.4rem; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin-inline: auto; }
  .timeline { grid-template-columns: 1fr; }
  .grid-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .portal-form-container { padding: 30px 20px; }
  
  /* Ajustes Responsivos Novas Seções (Mobile) */
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .sim-question { font-size: 1.1rem; }
  .sim-option-btn { padding: 15px 18px; font-size: 0.95rem; }
  .sim-score-circle { width: 130px; height: 130px; }
  .sim-score-val { font-size: 2.5rem; }
  .partners-flex { gap: 20px; justify-content: center; }
  
  /* Ajustes para tabelas em telas pequenas */
  table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Custom Select Dropdowns */
.custom-select-wrapper { position: relative; width: 100%; user-select: none; }
.custom-select { width: 100%; padding: 16px 20px; background-color: rgba(0,0,0,0.3); border: 1px solid var(--border-light); border-radius: var(--radius-sm); color: #fff; font-family: var(--font-main); font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.custom-select:hover { border-color: var(--primary); }
.custom-select.open { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.custom-select-arrow { transition: transform 0.3s; font-size: 0.8rem; }
.custom-select.open .custom-select-arrow { transform: rotate(180deg); }
.custom-options { position: absolute; display: block; top: 100%; left: 0; right: 0; background-color: var(--bg-surface); border: 1px solid var(--border-light); border-radius: var(--radius-sm); margin-top: 5px; z-index: 100; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.5); max-height: 250px; overflow-y: auto; }
.custom-select.open + .custom-options { opacity: 1; pointer-events: all; transform: translateY(0); }
.custom-option { padding: 14px 20px; color: var(--text-muted); cursor: pointer; transition: background 0.2s, color 0.2s; font-size: 0.95rem; }
.custom-option:hover, .custom-option.selected { background-color: rgba(107, 70, 255, 0.1); color: #fff; }
