  .whatsapp-container {
    position: fixed;
    bottom: 20px; /* distancia desde abajo */
    right: 20px;  /* distancia desde la derecha */
    z-index: 1000;
    text-align: center;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  .whatsapp-icon {
    width: 60px;
    height: 60px;
  }

.video-container {
  width: 100%;
  max-width: 140px; /* Ajusta el tamaño máximo como desees */
  margin: 0 auto;
}

.video-fluid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsivo en pantallas pequeñas */
@media (max-width: 576px) {
  .video-container {
    max-width: 80px;
  }

  .whatsapp-container{
    bottom: 10px; /* distancia desde abajo */
    right: 10px;  /* distancia desde la derecha */
  }
}


  @media (max-width: 768px) {
    .whatsapp-text {
      font-size: 12px;
      padding: 4px 10px;
    }

    .whatsapp-icon {
      width: 50px;
      height: 50px;
    }
  }
  
    

/* HOVER DE NUESTRO MENU LOS CARDS */
.transition-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover,
.transition-hover.active {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hover-shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-shadow:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
