.nav-link {
    @apply relative text-gray-700 font-medium transition duration-300 ease-in-out;
  }
  .nav-link::after {
    content: "";
    @apply absolute left-0 bottom-0 w-0 h-0.5 bg-pink-500 transition-all duration-300;
  }
  .nav-link:hover {
    @apply text-pink-600 scale-105;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link-mobile {
    @apply text-gray-700 font-medium transition duration-300 hover:text-pink-600;
  }

  
  /* seccion del hero */

  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fade-up {
    animation: fadeUp 1.2s ease-out both;
  }

  /* seccion del carrusel */

  .hide-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* burbuja flotante */

  .burbuja-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
  }@keyframes slide-in-right {
    0% {
      opacity: 0;
      transform: translateX(50px) translateY(-50%);
    }
    100% {
      opacity: 1;
      transform: translateX(0) translateY(-50%);
    }
  }
  .animate-slide-in-right {
    animation: slide-in-right 0.8s ease-out forwards;
  }
  

