  .hero {
      position: relative;
      width: 100%;
      height: 50vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
  }

  .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      /* Ajusta la opacidad si necesitas más o menos oscuridad */
  }

  .hero-content {
      position: relative;
      z-index: 10;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  .hero-logo {
      width: 250px;
      margin-bottom: 20px;
      /*filter: drop-shadow(1px 1px 1px rgba(247, 247, 247, 0.9));*/
      opacity: 0;
      transform: scale(0.8);
      animation: fadeZoomIn 1.5s ease-out forwards;
      animation-delay: .6s;
      /* El logo aparece después de 1 segundo */
  }

  .hero-title {
      font-size: 2.5rem;
      font-weight: bold;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
      color: white;
      padding: 10px 50px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1.5s ease-out forwards;
      animation-delay: 3.5s;
      /* La frase entra 1 segundo después del logo */
  }

  /* Animaciones */
  @keyframes fadeZoomIn {
      0% {
          opacity: 0;
          transform: scale(0.8);
      }

      100% {
          opacity: 1;
          transform: scale(1);
      }
  }

  @keyframes fadeUp {
      0% {
          opacity: 0;
          transform: translateY(30px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @media (max-width: 768px) {
      .hero-title {
          font-size: 1.8rem;
      }

      .hero-logo {
          width: 180px;
      }
  }
