The menu section of Sentidos Café lives inside theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Jimmy13anhelo/paginaweb2.github.io/llms.txt
Use this file to discover all available pages before exploring further.
.seccion-experiencia-completa container and presents four group combos as an interactive accordion gallery. Each card expands on hover, revealing the combo name, a short description, and a one-tap WhatsApp order button — no page navigation required.
Accordion Gallery Mechanics
The gallery is built with CSS flexbox. All four.tarjeta cards sit in a single .galeria-contenedor row that is 380px tall. At rest, every card holds an equal share of the row width via flex: 1. When a visitor hovers over a card it expands to flex: 4, pushing the other three cards aside. The hidden content fades up from the bottom at the same time.
cubic-bezier(0.25, 1, 0.5, 1) timing function gives the expansion a natural, springy feel — fast at first, then settling smoothly into position.
The Four Combos
All four combos are defined as.tarjeta divs in index.php. Each card carries a data-producto attribute on its inner .btn-wsp-pedido button; JavaScript reads that attribute to build the WhatsApp order message at click time.
Combo Dúo (2 Pers.)
Includes: Café Espresso + Salados
data-producto: Combo Dúo (2 Personas)Ideal for couples or a quiet afternoon catch-up.Mix Antojos (3-4 Pers.)
Includes: Bebidas Frías + Repostería
data-producto: Mix Antojos (3-4 Personas)Cold drinks and pastries for a small group.Súper Banquete (5 Pers.)
Includes: Salados + Cafés + Tés Premium
data-producto: Súper Banquete (5 Personas)A full savoury and hot-drinks spread for five.Mega Compartir (Hasta 7)
Includes: Carta Completa + Chocolates + Regalos
data-producto: Mega Compartir (Hasta 7 Personas)The flagship sharing experience — full menu plus gifts.Combo HTML Structure
Each combo follows this pattern inindex.php:
Background Image Swap on Hover
buscador.js stores four alternative image URLs and swaps a card’s background-image when the mouse enters. This gives each combo a second, food-focused visual on expansion.
.tarjeta inside .seccion-experiencia-completa:
Adding a New Combo
Copy a .tarjeta div in index.php
Duplicate any existing
.tarjeta block and place it inside .galeria-contenedor. Update the default background-image URL, the <h3> title, the <p> description, and the data-producto value on the button.Add the hover image to fondosAlternativos in buscador.js
Declare a new image constant and add an entry to
fondosAlternativos, using the exact same string you put in data-producto.