/* Seção Como Funciona */
.how-it-works-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(45, 45, 68, 0.9));
    position: relative;
    overflow: hidden;
  }
  
  .how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
  }
  
  .how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: #00FF7F;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
    position: relative;
    display: inline-block;
  }
  
  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00FF7F, transparent);
  }
  
  .section-header p {
    font-size: 1.4rem;
    color: #FFFFFF;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .step-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF00FF, #00BFFF);
  }
  
  .step-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D2D44, #1A1A2E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
      0 10px 20px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid;
    transition: all 0.3s ease;
  }
  
  .step-card:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 
      0 15px 25px rgba(0, 0, 0, 0.4),
      0 0 20px rgba(255, 255, 255, 0.1);
  }
  
  .step-card:nth-child(1) .step-circle {
    border-color: #FFFF00;
  }
  
  .step-card:nth-child(2) .step-circle {
    border-color: #00BFFF;
  }
  
  .step-card:nth-child(3) .step-circle {
    border-color: #FF00FF;
  }
  
  .step-card:nth-child(4) .step-circle {
    border-color: #00FF7F;
  }
  
  .step-icon {
    font-size: 3rem;
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .step-card:nth-child(1) .step-icon {
    color: #FFFF00;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.7);
  }
  
  .step-card:nth-child(2) .step-icon {
    color: #00BFFF;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
  }
  
  .step-card:nth-child(3) .step-icon {
    color: #FF00FF;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
  }
  
  .step-card:nth-child(4) .step-icon {
    color: #00FF7F;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.7);
  }
  
  .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF00FF, #00BFFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .step-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
  }

  .step-card a{
    text-decoration: none;
  }

  .create-team-btn {
    background: linear-gradient(135deg, #00ff7f, #00bfff);
    border: none;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    padding: 15px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(0, 255, 127, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1rem;
  }

  .create-team-btn:hover {
      transform: translateY(-3px);
      box-shadow: 
      0 8px 20px rgba(0, 255, 127, 0.6),
      0 0 20px rgba(0, 191, 255, 0.4);
  }   
  
  .warning-box {
    display: flex;
    align-items: center;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
  }
  
  .warning-icon {
    font-size: 2.5rem;
    color: #FF4500;
    margin-right: 20px;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
  }
  
  .warning-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #FF4500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .warning-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .steps-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .section-header h2 {
      font-size: 2.2rem;
    }
    
    .section-header p {
      font-size: 1.2rem;
    }
    
    .warning-box {
      flex-direction: column;
      text-align: center;
    }
    
    .warning-icon {
      margin-right: 0;
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .how-it-works-section {
      padding: 60px 15px;
    }
    
    .step-circle {
      width: 100px;
      height: 100px;
    }
    
    .step-icon {
      font-size: 2.5rem;
    }
    
    .step-title {
      font-size: 1.3rem;
    }
  }