/* =======================
   MENÚ PC ESTILO FINAL
======================= */
@media (min-width: 1280px) {
  .carousel-slide img {
      height: 85vh;          /* altura tipo banner */
  }

  /* Más ancho para mostrar 3 */
  .cafe-wrapper {
    max-width: 1100px;
  }

  /* Cada slide ocupa 1/3 */
    .cafe-slide {
      min-width: 31%;
      margin: 0 10px; /* separación entre productos */
      transition: transform 0.4s ease;
    }

    p {
      max-width: 1100px;
      text-align: justify;
    }

    #somos p {
      font-size: 30px;
    }

    #promociones {
      max-width: 1200px;
      margin: auto;
    }

    .promo-row {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      animation: fadeUp 0.8s ease;
    }

    /* Promoción izquierda */
    #promociones .promo-row:first-child {
      float: left;
    }

    /* Promoción derecha */
    #promociones .promo-row:last-child {
      float: right;
    }

    /* Limpiar floats */
    #promociones::after {
      content: "";
      display: block;
      clear: both;
    }

    .promo-row img {
      width: 100%;
      transition: transform 0.6s ease;
    }

    .promo-row:hover img {
      transform: scale(1.08);
    }

    .cocktel-ingredientes {
      bottom: 100px;
      font-size: 40px;
    }
}
