/*
Theme Name: MENTIDERO
Theme URI: https://dominio.es
Author: Poncho Estudio
Author URI: https://ponchoestudio.com
Description: Theme  compatible con Elementor.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mi-tema
*/

/*
Theme Name: Mi Custom Theme
Author: Tu Nombre
Description: Starter theme limpio y genérico
Version: 1.0
*/

/* ==========================
RESET BÁSICO
========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--paragraphs), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1em;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: #222;
    background-color: #fff;
    text-rendering: optimizeLegibility;
}

/* ==========================
TIPOGRAFÍA BÁSICA
========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* ==========================
ELEMENTOS GENERALES
========================== */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================
ACCESIBILIDAD
========================== */
:focus {
    outline: 0;
    outline-offset: 0;
}


/* ==========================
RESET SOBRE BOOTSTRAP
========================== */

/* Quitar márgenes de tipografía */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
blockquote,
pre {
    margin: 0 !important;
    padding: 0 !important;
}

/* Quitar paddings/márgenes en body */
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Quitar paddings de listas Bootstrap */
ul,
ol {
    padding-left: 0 !important;
    list-style-position: inside;
    /* opcional */
}

/* Reset de imágenes */
img {
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
}

/* 1) Reset general — aplica a todos los elementos importantes */
.accordion,
.accordion .accordion-item,
.accordion .accordion-button,
.accordion .accordion-button::after,
.accordion .accordion-collapse,
.accordion .accordion-body {
    border-radius: var(--rounded-4) !important;
}

/* 2) Asegurar que los bordes superiores/inferiores específicos también se pongan a 0
   (Bootstrap a veces aplica radios sólo en first/last child) */
.accordion .accordion-item:first-child .accordion-button {
    border-top-left-radius: var(--rounded-4) !important;
    border-top-right-radius: var(--rounded-4) !important;
}

.accordion .accordion-item:last-child .accordion-collapse,
.accordion .accordion-item:last-child .accordion-body {
    border-bottom-left-radius: var(--rounded-4) !important;
    border-bottom-right-radius: var(--rounded-4) !important;
}

/* 3) Si usas .card (Bootstrap 4 o mix con .card): */
.card.accordion,
.card.accordion .card-header,
.card {
    border-radius: 0 !important;
}

/* 4) Opcional: quitar outline/sombra al abrir (si quieres apariencia totalmente plana) */
.accordion .accordion-button:focus,
.accordion .accordion-button:active,
.accordion .accordion-button:not(.collapsed) {
    box-shadow: none !important;
    outline: none !important;
}



/* ==========================
VARIABLES
========================== */

:root {
    /*COLORES*/
    --Primary: #032d5f;
    --Secondary: #4DA0FF;
    --tertiary: #DABA93;
    --white: #ffffff;
    --black: #2C2C2C;
    --swiper-theme-color: #FBFBFB;
    /* Cambia a tu color deseado */

    /*FONTS*/
    --headings: "scotch-text", serif;
    --paragraphs: "Raleway", sans-serif;
    --monospace: "orator-std", monospace;
    --ux: "commuters-sans", sans-serif;
    --headings__menu: "Abril Fatface", serif;
    ;


    /*ROUNDED*/
    --rounded-4: 4px;
    --rounded-8: 8px;
    --rounded-12: 12px;
    --rounded-100: 50px;
}

