/* SECCIÓN */
.banner {
  background: linear-gradient(135deg, #01276a, #0c2138);
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* EFECTO LUZ */
.banner::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  top: -50%;
  left: -50%;
  animation: rotateLight 12s linear infinite;
}

/* CONTENIDO */
.banner-content {
  position: relative;
  z-index: 2;
}

/* TITULO */
.banner h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  animation: fadeUp 0.8s ease forwards;
}

/* TEXTO */
.banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeUp 1s ease forwards;
}

/* BOTÓN */
.banner button {
  background: white;
  color: #0a1f44;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeUp 1.2s ease forwards;
}

/* HOVER BOTÓN */
.banner button:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: #f1f5ff;
}

/* ANIMACIONES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateLight {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.banner button {
  background: white;
  color: #01276a;
  border: none;
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.banner button:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}