/* ==========================================================================
   AXIS EDUCACIONAL - SISTEMA DE DESIGN & ESTILOS PREMIUM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-primary: #070a13;      /* Dark obsidian background */
  --bg-secondary: #0e1324;    /* Card & section background */
  --bg-tertiary: #131b32;     /* Highlights background */
  --color-green-brand: #009640; /* Logo official green */
  --color-green-glow: #00e676;  /* High-visibility green */
  --color-green-dark: #006400;  /* Subdued dark green */
  --text-white: #ffffff;
  --text-gray-light: #e2e8f0;
  --text-gray-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 230, 118, 0.15);
  
  /* Glassmorphism */
  --glass-bg: rgba(14, 19, 36, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass-blur: blur(12px);

  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-gray-light);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}

/* Background Glowing Orbs */
body::before, body::after {
  content: "";
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  z-index: -1;
  filter: blur(150px);
  pointer-events: none;
  opacity: 0.12;
}

body::before {
  top: 10%;
  left: -10%;
  background: radial-gradient(circle, var(--color-green-glow) 0%, transparent 70%);
}

body::after {
  bottom: 20%;
  right: -10%;
  background: radial-gradient(circle, #0284c7 0%, transparent 70%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, svg {
  max-width: 100%;
  display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  border-radius: 10px;
  transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-green-brand);
}

/* UI Utilities & Components */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6.5rem 0;
  overflow: hidden;
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-normal);
}
.glass-panel:hover {
  border-color: rgba(0, 230, 118, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-green-brand);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(0, 150, 64, 0.3);
}
.btn-primary:hover {
  background-color: var(--color-green-glow);
  color: #000;
  box-shadow: 0 4px 25px rgba(0, 230, 118, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text-white);
}
.btn-secondary:hover {
  border-color: var(--color-green-glow);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}
.btn-outline:hover {
  border-color: var(--color-green-glow);
  color: var(--color-green-glow);
  background: rgba(0, 230, 118, 0.05);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-green-glow);
  background: rgba(0, 230, 118, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 230, 118, 0.2);
  margin-bottom: 1.25rem;
}

.badge-pulse::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-green-glow);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
  100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Text highlight */
.text-gradient {
  background: linear-gradient(135deg, var(--text-white) 30%, var(--color-green-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-green {
  color: var(--color-green-glow);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 10, 19, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo svg {
  height: 46px;
  width: auto;
}

.logo svg .cls-1,
.logo svg .cls-2,
.logo svg .cls-3 {
  transition: fill var(--transition-normal);
}

.logo svg .cls-3 {
  fill: var(--text-white) !important;
}

.logo svg .cls-1,
.logo svg .cls-2 {
  fill: var(--color-green-brand) !important;
}

.logo:hover svg .cls-3 {
  fill: var(--color-green-brand) !important;
}

.logo:hover svg .cls-1,
.logo:hover svg .cls-2 {
  fill: var(--text-white) !important;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.25rem;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray-muted);
}
nav a:hover {
  color: var(--text-white);
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.75rem;
  cursor: pointer;
}

.mobile-only-cta {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .grid-2 {
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item h4 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-green-glow);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-gray-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Media - Glowing Interactive Laptop / Mobile Frame */
.hero-media {
  position: relative;
  width: 100%;
}

.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-back {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
  z-index: 1;
  filter: blur(50px);
  animation: pulse-glow 6s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Pillars Section */
.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

.section-title-wrap h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title-wrap p {
  color: var(--text-gray-muted);
  font-size: 1.1rem;
}

.pillar-card {
  padding: 2.25rem;
  border: 1px solid var(--border-color);
  background: rgba(14, 19, 36, 0.4);
  border-radius: 16px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-green-glow), transparent);
  transform: translateX(-100%);
  transition: var(--transition-slow);
}

.pillar-card:hover::before {
  transform: translateX(100%);
}

.pillar-card:hover {
  transform: translateY(-5px);
  background: rgba(14, 19, 36, 0.7);
  border-color: rgba(0, 230, 118, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 230, 118, 0.05);
}

.pillar-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 150, 64, 0.1);
  border: 1px solid rgba(0, 150, 64, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-green-glow);
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.pillar-card:hover .pillar-icon-box {
  background: var(--color-green-brand);
  color: var(--text-white);
  box-shadow: 0 0 15px rgba(0, 150, 64, 0.4);
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--text-gray-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Methodological Flow Section */
.flow-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.flow-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
  gap: 1rem;
}

/* Connection line in background */
.flow-line {
  position: absolute;
  top: 55px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(to right, transparent, transparent 4px, rgba(0, 230, 118, 0.2) 4px, rgba(0, 230, 118, 0.2) 12px);
  z-index: 1;
}

.flow-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-green-brand), var(--color-green-glow));
  box-shadow: 0 0 8px var(--color-green-glow);
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.flow-step-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 3px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
  box-shadow: var(--glass-shadow);
  color: var(--text-white);
  position: relative;
}

