.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Icono circular */
.btn-outline .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e5eff; /* azul del icono */
  color: #fff;
  transition: all 0.3s ease;
}

/* Hover */
.btn-outline:hover {
  background-color: #ffffff;
  color: #0b1a33; /* azul oscuro del fondo */
}

/* Cambiar icono en hover */
.btn-outline:hover .icon {
  background: #0b1a33;
  color: #ffffff;
}