
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}


/* Contenedor del video */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

/* Video de fondo */
.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Capa de oscurecimiento */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad según necesites */
}

/* Sección principal */
.video-background {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

/* Contenido sobre el video */
.contentB {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: white;
}

/* Tarjetas responsivas */
.card {
  width: 100%;
  max-width: 500px;
  margin-bottom: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Media Queries */
@media (max-width: 768px) {
  .contentB h1 {
    font-size: 24px;
  }
  .contentB p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contentB {
    max-width: 90%;
  }
  .contentB h1 {
    font-size: 20px;
  }
  .contentB p {
    font-size: 14px;
  }
}

.card-title {
  color: rgb(255, 255, 255);
}
  
.card-text{
  color: rgb(255, 255, 255);
  text-align: left;
}
  
.card {
  background: rgba(34, 40, 49, 1); /* Fondo blanco con 80% de opacidad */
  backdrop-filter: blur(5px); /* Difuminar el fondo detrás */
  border-radius: 10px; /* Bordes redondeados para mejor estética */
  padding: 0px; /* Espaciado interno */
}

.card .card-body{
  background-color: #222831;
}

.card-titleProductos{
  color: black;
  background: rgba(231, 24, 24, 0.9);
  backdrop-filter: blur(5px); /* Difuminar el fondo detrás */
  border-radius: 10px; /* Bordes redondeados para mejor estética */
  padding: 15px; /* Espaciado interno */
}

.rotate-icon {
  transition: transform 0.3s ease;
}
.rotated {
  transform: rotate(180deg);
}


.titulo-sombra {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
 background-color: rgba(0, 0, 0, 0.4);
 padding: 0.5rem 1rem;
 border-radius: 10px;
 display: inline-block;
 font-weight: bold;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0; /* Oculto antes de animar */
}


/*Para Menu comida*/
.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start; /* PEGA los ítems a la izquierda */
  align-items: flex-start;      /* alinea verticalmente si son de alturas distintas */
}

.menu-item {
  background: #eee;
  padding: 1rem;
  border-radius: 10px;
  width: 200px;
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block; /* Asegúrate de esto por defecto */
}


/* Bebidas*/
.bebida-logo {
  height: 50px;
  margin: 0 5px;
}
.precio {
  background-color: #b71c1c;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: bold;
}

.custom-img {
  width: 150px; /* o el tamaño que desees */
  height: 150px;
  object-fit: cover;
  border: 4px solid yellow;
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.precioMenu {
  background-color: #b71c1c;
  color: white;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
}