/* ============================================
   APEXPY - EXCLUSIVE FEES SECTION - DARK THEME
   ============================================ */

.exclusive-fees-section {
  padding: 100px 0;
  background: var(--apexpy-green);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.exclusive-fees-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.exclusive-fees-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.exclusive-fees-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.exclusive-fees-title .highlight-dark {
  color: #000000;
  font-weight: var(--font-weight-bold);
}

.exclusive-fees-description {
  font-size: var(--font-size-lg);
  color: #000000;
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

/* Botão Secundário - Padrão Visual */
.btn-exclusive-fees {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-2xl);
  background: transparent;
  color: #000000;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid #000000;
  transition: all var(--transition-base);
  margin-top: var(--spacing-md);
}

.btn-exclusive-fees:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: #000000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-exclusive-fees:active {
  transform: translateY(0);
}

.btn-exclusive-fees i {
  font-size: 1rem;
  transition: transform var(--transition-base);
}

.btn-exclusive-fees:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .exclusive-fees-title {
    font-size: var(--font-size-3xl);
  }
  
  .exclusive-fees-description {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 768px) {
  .exclusive-fees-section {
    padding: var(--spacing-3xl) 0;
  }
  
  .exclusive-fees-title {
    font-size: var(--font-size-2xl);
  }
  
  .exclusive-fees-description {
    font-size: var(--font-size-sm);
  }
  
  .btn-exclusive-fees {
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: var(--font-size-sm);
  }
  
  .exclusive-fees-content {
    padding: 0 var(--spacing-lg);
  }
}

