Sentidos Café’s visual identity is defined entirely inDocumentation 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.
estilo.css — a single, self-contained stylesheet that applies a warm café aesthetic through a rich orange-and-brown palette, rounded white cards, and a dark outer shell. No CSS framework is used; every rule is handcrafted to match the brand.
Brand Color Palette
The four core colors appear repeatedly acrossestilo.css and establish an instantly recognisable identity for the shop.
| Token | Hex | Used For |
|---|---|---|
| Primary orange | #f7941d | .caja-estilo (header & nav), CTA headings, section heading accents |
| Dark brown | #3e2723 | Contact section background, logo border, nav hover color, footer text |
| Warm amber | #c67a25 | Section headings (.titulo-mapa, .bloque-llamado-accion h2), map title |
| Container bg | #d9e1e8 | .contenedor-principal background (the main page card) |
| Dark outer | #0b0b0b | body background — creates the dark frame around the page |
| WhatsApp green | #25D366 | .btn-wsp-pedido and .btn-wsp-flotante-principal backgrounds |
estilo.css:
#f7941d can be replaced with var(--color-primary), and a single-line change updates the entire site.
Main Layout Container
The entire page is wrapped in.contenedor-principal, which centers all content in a rounded card floating against the dark body background.
body uses display: flex with justify-content: center so the container is always horizontally centered regardless of viewport width. The min-height: 100vh rule ensures the dark background always fills the full screen.
Key CSS Classes
.caja-estilo — Orange Header & Nav Box
Used for both the <header> and the <nav> elements, this class gives them the primary orange treatment:
#d35400 border is a deeper burnt-orange that defines the edge of the box and separates it from the off-white container background.
.caja-bienvenida-ancha — Welcome Panel
A horizontal flexbox row that holds the left action card and the right dashed placeholder side-by-side:
.bloque-llamado-accion) gets flex: 1 and a white background with rounded corners. The right child (.bloque-imagen-referencia) also gets flex: 1 and holds .caja-vacia-marcador, styled with a dashed #a0aec0 border to indicate a future image placeholder.
.seccion-experiencia-completa — Combo Gallery Wrapper
A white rounded section that wraps the full accordion gallery of combo cards:
.galeria-contenedor — Accordion Gallery Row
Sets a fixed 380px height and uses display: flex so all .tarjeta children sit in a horizontal row at equal width:
.tarjeta — Accordion Combo Card
Each combo card starts at flex: 1 (equal share of the row) and expands to flex: 4 when hovered, creating the accordion reveal effect. The transition uses a custom cubic-bezier for an elastic, springy feel:
.contenido) is hidden by default using opacity: 0 and translateY(15px), then fades up into view on hover:
.btn-wsp-pedido — Inline WhatsApp Order Button
Green buttons rendered inside each combo card, matching WhatsApp’s brand color:
.btn-wsp-flotante-principal — Fixed Floating WhatsApp Button
Anchored to the bottom-right corner of the viewport at all times, above all other content:
.caja-footer-separada — Footer Card
A standalone white rounded box that separates the footer visually from the dark contact section above it:
Navigation Bar
The<nav> element sits inside a .caja-estilo box and uses a flex list to space links evenly:
index.php) sit inline next to each link label at font-size: 1.25rem. The hover state switches the link color from white to dark brown (#3e2723) and applies a subtle scale-up.
Responsive Breakpoint (768 px)
At viewports narrower than 768 px the horizontal flex rows collapse to single-column stacks:Google Maps Rounded Corners
Social Icon Hover Colors
The contact section renders social network icons as circular links (.icono-red). Each icon carries a modifier class that gives it a platform-specific hover color when the user mouses over it. The base state uses a translucent white background (rgba(255, 255, 255, 0.1)) so they blend into the dark brown contact box:
translateY(-5px) to lift the icon slightly upward, reinforcing interactivity. The TikTok effect replicates the platform’s signature cyan/red chromatic-aberration look using two offset box-shadow values instead of a background image.
Changing Brand Colors
To rebrand the site, search for#f7941d (primary orange) and #3e2723 (dark brown) throughout estilo.css and replace them with your new values. Both colors appear in a dozen or more rules each. The recommended long-term approach is to adopt the :root custom-property block shown at the top of this page so all values can be updated in one place.