 /* boton de whatsapp flotante */
 .whatsapp-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;               /* Usamos flexbox */
  justify-content: center;     /* Centrado horizontal */
  align-items: center;         /* Centrado vertical */
  font-size: 22px;             /* Tamaño del ícono */
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 100;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
}

/* fin de boton de whastapp */

 .zoom-img {
  transition: transform 0.1s ease; 
}

.zoom-img:hover {
  transform: scale(1.1);
}
  .grid-licores {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .item-licor {
    text-align: center;
    border-radius: 12px;
    padding: 15px;
    
  }

  .item-licor img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .item-licor h3 {
    margin: 10px 0;
    font-size: 0.9rem;
    
  }

   

  .item-licor p {
    
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: brown;
  }

  .item-licor a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c0392b;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }

  .item-licor a:hover {
    background-color: #e65a5a;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .grid-licores {
      grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columnas */
    }
  }

  @media (max-width: 600px) {
    .grid-licores {
      grid-template-columns: 1fr; /* Móvil: 1 columna */
    }
  }