/* Contenedor de esa sección específica */
section:nth-of-type(2) a {
  display: inline-block;
  padding: 16px 38px;
  margin: 10px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 50px;
  letter-spacing: 0.4px;
  color: #ffffff !important;
  background: #2E86FF;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}

/* Hover */
section:nth-of-type(2) a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(46,134,255,0.6),
              0 12px 28px rgba(0,0,0,0.25);
}

/* Tercer botón más destacado */
section:nth-of-type(2) a:nth-child(3) {
  background: #0F4FD8;
  font-weight: 600;
  animation: pulse 2.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 rgba(15,79,216,0.4); }
  50% { box-shadow: 0 0 18px rgba(15,79,216,0.6); }
  100% { box-shadow: 0 0 0 rgba(15,79,216,0.4); }
}

/* Centrado automático */
section:nth-of-type(2) {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  section:nth-of-type(2) a {
    display: block;
    width: 85%;
    margin: 12px auto;
  }
}