.admisión-bg {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/admision.jpg') center center / cover no-repeat;
      color: white;
      padding: 80px 0;
    }
    .form-section {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    .info-box {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 10px;
      height: 100%;
    }
    .procedimientos {
      background: #f0f8ff;
      padding: 50px 0;
    }

    .titulo-efecto {
  animation: pulseTitulo 3s infinite;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.subtitulo-efecto {
  animation: slideInSubtitulo 3s ease-in-out;
  text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.3);
}

/* Animaciones personalizadas */
@keyframes pulseTitulo {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes slideInSubtitulo {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.titulo-efecto {
  animation: pulseTitulo 3s infinite;
}

.subtitulo-efecto {
  animation: slideInSubtitulo 2s ease-in-out;
}

.text-shadow {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Animaciones personalizadas */
@keyframes pulseTitulo {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes slideInSubtitulo {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}


  .form-section {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e3e3e3;
  }

  .form-section:hover {
    transform: scale(1.01);
  }

  .form-label {
    font-weight: 600;
    color: #343a40;
  }

  .form-control, .form-select, textarea {
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: none;
  }

  .form-control:focus, .form-select:focus, textarea:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
  }

  .btn-success {
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
  }

  .btn-success:hover {
    background-color: #157347;
  }

  .mb-3 input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 8px;
  }

  /* Responsive - opcional */
  @media (max-width: 768px) {
    .form-section {
      padding: 30px 20px;
    }
  }


  .info-box {
    border-left: 5px solid #198754;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .info-box h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .info-box h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
  }

  .info-box p {
    color: #555;
    text-align: justify;
    line-height: 1.6;
  }

  .info-box hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #198754, transparent);
    margin: 20px 0;
  }

  .info-box img {
    border-radius: 12px;
    transition: transform 0.3s ease;
  }

  .info-box img:hover {
    transform: scale(1.03);
  }