.flow-step:hover .flow-step-circle {
  border-color: var(--color-green-glow);
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.3);
  transform: scale(1.05);
}

.flow-step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-green-brand);
  color: var(--text-white);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-secondary);
}

.flow-step-circle svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.5px;
  color: var(--text-gray-muted);
  transition: var(--transition-normal);
}

.flow-step:hover .flow-step-circle svg {
  color: var(--color-green-glow);
}

.flow-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.flow-step p {
  color: var(--text-gray-muted);
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 200px;
}

/* LMS Interactive Preview Dashboard */
.lms-showcase {
  position: relative;
}

.lms-showcase-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 560px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

/* Left Sidebar LMS Mockup */
.lms-sidebar {
  background: #090e1c;
  border-right: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.lms-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-left: 0.5rem;
}

.lms-brand svg {
  height: 28px;
}

.lms-brand-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
}

.lms-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lms-menu-item a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lms-menu-item a svg {
  width: 18px;
  height: 18px;
}

.lms-menu-item.active a, .lms-menu-item a:hover {
  background: rgba(0, 150, 64, 0.12);
  color: var(--color-green-glow);
}

.lms-menu-item.active a {
  border-left: 3px solid var(--color-green-glow);
  padding-left: calc(1rem - 3px);
  font-weight: 600;
}

.tab-text-mobile {
  display: none;
}
.tab-text-desktop {
  display: inline;
}

/* Main Area LMS Mockup */
.lms-main {
  background: #0c1125;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.lms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.lms-user-welcome h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.lms-user-welcome p {
  font-size: 0.85rem;
  color: var(--text-gray-muted);
}

.lms-top-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lms-search-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lms-search-box input {
  background: none;
  border: none;
  color: var(--text-white);
  outline: none;
  font-size: 0.85rem;
  width: 140px;
}

.lms-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-green-glow);
  overflow: hidden;
  background: #1f2937;
}

/* Content Blocks for different LMS states */
.lms-content-pane {
  display: none;
  animation: fade-in-up 0.5s ease-out forwards;
}

.lms-content-pane.active {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section: Cursos (Default View) */
.lms-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lms-course-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.lms-course-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 230, 118, 0.15);
  transform: translateY(-3px);
}

.lms-course-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-green-glow);
  background: rgba(0, 230, 118, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.lms-course-card h4 {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  min-height: 40px;
}

.lms-progress-wrap {
  margin-top: auto;
}

.lms-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-gray-muted);
  margin-bottom: 0.4rem;
}

.lms-progress-bar-bg {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.lms-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-green-brand), var(--color-green-glow));
  border-radius: 10px;
}

/* LMS Panel View: Desempenho */
.lms-perf-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 1.5rem;
}

.lms-chart-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.lms-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.lms-chart-header h4 {
  font-size: 1.1rem;
}

.lms-chart-header span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-green-glow);
}

/* Simulated SVG line chart */
.lms-svg-chart {
  width: 100%;
  height: 180px;
}

.lms-chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 2.5s ease-out forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

.lms-perf-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lms-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lms-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 230, 118, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-glow);
}

.lms-stat-details h5 {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
  text-transform: uppercase;
}

.lms-stat-details p {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
}

/* LMS Panel View: Atividades & Destaque */
.lms-activities-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lms-activity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.lms-act-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lms-act-icon {
  color: var(--color-green-glow);
}

.lms-act-texts h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.lms-act-texts p {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
}

.lms-act-due {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-gray-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

/* Mobile LMS view on right of section - float frame */
.mobile-mockup-floating {
  position: absolute;
  width: 240px;
  height: 480px;
  right: -50px;
  bottom: -40px;
  background: #090e1c;
  border: 8px solid #1f2937;
  border-radius: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  z-index: 20;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mobile-mockup-header {
  height: 24px;
  background: #1f2937;
  position: relative;
}
.mobile-mockup-notch {
  width: 110px;
  height: 14px;
  background: #1f2937;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-mockup-body {
  flex: 1;
  padding: 1.25rem;
  background: #0c1125;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-user {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
  margin-top: 0.5rem;
}
.mobile-user h4 {
  font-size: 1rem;
}

.mobile-progress-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
}

.mobile-radial-progress {
  width: 70px;
  height: 70px;
  margin: 0.5rem auto;
  position: relative;
}

.mobile-radial-svg {
  transform: rotate(-90deg);
}

.mobile-radial-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 5;
}

