html {
    scroll-behavior: smooth;
  }
  @keyframes bounce-slow {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .animate-bounce-slow {
    animation: bounce-slow 2s infinite;
  }

  body, html {
    overflow-x: hidden;
  }

  
  @keyframes lift-off {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px) scale(1.02);
    }
  }
  
  .animate-lift-off {
    animation: lift-off 2.5s ease-in-out infinite;
  }

  .whatsapp-bubble {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    background-color: #1f3c3d; /* Borde oscuro personalizado */
    padding: 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 50;
    transition: transform 0.3s ease, box-shadow 0.3s;
  }
  .whatsapp-bubble:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
  }
  


  /* Barra de menú */

  .menu-link {
    position: relative;
    color: #FF9800;
    transition: color 0.6s ease;
  }
  
  .menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00C3FF, #F4B400, #BC4ED8, #00FFC6);
    background-size: 200% 200%;
    transition: width 0.6s ease;
  }
  
  .menu-link:hover {
    background: linear-gradient(90deg, #00C3FF, #F4B400, #BC4ED8, #00FFC6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .menu-link:hover::after {
    width: 100%;
    animation: gradientShift 3s linear infinite;
  }
  
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  

  
  /* seccion del hero */




  @keyframes text-shimmer {
    0% {
      background-position: -500% center;
    }
    100% {
      background-position: 500% center;
    }
  }
  .animate-text-shimmer {
    background-size: 200% auto;
    animation: text-shimmer 5s linear infinite;
  }


  /* nosotros */

  .nosotros-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }@keyframes textShimmer {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .animate-text-shimmer {
    background-size: 200% 200%;
    animation: textShimmer 10s ease-in-out infinite;
  }

  

  /* mision vision */
  .glow-img-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    padding: 4px;
    background: linear-gradient(130deg, #9333ea, #f59e0b, #06b6d4);
    background-size: 200% 200%;
    animation: borderGlow 4s linear infinite;
  }

  .glow-img-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    background-color: white;
  }

  @keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* reseñas */

  .review-card-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .review-card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .review-avatar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 9999px;
    padding: 3px;
    background: linear-gradient(130deg, #9333ea, #f59e0b, #06b6d4);
    background-size: 200% 200%;
    animation: glowing-ring 5s linear infinite;
  }

  @keyframes glowing-ring {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .review-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9999px;
    display: block;
    background-color: white;
  }

  .review-name {
    font-weight: 600;
    color: #1f2937;
  }

  .review-role {
    font-size: 0.875rem;
    color: #6b7280;
  }

  .review-text {
    color: #374151;
    text-align: justify;
    line-height: 1.625;
  }

  .review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
  }