 /* Contenedor general */
  .custom-animated-section {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* Título */
  .custom-animated-title {
    font-size: clamp(1.5rem, 6vw, 2.8rem);
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
  }

  .custom-animated-title span {
    display: inline-block;
    animation: custom-fadeSlide 3.5s ease-in-out infinite alternate;
  }

  /* Animación suave */
  @keyframes custom-fadeSlide {
    0% {
      opacity: 0.1;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }