/* =======================================================
   Estilos para la Sección "Próximamente"
======================================================= */

.proximamente-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 30px;
  }
  
  .proximamente-content {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary);
    animation: fadeInUp 0.8s ease-out forwards;
  }
  
  .proximamente-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    z-index: 1;
  }
  
  .proximamente-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    color: white;
    font-size: 40px;
    box-shadow: 0 8px 20px rgba(20, 10, 154, 0.3);
    animation: pulse 2s infinite;
  }
  
  .proximamente-content h2 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .proximamente-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .proximamente-progress {
    margin: 30px 0;
  }
  
  .progress-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  
  .progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 5px;
    animation: progressAnimation 2s ease-out forwards;
  }
  
  .progress-text {
    display: block;
    text-align: right;
    color: #666;
    font-size: 14px;
  }
  
  .release-date {
    margin: 20px 0;
    font-size: 18px;
    color: #333;
  }
  
  .release-date strong {
    color: var(--primary);
  }
  
  .notify-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(20, 10, 154, 0.2);
  }
  
  .notify-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20, 10, 154, 0.3);
  }
  
  .notify-button i {
    margin-right: 8px;
  }
  
  /* Keyframes para animaciones */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 8px 20px rgba(20, 10, 154, 0.3);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 12px 25px rgba(20, 10, 154, 0.4);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 8px 20px rgba(20, 10, 154, 0.3);
    }
  }
  
  @keyframes progressAnimation {
    from {
      width: 0;
    }
    to {
      width: 75%;
    }
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .proximamente-content {
      padding: 30px 20px;
    }
    
    .proximamente-icon {
      width: 80px;
      height: 80px;
      font-size: 32px;
    }
    
    .proximamente-content h2 {
      font-size: 26px;
    }
  }