/* ========================================
   HERO TITLE - CLEAN & HARMONIOSO
   ======================================== */

.hero-title {
  color: white;
  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fade-in-up 1s ease-out;
}

/* Highlight vermelho sutil */
.hero-title .highlight {
  color: rgb(255, 255, 255);
  font-weight: 800;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Animação de entrada suave */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
