.brand-logo img {
  transition: all 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.prose h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.prose p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #475569;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #475569;
}

.prose li {
  margin-bottom: 0.5rem;
}

/* Animaciones */
@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fade {
  animation: fade-in 0.5s ease-out forwards;
}