* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #0a0f1c 0%, #1a2332 100%);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-text {
  color: #00ff88;
}

.logo-icon {
  color: #00ff88;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #8892b0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: #00ff88;
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #0066ff;
  color: white;
}

.btn-primary:hover {
  background: #0052cc;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-blue);
}

.btn-secondary {
  background: #1a2332;
  color: #00ff88;
  border: 1px solid #00ff88;
}

.btn-secondary:hover {
  background: #00ff88;
  color: #1a2332;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.main {
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.badge:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.highlight {
  color: #00ff88;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #8892b0;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-vip {
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-vip:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(107, 70, 193, 0.4);
}

.btn-results {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid #00ff88;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-results:hover {
  background: #00ff88;
  color: #1a2332;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.profit-card {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 12px;
  padding: 1.5rem;
  display: inline-block;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.profit-card:hover {
  background: rgba(0, 255, 136, 0.15);
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-glow);
  border-color: #00cc6a;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.roi-badge {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: bold;
  color: #00ff88;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.roi-badge:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.signals-card {
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.signals-card:hover {
  background: rgba(26, 35, 50, 0.95);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.signals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.signals-title {
  font-size: 0.9rem;
  font-weight: bold;
  color: #8892b0;
}

.time {
  font-size: 0.9rem;
  color: #00ff88;
}

.match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.match::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.match:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  border-left: 3px solid #00ff88;
}

.match:hover::before {
  transform: scaleX(1);
}

.teams {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.bet-info {
  font-size: 0.8rem;
  color: #8892b0;
}

.status {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.live-status:hover {
  background: #0052cc;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.pending-status:hover {
  background: #cc7700;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 149, 0, 0.5);
}

.stats-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  background: rgba(26, 35, 50, 0.95);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-lg);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover .stat-value {
  color: #00cc6a;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: #8892b0;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 0.25rem;
}

.stat-change {
  font-size: 0.8rem;
  color: #00ff88;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 8px;
  font-weight: bold;
  color: #00ff88;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.live-indicator:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.accuracy-badge {
  background: #00ff88;
  color: #1a2332;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.accuracy-badge:hover {
  background: #00cc6a;
  transform: scale(1.05) rotate(2deg);
  box-shadow: var(--shadow-glow);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.2);
}

.scroll-indicator:hover .chevron-down {
  color: #00ff88;
  animation: bounce 1s infinite;
}

.chevron-down {
  font-size: 2rem;
  color: #8892b0;
}

/* Adicionando variáveis CSS para animações mais profissionais */
:root {
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
  --shadow-glow-blue: 0 0 20px rgba(0, 102, 255, 0.3);
}

/* Adicionando animações de entrada mais suaves */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Adicionando estilos para a seção Como Funciona */
.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0a0f1c 100%);
  position: relative;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
}