.mobile-radial-fill {
  fill: none;
  stroke: var(--color-green-glow);
  stroke-width: 5;
  stroke-dasharray: 220;
  stroke-dashoffset: 55; /* 75% progress */
}

.mobile-radial-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-white);
}

.mobile-progress-card p {
  font-size: 0.75rem;
  color: var(--text-gray-muted);
}

.mobile-course-highlight {
  background: rgba(0, 150, 64, 0.08);
  border: 1px solid rgba(0, 150, 64, 0.2);
  border-radius: 10px;
  padding: 0.85rem;
  margin-top: auto;
}

.mobile-course-highlight h5 {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.mobile-course-highlight p {
  font-size: 0.7rem;
  color: var(--text-gray-muted);
  margin-bottom: 0.5rem;
}

.mobile-btn {
  background: var(--color-green-brand);
  border: none;
  color: var(--text-white);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
}

/* Feature grid items icons etc */
.features-grid {
  margin-top: 2rem;
}

.feature-item {
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: rgba(14, 19, 36, 0.3);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-item:hover {
  border-color: rgba(0, 230, 118, 0.25);
  background: rgba(14, 19, 36, 0.6);
  transform: translateY(-4px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-glow);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--text-gray-muted);
  font-size: 0.9rem;
}

/* Interactive ROI Calculator Section */
.calculator-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #06111f 100%);
  position: relative;
}

.calculator-card {
  padding: 3rem;
  margin-top: 2rem;
}

.calc-control-group {
  margin-bottom: 2rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.calc-label-row label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
}

.calc-value-display {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-green-glow);
}

/* Custom Styled Range Input */
.calc-range {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-green-glow);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
  transition: transform var(--transition-fast);
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  height: 100%;
}

.calc-result-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
}

.calc-result-row:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.calc-res-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-glow);
}

.calc-res-texts h5 {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
  text-transform: uppercase;
}

.calc-res-texts p {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.calc-cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-gray-muted);
  text-align: center;
}

/* Testimonials / Social Proof Section */
.testimonials {
  position: relative;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  padding: 3.5rem;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: rgba(0, 230, 118, 0.1);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 3rem;
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--text-gray-light);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-green-glow);
  margin-bottom: 0.5rem;
  background: #1f2937;
}

.author-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-gray-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-green-glow);
  transform: scale(1.2);
}

/* Trust Logos */
.trust-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4.5rem;
  opacity: 0.6;
  transition: var(--transition-normal);
}

.trust-logos:hover {
  opacity: 0.85;
}

.trust-logo-item {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-gray-muted);
  letter-spacing: 1px;
}

/* FAQ Accordion Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: rgba(14, 19, 36, 0.3);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(0, 230, 118, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-white);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-glow);
  transition: var(--transition-normal);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--color-green-brand);
  color: var(--text-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s cubic-bezier(0.99, 0, 0, 1);
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-gray-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Lead Form Section (High Conversion multi-step) */
.cta-form-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0b1510 100%);
}

.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.cta-tagline h3 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-tagline p {
  color: var(--text-gray-muted);
  margin-bottom: 2.5rem;
}

.cta-benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.cta-benefit-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-green-glow);
}

/* Multi-step Form Wizard */
.wizard-card {
  padding: 3rem;
  border-radius: 20px;
}

.wizard-progress-bar-wrap {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--color-green-brand), var(--color-green-glow));
  box-shadow: 0 0 10px var(--color-green-glow);
  transition: width var(--transition-normal);
}

.wizard-step {
  display: none;
  animation: fade-in-up 0.4s ease-out;
}

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

.wizard-step h4 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

/* Form controls */
.form-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-option-card {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.form-option-card input[type="radio"] {
  display: none;
}

.form-option-card:hover {
  border-color: rgba(0, 230, 118, 0.3);
  background: rgba(0, 230, 118, 0.02);
}

.form-option-card.selected {
  border-color: var(--color-green-glow);
  background: rgba(0, 230, 118, 0.05);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
}

.form-option-icon {
  font-size: 1.5rem;
  color: var(--color-green-glow);
}

.form-option-card span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-white);
}

.form-input-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray-muted);
}

.form-input-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input-control:focus {
  border-color: var(--color-green-glow);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.1);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

/* Success Message */
.wizard-success-state {
  text-align: center;
  padding: 2rem 0;
  display: none;
  animation: fade-in-up 0.5s ease-out;
}

.wizard-success-state.active {
  display: block;
}

.success-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.1);
  border: 2px solid var(--color-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-glow);
  font-size: 2.5rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
}

