.elementor-4988 .elementor-element.elementor-element-8c40bb3{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4988 .elementor-element.elementor-element-0d1decf{width:100%;max-width:100%;}.elementor-4988 .elementor-element.elementor-element-0d1decf > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-0d1decf *//* Base styles */
:root {
  --blue: #4285f4;
  --purple: #8d00ff;
  --pink: #c50491;
  --cosmic-purple: #0a0015;
  --deep-purple: #050010;
  --background: #000000;
  --text: #ffffff;
  --text-dark: #1a1a1a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  background-color: #000000 !important;
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hero section - Completamente escura */
.elune-hero-section {
  height: 100vh;
  max-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  /* Fundo PRETO TOTAL com apenas um toque de roxo muito escuro */
  background-color: #000000 !important;
  background-image: 
    radial-gradient(circle at 25% 25%, #0d001a 0%, transparent 20%),
    radial-gradient(circle at 75% 75%, #0a0015 0%, transparent 20%);
}

/* Efeito de nebulosa cósmica MUITO SUTIL */
.elune-nebula-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08 !important; /* MUITO mais escuro */
  background: 
    radial-gradient(circle at 20% 30%, rgba(100, 0, 200, 0.2) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(150, 0, 100, 0.15) 0%, transparent 25%);
  filter: blur(80px);
  animation: nebula-float 40s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes nebula-float {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

/* Particles canvas */
#elune-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.8;
}

/* Main content - Aproximado do topo */
.elune-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1300px;
  padding: 0 20px;
  padding-top: 0;
  margin-top: -40px;
}

.elune-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(141, 0, 255, 0.3);
}

@media (min-width: 768px) {
  .elune-hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .elune-hero-title {
    font-size: 5rem;
  }
}

/* Gradiente para a palavra "Elune" */
.elune-gradient-text {
  background: linear-gradient(to right, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(141, 0, 255, 0.6));
}

.elune-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.elune-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .elune-hero-buttons {
    flex-direction: row;
  }
}

.elune-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.elune-btn .elune-icon {
  margin-right: 0.5rem;
}

.elune-btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(141, 0, 255, 0.4);
}

.elune-btn-primary:hover {
  background: linear-gradient(135deg, #7800d9, #a00378);
  color: #fff !important;
  box-shadow: 0 6px 30px rgba(141, 0, 255, 0.6);
  transform: translateY(-2px);
}

.elune-btn-outline {
  background-color: rgba(141, 0, 255, 0.1);
  color: white;
  border: 1px solid rgba(141, 0, 255, 0.5);
  color: #fff !important;
  box-shadow: 0 2px 15px rgba(141, 0, 255, 0.2);
}

.elune-btn-outline:hover {
  background-color: rgba(141, 0, 255, 0.25);
  border-color: rgba(141, 0, 255, 0.8);
  box-shadow: 0 4px 25px rgba(141, 0, 255, 0.4);
  transform: translateY(-2px);
}

/* Robot animation - Voyager */
.elune-voyager-animation {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  animation: voyager-float 4s ease-in-out infinite;
}

.elune-voyager-icon {
  position: relative;
  z-index: 10;
  color: var(--purple);
  filter: drop-shadow(0 0 10px rgba(141, 0, 255, 0.6));
}

.elune-voyager-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 0, 255, 0.3), transparent 50%);
  filter: blur(40px);
  z-index: 0;
  animation: voyager-pulse 4s ease-in-out infinite;
}

/* Seções gerais - com namespace específico */
.elune-section {
  padding: 80px 0;
  position: relative;
  background: #ffffff;
  color: var(--text-dark);
}

.elune-section:nth-child(even):not(.elune-hero-section) {
  background: var(--gray-50);
}

/* Primeira seção após hero - transição suave */
.elune-unique-path {
  position: relative;
  padding-top: 120px;
  background: linear-gradient(to bottom, #000000 0%, #050010 15%, #0a0015 35%, #1a1a1a 55%, #ffffff 75%);
  color: var(--text-dark);
}

.elune-unique-path::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.02) 20%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.5) 80%, #ffffff 100%);
  pointer-events: none;
}

/* Container específico para conteúdo das seções */
.elune-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.elune-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.elune-section-content.elune-reverse {
  direction: rtl;
}

.elune-section-content.elune-reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .elune-section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .elune-section-content.elune-reverse {
    direction: ltr;
  }
}