/* Seção de Benefícios */
.benefits-section {
  margin-bottom: 6rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.benefit-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.benefit-card:hover {
  background: rgba(26, 35, 50, 0.9);
  border-color: rgba(0, 255, 136, 0.4);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 1rem;
  transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-title {
  color: #00cc6a;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.benefit-description {
  color: #8892b0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Seção CTA */
.cta-section {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #0066ff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-description {
  color: #8892b0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.btn-cta {
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(107, 70, 193, 0.4);
}

.check-icon {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Seção Metodologia */
.methodology-section {
  text-align: center;
}

.methodology-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.methodology-badge:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.chart-icon {
  font-size: 1.2rem;
}

.methodology-title {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
}

.methodology-description {
  color: #8892b0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de Processo */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.process-card:hover {
  background: rgba(26, 35, 50, 0.9);
  border-color: rgba(0, 255, 136, 0.4);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #1a2332;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.process-card:hover .process-number {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.process-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.process-card:hover .process-icon {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.process-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 1rem;
  transition: all var(--transition-normal);
}

.process-card:hover .process-title {
  color: #00cc6a;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.process-description {
  color: #8892b0;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Adicionando estilos para a seção de Estatísticas */
/* Seção de Estatísticas */
.statistics {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0f1c 0%, #1a2332 50%, #0f1419 100%);
  position: relative;
}

.statistics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
}

.statistics-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.statistics-badge:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.stats-icon {
  font-size: 1.2rem;
}

.statistics .container {
  display: block;
  text-align: center;
}

.statistics-title {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
}

.statistics-description {
  color: #8892b0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid principal de estatísticas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card-main {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.stat-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.stat-card-main:hover {
  background: rgba(26, 35, 50, 0.9);
  border-color: rgba(0, 255, 136, 0.4);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.stat-card-main:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: all var(--transition-normal);
}

.stat-card-main:hover .stat-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 0.5rem;
  transition: all var(--transition-normal);
}

.stat-card-main:hover .stat-number {
  color: #00cc6a;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
  transform: scale(1.1);
}

.stat-label {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-sublabel {
  font-size: 0.85rem;
  color: #8892b0;
  line-height: 1.4;
}

/* Seção de Performance */
.performance-section {
  margin-bottom: 4rem;
}

.performance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.performance-card,
.distribution-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.performance-card::before,
.distribution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.performance-card:hover,
.distribution-card:hover {
  background: rgba(26, 35, 50, 0.95);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.performance-card:hover::before,
.distribution-card:hover::before {
  transform: scaleX(1);
}

.performance-header,
.distribution-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-header h3,
.distribution-header h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
}

.performance-icon,
.distribution-icon {
  font-size: 1.2rem;
  color: #00ff88;
}

.performance-list,
.distribution-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.performance-item,
.distribution-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.performance-item:hover,
.distribution-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  border-left: 3px solid #00ff88;
}

.month,
.market {
  font-size: 0.9rem;
  color: #8892b0;
  font-weight: 500;
}

.percentage {
  font-weight: bold;
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  transition: all var(--transition-normal);
}

.percentage.green {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.percentage.blue {
  color: #0066ff;
  background: rgba(0, 102, 255, 0.1);
}

.performance-item:hover .percentage.green {
  background: rgba(0, 255, 136, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.distribution-item:hover .percentage.blue {
  background: rgba(0, 102, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

/* Seção CTA das Estatísticas */
.stats-cta-section {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.stats-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
  animation: rotate 25s linear infinite;
}

.stats-cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.stats-cta-description {
  color: #8892b0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.btn-stats-cta {
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.btn-stats-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(107, 70, 193, 0.4);
}

.users-icon {
  font-size: 1.2rem;
}

/* Responsividade para a seção Como Funciona */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .methodology-title {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .performance-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .statistics-title {
    font-size: 2.5rem;
  }

  .stats-cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 4rem 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .methodology-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-section {
    padding: 2rem 1rem;
  }

  .benefit-card,
  .process-card {
    padding: 1.5rem;
  }

  .statistics {
    padding: 4rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .performance-grid {
    grid-template-columns: 1fr;
  }

  .statistics-title {
    font-size: 2rem;
  }

  .stats-cta-title {
    font-size: 1.5rem;
  }

  .stats-cta-section {
    padding: 2rem 1rem;
  }

  .stat-card-main,
  .performance-card,
  .distribution-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .performance-item,
  .distribution-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .percentage {
    align-self: stretch;
    text-align: center;
  }
}

/* Adicionando estilos para a seção de Planos */
/* Seção de Planos */
.plans {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0f1c 0%, #1a2332 50%, #0a0f1c 100%);
  position: relative;
  overflow: hidden;
}

.plans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.plans .container {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.plans-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #ffd700;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out;
}

.plans-badge:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.plans-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.plans-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #8892b0;
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.plans-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.tab-btn {
  padding: 1rem 2rem;
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #8892b0;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left var(--transition-slow);
}

.tab-btn:hover::before {
  left: 100%;
}

.tab-btn.active,
.tab-btn:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: #00ff88;
  color: #00ff88;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.billing-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.billing-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #8892b0;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.billing-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
  transition: left var(--transition-slow);
}

.billing-btn:hover::before {
  left: 100%;
}

.billing-btn.active,
.billing-btn:hover {
  background: rgba(0, 102, 255, 0.1);
  border-color: #0066ff;
  color: #0066ff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

.discount {
  background: #00ff88;
  color: #1a2332;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.plan-card {
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #00ff88);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.plan-card:hover {
  background: rgba(26, 35, 50, 0.95);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.plan-card:hover::before {
  transform: scaleX(1);
}

.plan-card.popular {
  border-color: #ff6b35;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.plan-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  transition: all var(--transition-normal);
}

.plan-card:hover .plan-icon {
  transform: scale(1.2) rotate(10deg);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 1rem;
}

.plan-description {
  color: #8892b0;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.plan-pricing {
  margin-bottom: 2rem;
}

.old-price {
  color: #8892b0;
  text-decoration: line-through;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.current-price {
  color: #00ff88;
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.savings {
  color: #ff6b35;
  font-size: 0.9rem;
  font-weight: bold;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  padding: 0.5rem 0;
  color: #8892b0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.plan-features li:hover {
  color: #00ff88;
  padding-left: 10px;
}

.btn-plan {
  width: 100%;
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-plan:hover::before {
  left: 100%;
}

.btn-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(107, 70, 193, 0.4);
}

.specialized-plans {
  margin-bottom: 4rem;
}

.specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.specialized-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.specialized-card:hover {
  background: rgba(26, 35, 50, 0.8);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.specialized-features {
  margin-bottom: 1.5rem;
}

.feature {
  color: #8892b0;
  margin-bottom: 0.5rem;
  transition: all var(--transition-normal);
}

.specialized-card:hover .feature {
  color: #00ff88;
}

.btn-specialized {
  width: 100%;
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid #00ff88;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-specialized:hover {
  background: #00ff88;
  color: #1a2332;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.vip-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.vip-plan-card {
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.vip-plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.vip-plan-card:hover {
  background: rgba(26, 35, 50, 0.95);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.vip-plan-card:hover::before {
  transform: scaleX(1);
}

.vip-plan-card.high-risk {
  border-color: #ff6b35;
}

.vip-plan-card.high-risk::before {
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.risk-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.vip-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  transition: all var(--transition-normal);
}

.vip-plan-card:hover .vip-icon {
  transform: scale(1.2) rotate(10deg);
}

.vip-plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0066ff;
  margin-bottom: 1rem;
}

.vip-plan-description {
  color: #8892b0;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.vip-pricing {
  margin-bottom: 2rem;
}

.vip-old-price {
  color: #8892b0;
  text-decoration: line-through;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.vip-current-price {
  color: #00ff88;
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.vip-savings {
  color: #ff6b35;
  font-size: 0.9rem;
  font-weight: bold;
}

.vip-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.vip-features li {
  padding: 0.5rem 0;
  color: #8892b0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.vip-features li:hover {
  color: #00ff88;
  padding-left: 10px;
}

.btn-vip-plan {
  width: 100%;
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-vip-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-vip-plan:hover::before {
  left: 100%;
}

.btn-vip-plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-blue);
}

.guarantees {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.guarantee-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.guarantee-item:hover {
  background: rgba(26, 35, 50, 0.8);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  transition: all var(--transition-normal);
}

.guarantee-item:hover .guarantee-icon {
  transform: scale(1.2);
}

.guarantee-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 0.5rem;
}

.guarantee-description {
  color: #8892b0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.plans-cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.plans-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.plans-cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.plans-cta-description {
  color: #8892b0;
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.btn-plans-cta {
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-plans-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-plans-cta:hover::before {
  left: 100%;
}

.btn-plans-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(107, 70, 193, 0.4);
}

/* Adicionando estilos para a seção de Resultados */
/* Seção de Resultados */
.results {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0a0f1c 100%);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
}

.results .container {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.results-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out;
}

.results-badge:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.trophy-icon {
  font-size: 1.2rem;
}

.results-title {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.results-description {
  color: #8892b0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Grid de estatísticas de resultados */
.results-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.result-stat-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.result-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.result-stat-card:hover {
  background: rgba(26, 35, 50, 0.9);
  border-color: rgba(0, 255, 136, 0.4);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.result-stat-card:hover::before {
  transform: scaleX(1);
}

.result-stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: all var(--transition-normal);
}

.result-stat-card:hover .result-stat-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.result-stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 0.5rem;
  transition: all var(--transition-normal);
}

.result-stat-card:hover .result-stat-number {
  color: #00cc6a;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
  transform: scale(1.1);
}

.result-stat-label {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.result-stat-sublabel {
  font-size: 0.85rem;
  color: #8892b0;
  line-height: 1.4;
}

/* Card de exemplo de aposta */
.bet-example {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.bet-card {
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.bet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.bet-card:hover {
  background: rgba(26, 35, 50, 0.95);
  border-color: rgba(0, 255, 136, 0.4);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.bet-card:hover::before {
  transform: scaleX(1);
}

.bet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bet-sport {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sport-tag {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  border: 1px solid #00ff88;
}

.bet-status {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.bet-status.green {
  background: #00ff88;
  color: #1a2332;
}

.bet-card:hover .bet-status.green {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.bet-match {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0066ff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.bet-market {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.bet-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bet-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.detail-label {
  font-size: 0.8rem;
  color: #8892b0;
  font-weight: bold;
  text-transform: uppercase;
}

.detail-value {
  font-size: 1rem;
  font-weight: bold;
  transition: all var(--transition-normal);
}

.detail-value.blue {
  color: #0066ff;
}

.detail-value.green {
  color: #00ff88;
}

.bet-card:hover .detail-value.blue {
  color: #4d94ff;
  text-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.bet-card:hover .detail-value.green {
  color: #00cc6a;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Seção CTA dos Resultados */
.results-cta-section {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.results-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
  animation: rotate 25s linear infinite;
}

.results-cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0066ff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.results-cta-description {
  color: #8892b0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.results-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-results-vip {
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-results-vip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-results-vip:hover::before {
  left: 100%;
}

.btn-results-vip:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(107, 70, 193, 0.4);
}

.btn-more-results {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid #00ff88;
  padding: 1rem 2rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-more-results::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left var(--transition-slow);
}

.btn-more-results:hover::before {
  left: 100%;
}

.btn-more-results:hover {
  background: #00ff88;
  color: #1a2332;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.crown-icon,
.chart-icon {
  font-size: 1.2rem;
}

/* Responsividade para a seção de resultados */
@media (max-width: 768px) {
  .results {
    padding: 4rem 0;
  }

  .results-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .results-title {
    font-size: 2rem;
  }

  .results-description {
    font-size: 1rem;
  }

  .results-cta-title {
    font-size: 1.5rem;
  }

  .results-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-results-vip,
  .btn-more-results {
    width: 100%;
    max-width: 300px;
  }

  .bet-card {
    padding: 1.5rem;
  }

  .bet-details {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .result-stat-number {
    font-size: 2rem;
  }

  .result-stat-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .results-stats-grid {
    grid-template-columns: 1fr;
  }

  .results-cta-section {
    padding: 2rem 1rem;
  }

  .bet-example {
    padding: 0 1rem;
  }
}

/* Responsividade para a seção de planos */
@media (max-width: 768px) {
  .plans-grid,
  .vip-plans-grid {
    grid-template-columns: 1fr;
  }

  .plans-tabs,
  .billing-options {
    flex-direction: column;
    align-items: center;
  }

  .guarantees-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .plans-title {
    font-size: 2rem;
  }

  .plans-description {
    font-size: 1rem;
  }
}