.wizard-success-state h4 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.wizard-success-state p {
  color: var(--text-gray-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* Footer Section */
footer {
  background: #04060b;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand h4 {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-gray-muted);
  font-weight: 500;
  max-width: 250px;
}

.footer-col h3 {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-gray-muted);
}

.footer-links a:hover {
  color: var(--color-green-glow);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-gray-muted);
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-info svg {
  color: var(--color-green-glow);
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-gray-muted);
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray-muted);
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--color-green-brand);
  color: var(--text-white);
  border-color: var(--color-green-brand);
}

/* Animations for Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .grid-2, .grid-3, .grid-4 {
    gap: 1.5rem;
  }
  
  .flow-wrapper {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .flow-line {
    display: none;
  }
  
  .flow-step {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .lms-showcase-container {
    grid-template-columns: 220px 1fr;
  }
  
  .mobile-mockup-floating {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4.5rem 0;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero {
    padding-top: 8rem;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-only-cta {
    display: block;
    width: 100%;
    margin-top: 1rem;
  }
  
  .mobile-only-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #090e1c;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    display: none;
    z-index: 99;
  }
  
  nav.open {
    display: block;
    animation: fade-in-up 0.3s ease-out;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .lms-showcase-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .lms-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
  }
  
  .lms-menu {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.25rem !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  .lms-menu-item a {
    white-space: nowrap;
    justify-content: center;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.8rem !important;
    gap: 0.4rem !important;
  }
  
  .lms-menu-item.active a {
    border-left: none;
    border-bottom: 3px solid var(--color-green-glow);
    padding-left: 0.5rem !important;
    padding-bottom: calc(0.75rem - 3px) !important;
  }
  
  .tab-text-desktop {
    display: none;
  }
  
  .tab-text-mobile {
    display: inline;
  }
  
  .lms-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }
  
  .lms-top-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .lms-search-box {
    flex-grow: 1;
  }
  
  .lms-search-box input {
    width: 100%;
  }
  
  .lms-main {
    padding: 1.5rem;
  }
  
  .lms-courses-grid {
    grid-template-columns: 1fr;
  }
  
  .lms-perf-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  }
  
  .quote-icon {
    font-size: 2.5rem;
    left: 1rem;
    top: 1rem;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    width: 100%;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-item h4 {
    font-size: 1.6rem;
  }
  
  .badge {
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .cta-form-grid {
    grid-template-columns: 1fr;
  }
  
  .wizard-card {
    padding: 1.75rem;
  }
  
  .calculator-card {
    padding: 1.5rem;
  }
  
  .form-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flow-step {
    flex: 0 0 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* ==========================================================================
   PRELOADER - ESTILOS E ANIMAÇÕES FUTURISTAS / TECH
   ========================================================================== */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #070a13;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999; /* Garante que ficará acima de tudo */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), 
              visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 2;
}

/* Central logo container - Pulses and glows */
.preloader-logo-wrap {
  position: relative;
  width: 200px;
  height: auto;
  animation: logoPulse 2.5s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-svg {
  width: 100%;
  height: auto;
}

/* Tech spinning outer ring */
.preloader-hud-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 2px dashed rgba(0, 230, 118, 0.12);
  border-radius: 50%;
  animation: spinHUD 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.preloader-hud-ring::before {
  content: '';
  position: absolute;
  top: -6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: var(--color-green-glow);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--color-green-glow), 0 0 30px var(--color-green-glow);
}

/* Tech spinning inner ring in reverse */
.preloader-hud-ring-inner {
  position: absolute;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 2px solid rgba(0, 230, 118, 0.3);
  border-bottom: 2px solid rgba(0, 230, 118, 0.3);
  border-radius: 50%;
  animation: spinHUDReverse 15s linear infinite;
  pointer-events: none;
  z-index: 1;
}

/* Loading bar */
.preloader-progress-container {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-green-brand), var(--color-green-glow));
  box-shadow: 0 0 8px var(--color-green-glow);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Loading status text styles */
.preloader-text-status {
  font-family: var(--font-title);
  font-size: 0.8rem;
  color: var(--text-gray-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: textGlitch 4s linear infinite;
}

/* Keyframes */
@keyframes logoPulse {
  0%, 100% {
    transform: scale(0.96);
    filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.15));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 35px rgba(0, 230, 118, 0.5));
  }
}

@keyframes spinHUD {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinHUDReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes textGlitch {
  0%, 95%, 100% {
    opacity: 0.8;
    color: var(--text-gray-muted);
  }
  96% {
    opacity: 0.3;
    color: var(--color-green-glow);
  }
  97% {
    opacity: 0.9;
  }
  98% {
    opacity: 0.2;
    color: var(--text-white);
  }
  99% {
    opacity: 0.8;
  }
}