.elune-centered-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Typography */
.elune-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
  line-height: 1.2;
}

.elune-section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.elune-section-subdescription {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

/* Features List */
.elune-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.elune-features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--gray-700);
}

.elune-check-icon {
  width: 20px;
  height: 20px;
  color: var(--purple);
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Image Placeholders */
.elune-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
}

.elune-image-placeholder svg {
  max-width: 100%;
  height: auto;
}

/* CTA Buttons */
.elune-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  background: var(--purple);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(141, 0, 255, 0.3);
}

.elune-cta-button:hover {
  background: #7800d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(141, 0, 255, 0.4);
}

.elune-cta-button svg {
  margin-right: 8px;
}

/* Badge */
.elune-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* Subject Grid */
.elune-subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.elune-subject-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.elune-subject-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(141, 0, 255, 0.15);
}

.elune-subject-icon {
  width: 48px;
  height: 48px;
  color: var(--purple);
  margin-bottom: 1rem;
}

.elune-subject-card span {
  font-weight: 500;
  color: var(--gray-700);
}

/* Stats Preview */
.elune-stats-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 2rem;
}

.elune-stat-card {
  text-align: center;
}

.elune-stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.elune-stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Language Cards */
.elune-language-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.elune-language-card {
  padding: 2.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.elune-language-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(141, 0, 255, 0.15);
}

.elune-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.elune-language-card h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.elune-language-card p {
  color: var(--gray-600);
}

/* Voyager Section */
.elune-voyager-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f0ff 100%);
  padding: 100px 0;
}

.elune-voyager-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--purple);
  color: white;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.elune-voyager-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.elune-voyager-feature {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.elune-voyager-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(141, 0, 255, 0.12);
}

.elune-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(141, 0, 255, 0.1), rgba(197, 4, 145, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.elune-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--purple);
}

.elune-voyager-feature h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.elune-voyager-feature p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Corporate Features */
.elune-corporate-features {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--gray-200);
}

.elune-corporate-title {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 2rem;
  text-align: center;
}

.elune-corporate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.elune-corporate-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, #ffffff, #fafafa);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.elune-corporate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--purple);
}

.elune-corporate-icon {
  width: 64px;
  height: 64px;
  background: var(--purple);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.elune-corporate-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.elune-corporate-card h4 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

/* Gamification Section */
.elune-gamification {
  background: var(--gray-50);
}

.elune-fragment-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: var(--gray-900);
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.elune-gamification-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.elune-game-feature {
  text-align: center;
}

.elune-game-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.elune-game-feature h4 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.elune-game-feature p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.elune-fragment-messages {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(141, 0, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--purple);
}

.elune-fragment-message {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.elune-fragment-message:last-child {
  margin-bottom: 0;
}

/* Main CTA Section */
.elune-main-cta {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  padding: 100px 0;
  text-align: center;
}

.elune-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.elune-cta-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

.elune-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.elune-cta-primary {
  background: white;
  color: var(--purple);
  font-weight: 600;
}

.elune-cta-primary:hover {
  background: var(--gray-100);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.elune-testimonials {
  padding: 100px 0;
}

.elune-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.elune-testimonial-card {
  padding: 2.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.elune-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.elune-stars {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.elune-testimonial-text {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.elune-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.elune-author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gray-300);
  border-radius: 50%;
}

.elune-author-name {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.elune-author-role {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Pricing Section */
.elune-pricing {
  background: var(--gray-50);
  padding: 100px 0;
}

.elune-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 3rem 0;
}

.elune-toggle-label {
  font-weight: 500;
  color: var(--gray-700);
}

.elune-toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.elune-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.elune-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-300);
  transition: .4s;
  border-radius: 30px;
}

.elune-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.elune-toggle-switch input:checked + .elune-toggle-slider {
  background-color: var(--purple);
}

.elune-toggle-switch input:checked + .elune-toggle-slider:before {
  transform: translateX(30px);
}

.elune-discount-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  background: #10b981;
  color: white;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.elune-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.elune-pricing-card {
  position: relative;
  padding: 3rem 2.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.elune-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.elune-pricing-card.elune-featured {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(141, 0, 255, 0.2);
  border: 2px solid var(--purple);
}

.elune-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--purple);
  color: white;
  border-radius: 20px;
}

.elune-plan-name {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.elune-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 2rem;
}

.elune-currency {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-right: 0.25rem;
}

.elune-amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--gray-900);
}

