/* Estilos Padronizados para Botões - Profissão Inteligente */

/* Botão CTA Principal - Este é o modelo a ser seguido para todos os botões */
.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 242, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 242, 0.5);
}

.cta-button.large {
  font-size: 1.3rem;
  padding: 18px 36px;
}

.cta-button-container {
  text-align: center;
  margin: 40px 0;
}

/* ===== UNIVERSAL BUTTON FINAL CONFIG ===== */
.universal-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 242, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    position: relative;
    overflow: visible;
    z-index: 30;
}

.universal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 242, 0.5);
}


.button-wrapper {
  position: relative;
  overflow: visible;
  text-align: center;
  margin-top: 20px;
}

.cta-section,
.button-wrapper,
.for-who-section .cta-section {
    position: relative;
    overflow: visible;
    z-index: 10;
}


/* Padronizando os outros botões para seguir o mesmo estilo */
.module-button, 
.bonus-button, 
.form-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 242, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.module-button:hover, 
.bonus-button:hover, 
.form-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 242, 0.5);
}

/* Ajustes específicos para o botão de bônus */
.bonus-button {
  width: auto;
  padding: 12px 25px;
  font-size: 1rem;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .cta-button,
  .module-button,
  .bonus-button,
  .form-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .cta-button.large {
    font-size: 1.1rem;
    padding: 15px 25px;
  }
}