/* <weight>: Use a value from 100 to 900 */
.raleway {
    font-family: var(--paragraphs), sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* <weight>: Use a value 400, 600 and 700 */
.miller {
    font-family: var(--headings), serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* regular: 500 - semibold: 600 - bold: 700 (incluida italic) */
.commuters-sans {
    font-family: var(--ux), sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.abril-fatface-regular {
    font-family: var(--headings__menu);
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headings);
    font-weight: 400;
}

/* Barra de scroll */

body {
    /* Oculta la barra en Firefox, Edge/IE */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    /* Oculta la barra en Chrome, Safari */
    display: none;
}

/* ==========================
BUTTONS
========================== */

.btn-primary {
    display: flex;
    justify-content: center;
    padding: 16px 32px;
    border: 1px solid var(--Primary);
    border-radius: var(--rounded-100);
    font-family: var(--paragraphs);
    font-size: 20px !important;
    font-weight: 600;
    color: var(--white);
    background: var(--Primary);
    transition: all 0.2s ease-in-out;
    width: 100%;
}

.btn-primary:hover {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-secondary {
    display: flex;
    justify-content: center;
    padding: 16px 32px;
    border: 1px solid var(--white);
    border-radius: var(--rounded-100);
    font-family: var(--paragraphs);
    font-size: 20px !important;
    font-weight: 600;
    color: var(--Primary);
    background: var(--white);
    transition: all 0.2s ease-in-out;
    width: 100%;
}

.btn-secondary:hover {
    border: 1px solid transparent;
    color: var(--white);
    background: var(--Secondary);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn__header {
    transition: color 0.2s, background-color 0.2s;
    outline: none;
    box-shadow: none;
}

.btn__header:hover {
    color: var(--white) !important;
    background-color: var(--Primary);
}

.btn__header.active {
    color: var(--Primary);
    /* opcional: para remarcar visualmente */
    background-color: var(--Secondary);
}

.btn__header:focus {
    outline: none;
    box-shadow: none;
}

.btn__header-tmp {
    display: flex;
    justify-content: center;
    border: 1px solid var(--Primary);
    border-radius: var(--rounded-100);
    font-family: var(--paragraphs);
    font-weight: 600;
    color: var(--white);
    background: var(--Primary);
    transition: all 0.2s ease-in-out;
    width: fit-content;
    font-size: 16px !important;
    padding: 10px 32px 10px 30px;
    height: 48px;
}

.btn__header-tmp:hover {
    border: 1px solid var(--Primary) !important;
    color: var(--Primary) !important;
    background: transparent;
}

.numero {
    font-family: var(--ux);
}

/*++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++ HEADER +++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++*/

.auxiliar

/*misma altura que el header*/
    {
    height: 80px;
}

.header {
    width: 100%;
    height: auto;
    padding-block: 16px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    position: fixed;
    z-index: 99999;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    min-height: 80px;
    display: flex;
    -webkit-backdrop-filter: blur(8px);
}

.header__logo:hover>.header__svg {
    color: var(--Secondary);
    transform: scale(1.1);
    transition: all 0.3s;
}

.header__svg {
    color: var(--Primary);
    height: 26px;
    transition: all 0.3s;
}

.header__nav ul {
    display: flex;
    flex: 1;
    width: 100%;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    font-family: var(--paragraphs);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 110%;
    color: var(--Primary);
    text-transform: uppercase;
}

.header__nav a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--Primary);
    transition: width 0.3s ease;
}

.header__nav a:hover {
    transition: all 0.3s ease;
}

.header__nav a:hover::after {
    width: 100%;
}

/* Hover solo en enlaces que NO son del ítem actual */
.header__nav li:not(.current-menu-item):not(.current_page_item) a:hover::after {
    width: 100%;
}

/* Evita efectos en el enlace activo */
.header__nav li.current-menu-item a:hover,
.header__nav li.current_page_item a:hover {
    cursor: default;
    color: inherit;
    transition: none;
}

.current-menu-item a,
.current_page_item a {
    color: var(--Secondary);
    font-weight: 600;
    white-space: nowrap;
}

.lang-dropdown .btn {
    color: var(--Primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding-inline: 12px;
    border: 1px solid var(--Primary);
    width: 66px;
    height: 44px;
}

.lang-dropdown .dropdown-toggle::after {
    display: none;
    /* oculta la flecha por defecto de Bootstrap */
}

.lang-dropdown .ph-caret-down {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.dropdown-item {
    width: 65px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item:hover {
    background-color: var(--Primary);
    color: var(--white);
    font-weight: 600;
}

.lang-dropdown .dropdown-menu {
    min-width: auto;
    text-align: center;
    overflow: visible;
    margin-top: 6px;
    left: auto;
    right: 0;
    transform-origin: top right;
    pointer-events: auto;
    z-index: 100000;
}

.header__burger {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6px;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header__burger-line {
    width: 36px;
    height: 3px;
    background-color: var(--Primary);
    z-index: 100;
    border-radius: 2px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* ---------------------------------------------------------------- */
/* ESTADOS DE LA 'X' (Menú Abierto) */
/* OFF CANVAS */
/* ---------------------------------------------------------------- */

/* Línea Superior: Rota y se mueve hacia el centro */
.header__burger.is-open .header__burger-line-top {
    transform: translateY(10.5px) rotate(45deg);
}

/* Línea Inferior: Rota y se mueve hacia el centro */
.header__burger.is-open .header__burger-line-bottom {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Línea Central: Se oculta */
.header__burger.is-open .header__burger-line-center {
    opacity: 0;
    transform: translateX(10px);
}

.header__off-canva__menu {
    top: 80px !important;
    width: 100% !important;
    background: var(--Primary) !important;
    z-index: 10000 !important;
}

.offcanvas-backdrop.show {
    opacity: 0;
}

.header__off-canva__nav-container {
    width: 100%;
    height: 100svh;
    /* fallback estable */
    color: var(--white);
    font-family: var(--paragraphs);
    font-size: 36px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 16px 24px;
    position: relative;
    padding-block: 4rem;
    transition: height 0.3s ease-in-out;
    /* transición suave */
}

.header__off-canva__nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.offcanvas__logo-container {
    height: 15vh;
}

.btn__social {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white);
    border-radius: 100px;
    background: var(--white);
    transition: all 0.2s ease-in-out;
}

.btn__social svg path {
    fill: var(--Primary);
}

.btn__social:hover {
    background: var(--Primary);
}

.btn__social:hover svg path {
    fill: var(--white);
}

.nav__social {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.offcanvas__social {
    border-top: 1px solid var(--white);
    padding-top: 16px;
    margin-top: 16px;
}

.offcavas__btn-three {
    width: 24px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++ FOOTER +++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++*/

.footer__container {
    background-color: var(--Primary);
    color: var(--white);
}

.footer__container-contact-phone a,
.footer__links-size {
    font-size: clamp(1rem, 0.912rem + 0.471vi, 1.5rem);
}

.footer__logo {
    width: 220px;
    height: auto;
}

.footer__copy {
    font-size: 14px;
    border-top: 1px solid var(--white);
}

.footer__icons {
    width: 40px;
    height: 40px;
}

.footer__icons i {
    font-size: clamp(1rem, 0.912rem + 0.471vi, 1.5rem)
}

.footer__logo-container {
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

.footer__logo-container:hover {
    transform: scale(1.05);
}

.footer__links {
    position: relative;
}

.footer__links::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.footer__links:hover::after {
    width: 100%;
}

.footer__horario-container i {
    font-size: clamp(1rem, 0.912rem + 0.471vi, 1.5rem)
}

.footer__horario {
    font-family: var(--paragraphs);
    font-size: clamp(1rem, 0.912rem + 0.471vi, 1.5rem);
    line-height: 1.5rem;
    font-weight: 500;
}

.footer__titles {
    font-family: var(--headings);
    text-decoration: underline;
    font-size: clamp(1.5rem, 1.324rem + 0.941vi, 2.5rem);
}


/*++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++ PÁGINA HOME +++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++*/

.btn-contact {
    font-size: 24px;
    margin-left: 8px;
}

.hero__image-container {
    width: 100vw;
    height: calc(100vh - 80px);
    overflow: hidden;
    position: relative;
}

.hero__image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.66) 13.05%, rgba(255, 255, 255, 0.15) 77.92%, #FFF 99.97%);
    z-index: 1;
}

.hero__content {
    position: absolute;
    z-index: 2;
    width: 100vw;
    height: calc(100dvh - 80px);
    padding-block: 24px;
}

.hero__title {
    font-family: var(--headings);
    color: var(--white);
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.hero__logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero__logo {
    width: 50%;
    max-width: 240px;
}

.hero__image-container img {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
}

.hero__cta-container {
    width: 100%;
    gap: 16px;
}


/*++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++ PÁGINA MENÚ +++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++*/

/* HERO */
.menu__hero {
    padding-top: clamp(2.5rem, 1.537rem + 3.951vi, 4.5rem);
}

.menu__hero-container {
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: center;
}

.menu__hero-logo {
    color: var(--Primary);
    width: 300px;
    height: 100%;
}

.menu__heading-svg-container {
    display: flex;
    justify-content: center;
}

.menu__heading-svg {
    width: 100%;
    max-width: 380px;
    height: 10vh;
    max-height: 40px;
}

/* IDIOMAS */

.lang-item {
    width: auto;
}

.lang-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--Primary);
    border-radius: var(--rounded-4);
    padding: 8px;
    color: var(--Primary);
    text-transform: uppercase;
    font-size: 12px;
}

.lang-item a img {
    width: 24px !important;
    height: auto !important;
}

.lang-item a span {
    margin-left: 0 !important;
}

.lang-item.current-lang a {
    border: 2px solid var(--Primary);
    background-color: var(--Primary);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    color: var(--white);
}



/* SELECTOR */
.menu__chip-container {
    width: 100%;
    overflow: hidden;
    position: sticky;
    top: 80px;
    z-index: 999;
    background-color: var(--Primary);
    padding-block: 8px;
}

.menu__chip-group {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chip-group::-webkit-scrollbar {
    display: none;
}

.menu__chip {
    flex-shrink: 0;
    padding: 4px 16px;
    margin-right: 8px;
    background-color: var(--white);
    color: var(--Primary);
    border: 1px solid var(--Primary);
    border-radius: 100px;
    white-space: nowrap;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.menu__chip-container::after {
    /* Propiedades de Posicionamiento */
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 24px;
    /* Ancho del área de desvanecimiento */

    /* Crucial: Permite que los clics pasen a los chips debajo */
    pointer-events: none;
    z-index: 997;
    /* Asegura que el degradado esté por encima de los chips */

    /* Aplicación del Degradado */
    background: linear-gradient(to right,
            /* Comienza completamente transparente */
            rgba(3, 45, 95, 0) 0%,
            /* Termina con el color de fondo opaco #032d5f (Tu Primary Color) */
            rgba(3, 45, 95, 1) 100%);
}

/* Degradado Derecho (ya implementado, solo para referencia) */
.menu__chip-container::after {
    /* ... propiedades de posición, width, etc. ... */
    background: linear-gradient(to right,
            rgba(3, 45, 95, 0) 0%,
            rgba(3, 45, 95, 1) 100%);
}

/* 1. Degradado Izquierdo (Inicialmente oculto) */
.menu__chip-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 24px;
    pointer-events: none;
    z-index: 1000;

    /* Degradado de Derecha (transparente) a Izquierda (#032d5f opaco) */
    background: linear-gradient(to left,
            /* Dirección opuesta al anterior */
            rgba(3, 45, 95, 0) 0%,
            rgba(3, 45, 95, 1) 100%);

    /* Por defecto, está oculto (transparente) */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    /* Suaviza la aparición/desaparición */
}

/* 2. Regla condicional: Se activa cuando el JS añade la clase 'scrolled' */
.menu__chip-container.scrolled::before {
    opacity: 1;
    /* Muestra el degradado izquierdo */
}

/* Ajuste necesario para que el último chip no quede totalmente cubierto */
.menu__chip-group {
    /* Asegura que el contenedor tenga un padding-right para que el degradado no oculte todo el último chip */
    padding-right: 50px;
}

.menu__nav__btn-container {
    width: fit-content;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.menu__nav__btn-svg path {
    width: 32px;
    height: 32px;
}

.menu__nav__btn {
    color: var(--black);
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-family: var(--paragraphs);
    font-size: 16px;
    font-weight: 500;
}

.precio-no-wrap {
    /* Mantiene los precios y etiquetas siempre en una sola línea horizontal (CLAVE) */
    white-space: nowrap;
    /* Asegura que la columna tenga solo el ancho necesario para el precio más largo */
    min-width: fit-content;
}

.precio-no-wrap span {
    /* Asegura que los precios se muestren apilados verticalmente a pesar del white-space: nowrap */
    display: block;
}

/* Opcional: Ayuda a que los nombres muy largos se corten con puntos suspensivos */
.plato-nombre {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Estilo para separar los elementos individuales del plato */
.plato-item {
    /* Define un borde sólido y sutil en la parte inferior */
    border-bottom: 1px solid #cecece;
    /* Añade un poco de espacio interno para que el borde no esté pegado al texto */
    padding-bottom: 16px;
    /* Añade espacio externo para separar este plato del siguiente */
    margin-bottom: 16px !important;
}

/* Opcional: Eliminar el borde del ÚLTIMO plato en cada sección para un acabado limpio */
.plato-item:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
}


/* TEXTOS */

/* --- CONTROL DE TÍTULOS --- */
.menu__title {
    font-family: var(--headings);
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--Primary);
}

.accordion__title {
    font-family: var(--headings);
    font-size: 1rem;
    /* Tamaño un poco más grande para las categorías */
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--Primary);
    text-transform: uppercase;
}

.menu__subtitle {
    font-size: 1.5rem;
    font-family: var(--headings);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
}

/* --- CONTROL DE ITEMS --- */
.item__name {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
}


.item__price--main {
    font-weight: 400;
    font-size: 1rem;
    white-space: nowrap;
    /* Evita que el precio se rompa */
    color: var(--Secondary);
    font-family: Arial, Helvetica, sans-serif;
}

.item__price--secondary {
    font-weight: 400;
    font-size: 1rem;
    white-space: nowrap;
    color: var(--Secondary);
    font-family: Arial, Helvetica, sans-serif;
}

/* --- CONTROL DE DESCRIPCIÓN --- */
.item__description {
    color: var(--Secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.plato-item {
    color: var(--Secondary);
}

/* EXTRAS */

.extra-price-racion,
.extra-item-name {
    color: var(--Primary);
    font-size: 1rem;
}


/* CUSTOM ACCORDION */

.accordion__body__custom {
    background-color: var(--Primary);
    -webkit-box-shadow: 5px 5px 15px -9px #000000;
    box-shadow: 5px 5px 15px -9px #000000;
}

.accordion .accordion-item {
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    background-color: #cfe2ff;
}

.accordion-button:not(.collapsed) {
    background-color: var(--Secondary);
    color: var(--white);
    border: 1px solid transparent;
}

/** LEYENDAS ALÉRGENOS **/
.alergeno__container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--Primary);
    border-radius: var(--rounded-8);
    padding: 16px 0;
}

.alergeno__legend-title {
    font-family: var(--headings);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--Primary);
    text-align: center;
    text-decoration: underline;
}

.alergeno__legend-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    width: 80px;
    height: 80px;
}

.alergeno__legend-item__name {
    font-size: 14px;
    text-align: center;
    color: var(--Primary);
    font-weight: 500;
    text-transform: lowercase;
    line-height: 100%;
}

/* SUGERENCIAS */
.menu__sugerencias-titulo {
    color: var(--Primary);
    font-weight: 400;
    font-size: clamp(1.5rem, 1.139rem + 1.481vi, 2.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__sugerencias-titulo::after {
    content: "";
    width: clamp(0.5rem, 0.38rem + 0.494vi, 0.75rem);
    height: clamp(0.5rem, 0.38rem + 0.494vi, 0.75rem);
    margin-left: 0.5rem;
    background: url("img/varios/rectangle.svg") center/contain no-repeat;
    transform: translateY(1px);
}

.menu__sugerencias-titulo::before {
    content: "";
    width: clamp(0.5rem, 0.38rem + 0.494vi, 0.75rem);
    height: clamp(0.5rem, 0.38rem + 0.494vi, 0.75rem);
    margin-right: 0.5rem;
    background: url("img/varios/rectangle.svg") center/contain no-repeat;
    transform: translateY(1px);
}

.recomendaciones-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-content: center;
}

.recomendacion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.recomendacion-imagen img {
    width: 100%;
    height: 280px;
    /* Altura fija para la imagen */
    object-fit: cover;
    /* Asegura que la imagen no se distorsione */
    display: block;
}

.recomendaciones__titulo {
    font-size: clamp(1.25rem, 1.167rem + 0.444vi, 1.5rem);
    color: var(--Primary);
}

.recomendacion-contenido {
    padding: 16px;
}

.recomendacion-precio {
    font-weight: 400;
    color: var(--Primary);
    margin-top: 8px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++ FIN PÁGINA CARTA ++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++ PÁGINA GALERIA ++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++*/
.gallery__container {
    padding-top: clamp(2.5rem, 1.537rem + 3.951vi, 4.5rem);
}

.gallery__title {
    color: var(--Primary);
    font-weight: 400;
    font-size: clamp(1.5rem, 1rem + 2.667vi, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__title::after {
    content: "";
    width: clamp(0.5rem, 0.38rem + 0.494vi, 0.75rem);
    height: clamp(0.5rem, 0.38rem + 0.494vi, 0.75rem);
    margin-left: 0.5rem;
    background: url("img/varios/rectangle.svg") center/contain no-repeat;
    transform: translateY(1px);
}

.gallery__title::before {
    content: "";
    width: clamp(0.5rem, 0.38rem + 0.494vi, 0.75rem);
    height: clamp(0.5rem, 0.38rem + 0.494vi, 0.75rem);
    margin-right: 0.5rem;
    background: url("img/varios/rectangle.svg") center/contain no-repeat;
    transform: translateY(1px);
}


/*++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++ PÁGINA NOSOTROS +++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++*/

.titulo__page

/*general*/
    {
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
}

.about__hero-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.about__hero-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
}

.about__hero-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about__hero-title {
    position: absolute;
    color: var(--white);
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about__page-title {
    width: 300px;
    height: 100%;
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__hero-svg {
    width: 70%;
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    z-index: 2;
}

.about__article-container {
    padding-block: 64px;
}

.about__article h2 {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--Primary);
    margin-bottom: 48px !important;
    position: relative;
}

.about__article h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--Primary);
    bottom: -12px;
    left: 0;
}

.about__article p {
    margin-bottom: 16px !important;
}

.about__article>p:nth-of-type(2) {
    margin-bottom: 48px !important;
}

.about__article>p:nth-of-type(4) {
    margin-bottom: 48px !important;
}

.about__article ul {
    list-style-type: disc;
    margin-bottom: 16px !important;
}

.about__article ul li:first-of-type {
    margin-bottom: 16px !important;
}

.about__article-img-container {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--rounded-8);
    box-shadow: 10px 10px 15px -3px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    margin-bottom: 32px;
}

.about__article-img {
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about__article-side-img {
    width: clamp(18.75rem, 15.112rem + 14.925vi, 37.5rem);
}

.about__article-side-text {
    width: 300px;
    text-align: center;
    position: relative;
    padding: 16px;
}

.about__article-side-text {
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
    padding: 48px;
    background-color: var(--Primary);
    color: var(--white);
    border-radius: var(--rounded-8);
    font-family: var(--headings);
    box-shadow: 10px 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.about__article-quote {
    position: absolute;
    width: 110px;
    color: var(--Secondary);
    top: -10%;
    left: -5%;
}

.about__article-quote-down {
    position: absolute;
    width: 110px;
    color: var(--Secondary);
    transform: rotate(180deg);
    bottom: -10%;
    right: -5%;
}

.about__article-side-text-autor {
    width: 100px;
    aspect-ratio: 1/1;
    clip-path: circle(50% at 50% 50%);
    margin-bottom: 1.5rem !important;
}

/* PRIVACIDAD Y LEGALES */

.privacidad,
.legales {
    padding-top: clamp(2.5rem, 1.537rem + 3.951vi, 4.5rem);
    color: var(--Primary);
}

/* Pequeño (sm) */
@media (min-width: 576px) {
    /* estilos aquí */
}

/* Mediano (md) */
@media (min-width: 768px) {

    /* SUGERENCIAS */
    .recomendaciones-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        justify-content: center;
    }
}

/* Grande (lg) */
@media (min-width: 992px) {
    .header__svg {
        color: var(--Primary);
        height: 32px;
    }

    /* HOME PAGE */
    .hero__content {
        padding-block: 64px;
        width: 60%;
    }

    .hero__title {
        font-size: 2.5rem;
        width: 50vw;
        margin: 0 auto;
        text-align: center;
    }

    .hero__logo-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero__logo {
        max-width: 360px;
    }

    .hero__cta-container {
        width: 50vw;
        gap: 24px;
        margin: 0 auto;
    }

    /* SUGERENCIAS */
    .recomendaciones-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        justify-content: center;
    }

    .menu__hero-logo {
        color: var(--Primary);
        width: 500px;
        height: 100%;
    }

    .menu__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: auto;
    }

    /* MENU TITULO */
    .menu__heading-svg {
        width: 100%;
        max-width: 400px;
        height: 10vh;
        max-height: 64px;
    }

    /* Página galería */



    /* Página about */
    .about__hero-img img {
        aspect-ratio: 5 / 1.5;
    }

    .about__article-container {
        padding-block: 120px;
    }
}

/* Extra grande (xl) */
@media (min-width: 1200px) {
    /* estilos aquí */
}

/* XXL (xxl) */
@media (min-width: 1400px) {

    /* Página about */
    .about__hero-img img {
        aspect-ratio: 5 / 1.2;
    }
}


/*************ELEMENTOS TEMPORALES****************/

/* BARRA ADICIONAL PROMOCIONAL */

.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--Primary);
    z-index: 998;
    overflow: hidden;
    color: var(--white);
    margin-top: 80px;
}

.promo-marquee {
    display: flex;
    width: fit-content;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.promo-marquee span {
    font-weight: 600;
    font-size: 1rem;
    padding: 0 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#promo-bar {
    transition: opacity 0.3s ease-in-out;
}

/* PÁGINA TEMPORAL FIESTAS */

.temp__container {
    padding-top: clamp(2.5rem, 1.537rem + 3.951vi, 4.5rem);
}

.temp__text {
    font-size: clamp(1rem, 0.88rem + 0.494vi, 1.25rem);
    font-weight: 600;
    color: var(--Primary);
}