.elune-period {
  font-size: 1rem;
  color: var(--gray-600);
  margin-left: 0.5rem;
}

.elune-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.elune-plan-features li {
  padding: 0.75rem 0;
  color: var(--gray-700);
  position: relative;
  padding-left: 1.5rem;
}

.elune-plan-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: bold;
}

.elune-plan-button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--purple);
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  transition: all 0.3s ease;
}

.elune-plan-button:hover {
  background: var(--purple);
  color: white;
}

.elune-plan-button-primary {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

.elune-plan-button-primary:hover {
  background: #7800d9;
  border-color: #7800d9;
}

/* Custom Plan Section */
.elune-custom-plan {
  padding: 100px 0;
}

.elune-custom-plan-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .elune-custom-plan-content {
    grid-template-columns: 1fr;
  }
}

.elune-custom-subtitle {
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 1rem;
}

.elune-custom-image svg {
  width: 100%;
  height: auto;
}

/* Animations */
@keyframes voyager-float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes voyager-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Voyager animations - continuação */
.elune-voyager-radar-effect {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(141, 0, 255, 0.3);
  z-index: 0;
  animation: voyager-radar 4s linear infinite;
}

.elune-voyager-radar-effect::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  background: conic-gradient(rgba(141, 0, 255, 0.3) 0deg, transparent 60deg, transparent 360deg);
  border-radius: 50%;
  animation: voyager-radar-scan 4s linear infinite;
}

.elune-voyager-eye {
  stroke-width: 2;
  stroke-linecap: round;
  transform-origin: center;
  transition: transform 0.1s;
}

.elune-voyager-scanner {
  animation: voyager-scan 3s linear infinite;
}

.elune-voyager-star {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  filter: blur(0.5px);
  z-index: 1;
  animation: voyager-twinkle 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.elune-voyager-s1 {
  width: 3px;
  height: 3px;
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.elune-voyager-s2 {
  width: 2px;
  height: 2px;
  top: 30%;
  left: 20%;
  animation-delay: 1s;
}

.elune-voyager-s3 {
  width: 4px;
  height: 4px;
  bottom: 25%;
  left: 35%;
  animation-delay: 2s;
}

.elune-voyager-s4 {
  width: 2px;
  height: 2px;
  bottom: 35%;
  left: 25%;
  animation-delay: 3s;
}

.elune-voyager-label {
  position: absolute;
  bottom: -25px;
  font-size: 14px;
  color: var(--purple);
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.8;
  text-shadow: 0 0 10px rgba(141, 0, 255, 0.8);
}

.elune-voyager-particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.7;
  z-index: 1;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 0 15px rgba(141, 0, 255, 0.6);
}

.elune-voyager-p1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 05%;
  animation: voyager-orbit1 6s linear infinite;
}

.elune-voyager-p2 {
  width: 6px;
  height: 6px;
  top: 70%;
  left: 0%;
  animation: voyager-orbit2 8s linear infinite;
}

.elune-voyager-p3 {
  width: 10px;
  height: 10px;
  bottom: 10%;
  left: 40%;
  animation: voyager-orbit3 7s linear infinite;
}

@keyframes voyager-radar {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

@keyframes voyager-radar-scan {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes voyager-scan {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 30;
  }
}

@keyframes voyager-twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes voyager-orbit1 {
  0% {
    transform: rotate(0deg) translateX(45px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(45px) rotate(-360deg);
  }
}

@keyframes voyager-orbit2 {
  0% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  100% {
    transform: rotate(-360deg) translateX(50px) rotate(360deg);
  }
}

@keyframes voyager-orbit3 {
  0% {
    transform: rotate(0deg) translateX(40px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(40px) rotate(-360deg);
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .elune-section {
    padding: 60px 0;
  }
  
  .elune-section-title {
    font-size: 2rem;
  }
  
  .elune-stats-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .elune-gamification-features {
    grid-template-columns: 1fr;
  }
  
  .elune-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .elune-pricing-card.elune-featured {
    transform: scale(1);
  }
  
  .elune-voyager-animation {
    display: none !important;
  }
  
  .elune-voyager-icon,
  .elune-voyager-glow,
  .elune-voyager-radar-effect,
  .elune-voyager-eye,
  .elune-voyager-scanner,
  .elune-voyager-star,
  .elune-voyager-label,
  .elune-voyager-particle {
    display: none !important;
  }
}/* End custom CSS */