html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 90px;
}
/* Estilo institucional: sin bordes redondeados */
* {
  border-radius: 0 !important;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

.animate-scroll {
  animation: scroll 1.5s infinite;
}

.text-shadow-glow {
  text-shadow:
    0 0 20px rgba(228, 167, 58, 0.6),
    0 0 10px rgba(228, 167, 58, 0.4);
}
