/* --- Global: layout/fonts.css --- */
/* src/assets/css/layout/fonts.css */

/* Títulos Principales */
@font-face {
    font-family: 'Big Noodle';
    src: url('/src/assets/fonts/big_noodle_titling.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Texto Base */
@font-face {
    font-family: 'Neusa';
    src: url('/src/assets/fonts/NeusaNextPro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neusa';
    src: url('/src/assets/fonts/NeusaNextPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* Texto Negrita */
@font-face {
    font-family: 'Neusa';
    src: url('/src/assets/fonts/NeusaNextPro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neusa';
    src: url('/src/assets/fonts/NeusaNextPro-CompactLight.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('/src/assets/fonts/material-icons.woff2') format('woff2');
}/* --- Global: base.css --- */
@font-face {
    font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

nav,
header,
section,
footer {
    overflow: hidden;
    width: 100%;
    background-position: center top;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Neusa, Helvetica, sans-serif;
}

header,
section,
footer {
    padding: 100px 0;
    position: relative;
}

nav>.contenedor,
header>.contenedor,
section>.contenedor,
div>.contenedor,
footer>.contenedor {
    width: 1300px;
    position: relative;
    max-width: 92%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

nav>.contenedor .titulo,
header>.contenedor .titulo,
section>.contenedor .titulo,
div>.contenedor .titulo,
footer>.contenedor .titulo {
    font-family: Big Noodle, Arial;
}

.btn {
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    transition: background .3s linear;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.negro {
    background: #1a1919;
    color: #ffffff;
}

.btn.blanco {
    color: #1a1919;
    background: #ffffff;
}

.btn.negro:hover {
    background: rgba(26, 25, 25, 0.8);
}

.btn.btn.blanco:hover {
    background: rgba(255, 255, 255, 0.8);
}

input {
    background: none !important;
}

.precio-tachado {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.precio-tachado::after,
.precio-tachado::before {
    height: 2px;
    width: 100%;
    background-color: #ff1616;
    position: absolute;
}

.precio-tachado::after {
    transform: rotate(-12deg);
}

.precio-tachado::before {
    transform: rotate(12deg);
}/* --- Global: layout/menu.css --- */
nav {
    height: 75px;
    background: #1a1919;
    color: #ffffff;
    overflow: visible;
    position: relative;
    z-index: 9999;
}

nav.responsive {
    display: none;
}

nav .contenedor {
    justify-content: space-between;
    flex-direction: row;
}

nav .contenedor .items {
    display: flex;
    align-items: center;
}

nav .contenedor .items .item {
    cursor: pointer;
    padding: 8px;
    transition: all .2s linear;
    border-radius: 6px;
    position: relative;
}

nav .contenedor .items .item>a,
nav .contenedor .items button.item,
nav .contenedor .items .item>span:not(.material-icons) {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Big Noodle, Arial;
    color: #ffffff;
    text-decoration: none;
    background: none;
    border: none;
}

nav .contenedor .items .item#carrito-menu>a .cantidad {
    background: red;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .contenedor .items .item>a>.material-icons,
nav .contenedor .items .item>span>.material-icons {
    font-size: 32px;
    transition: all .2s linear;
}

nav .contenedor .items .item.activo>a>.material-icons {
    transform: rotate(-180deg);
}

nav .contenedor .items .item .desplegable {
    position: absolute;
    top: 57px;
    left: 0;
    width: 270px;
    background: #ffffff;
    border-radius: 5px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
    box-shadow: 0px 6px 15px 0px rgba(12, 29, 90, 0.35);
}

nav .contenedor .items .item .desplegable>div {
    width: 100%;
    height: 30px;
}

nav .contenedor .items .item .desplegable>div>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 5px;
    transition: all .2s linear;
    color: #000000;
}

nav .contenedor .items .item .desplegable>div>a:visited {
    color: #000000;
}

nav .contenedor .items .item .desplegable>div>span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 5px;
    transition: all .2s linear;
    color: #000000;
}

nav .contenedor .items .item .desplegable>div>span:hover {
    background-color: #1a1919;
    color: #ffffff;
}

nav.desktop .contenedor .items .item .desplegable>div a:hover {
    background: #1a1919;
    color: #ffffff;
}

nav.desktop .contenedor .items .item:hover:not(#carrito-menu):not(#logeado-menu):not(#pedido-menu):not(#login-menu) {
    font-weight: 800;
}

nav .contenedor .items .item.logo-menu {
    margin: 0 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .contenedor .items .item.logo-menu>img {
    width: 110px;
    height: 47px;
}

nav .contenedor .items .item#pedido-menu {
    font-size: 22px;
}

nav .contenedor .items.items-derecha .item {
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    font-family: Big Noodle, Arial;
    background: none;
    border: none;
}

nav .contenedor .items .item#login-menu>a {
    color: #ffffff;
    border-radius: 5px;
    padding: 8px 15px;
    border: 2px solid #ffffff;
}

nav .contenedor .items .item#abrir-menu span {
    font-size: 32px;
}

nav .contenedor .items #logeado-menu {
    font-size: 20px;
    cursor: pointer;
    font-family: Neusa, Helvetica, sans-serif;
}

nav .contenedor .items #logeado-menu .desplegable {
    width: 160px;
    right: 0;
    left: auto;
}

nav.responsive .desplegable {
    width: 100%;
    background: #1a1919;
    position: absolute;
    left: 0;
    top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

nav .contenedor .items .item#abrir-menu {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 22px;
    height: 15px;
    padding: 0;
}

nav .contenedor .items .item#abrir-menu .linea {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all .3s linear;
    border-radius: 2px;
}

nav .contenedor .items .item#abrir-menu.activo .linea-1 {
    transform: translateY(7px) rotate(45deg);
}

nav .contenedor .items .item#abrir-menu.activo .linea-2 {
    opacity: 0;
}

nav .contenedor .items .item#abrir-menu.activo .linea-3 {
    transform: translateY(-6px) rotate(-45deg);
}

nav.responsive .desplegable .items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

nav.responsive .desplegable .items .item {
    font-size: 20px;
}

nav .contenedor .items .item>span {
    position: relative;
}

nav .contenedor .items .item>span .triangulo {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 5px 10px 5px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    bottom: -17px;
    opacity: 0;
    transition: all .3s linear;
}

nav .contenedor .items .item.activo>span .triangulo {
    opacity: 1;
}

nav.responsive .contenedor .items .item#pedido-menu>span {
    position: relative;
    left: 15px;
}

nav.responsive .contenedor .items .item>a>.material-icons {
    font-size: 28px;
}

@media (max-width: 980px) {
    nav.desktop {
        display: none;
    }

    nav.responsive {
        display: flex;
    }

    nav .contenedor .items .item>a>.material-icons,
    nav .contenedor .items .item>span>.material-icons {
        font-size: 20px;
    }

    nav .contenedor .items .item#pedido-menu {
        margin-right: 20px;
    }

    nav .contenedor .items .item#pedido-menu {
        font-size: 20px;
    }

    nav .contenedor .items .item.logo-menu {
        margin: 0;
    }

    nav .contenedor .items .item .desplegable {
        top: 45px;
    }

    nav .contenedor .items .item .desplegable a {
        font-family: Neusa, Helvetica, sans-serif;
    }

    nav .contenedor .items .item#login-menu {
        padding: 0;
        margin-right: 20px;
    }

    nav .contenedor .items .item#login-menu>a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    nav .contenedor .items .item.logo-menu>img {
        width: 65px;
        height: 28px;
        padding: 0;
    }

    nav .contenedor .items .item#pedido-menu {
        font-size: 18px;
    }

    nav .contenedor .items #logeado-menu {
        font-size: 18px;
    }

    nav .contenedor .items .item>a>.material-icons,
    nav .contenedor .items .item>span>.material-icons {
        font-size: 16px;
    }

    nav .contenedor .items.items-derecha .item {
        padding: 0;
    }

    nav .contenedor .items .item#logeado-menu {
        margin-right: 10px;
    }

    nav .contenedor .items .item .desplegable {
        top: 34px;
        left: -75px;
    }

    nav .contenedor .items .item#login-menu>a {
        font-size: 18px;
    }
}/* --- Global: layout/footer.css --- */
footer {
    background: #1a1919;
    color: #ffffff;
    padding: 50px 0 0 0;
}

footer .contenedor .items {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

footer .contenedor .items .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 30px 40px;
}

footer .contenedor .items .item .titulo {
    font-size: 30px;
    margin-bottom: 30px;
}

footer .contenedor .items .item .items-secundario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

footer .contenedor .items .item .items-secundario .item-secundario {
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    margin-bottom: 8px;
}

footer .contenedor .items .item .items-secundario .item-secundario a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
}

footer .contenedor .items .item#redes-sociales .items-secundario .item-secundario img {
    width: 25px;
    height: 25px;
    margin-right: 15px;
}

footer .contenedor .cont-logo-footer {
    width: 100%;
    height: 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

footer .contenedor .cont-logo-footer .logo-footer a {
    font-size: 40px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Big Noodle';
    user-select: none;
}

footer .contenedor .cont-logo-footer .copyrigth {
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    footer .contenedor .cont-logo-footer {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 20px 0;
    }

    footer .contenedor .cont-logo-footer .logo-footer {
        margin-bottom: 30px;
    }
}

@media (max-width: 550px) {
    footer .contenedor .items {
        flex-direction: column;
        align-items: center;
    }

    footer .contenedor .items .item {
        align-items: center;
        margin: 30px 0;
    }

    footer .contenedor .items .item .items-secundario {
        align-items: center;
    }

    footer .contenedor .items .item .items-secundario .item-secundario {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}/* --- Global: layout/spinners.css --- */
.spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
    top: 0;
    left: 0;
}

.spinner.activo {
    display: flex;
}

.spinner::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 5px solid #000000;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 250px;
    transform: rotate(0deg);
    animation: spinner .8s ease-in-out infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}/* --- Global: layout/modals.css --- */
div.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(26, 25, 25, 0.8);
    z-index: 999999;
}

div.modal .contenedor-modal {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    max-height: 100vh;
    width: 600px;
    max-width: 100%;
}

div.modal .contenedor-modal .cerrar {
    border: none;
    background: none;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    padding: 0;
}

div.modal .contenedor-modal .titulo-modal {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 35px;
    font-family: Big Noodle, Arial;
}

div.modal .contenedor-modal .contenido-modal {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}/* --- Global: components/toast.css --- */
#toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.toast {
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    margin-top: 10px;
    font-family: 'Neusa';
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

    /* Animación de entrada */
    animation: slideUp 0.4s ease, fadeOut 0.4s ease 2.6s forwards;
}

/* Colores según el tipo */
.toast.success {
    border-left: 5px solid #4CAF50;
}

.toast.error {
    border-left: 5px solid #d02525;
}

.toast.info {
    border-left: 5px solid #2196F3;
}

@keyframes slideUp {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 20px;
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}/* --- Page: ../swiper-slider.css --- */
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}/* --- Page: ../components/banners-principal.css --- */
@font-face {
    font-family: 'Delighter';
    src: url('/src/assets/fonts/delighter-script-serif.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Big Noodle';
    src: url('/src/assets/fonts/big_noodle_titling.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Hudson NY';
    src: url('/src/assets/fonts/HudsonNYProSerif-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'LeagueGothic';
    src: url('/src/assets/fonts/LeagueGothic-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Yellowtail';
    src: url('/src/assets/fonts/Yellowtail-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'NeusaNextPro';
    src: url('/src/assets/fonts/NeusaNextPro-Regular.woff2') format('woff2');
    font-weight: normal;
}

@font-face {
    font-family: 'NeusaNextPro';
    src: url('/src/assets/fonts/NeusaNextPro-Bold.woff2') format('woff2');
    font-weight: bold;
}

header {
    background: #000000;
    height: 350px;
    padding: 0;
    margin-top: 50px;
}

header .swiper {
    height: 100%;
    width: 100%;
}

header .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 100px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

header .swiper-slide .contenedor {
    height: 100%;
    flex-direction: row;
    box-sizing: border-box;
}

header .swiper-slide .contenedor>img {
    max-width: 100%;
    max-height: 100%;
}

header .contenedor .cont-texto {
    max-width: 100%;
}

header #cajita-rio-parana .contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header #cajita-rio-parana .contenedor>img {
    width: 472px;
    height: 200px;
    position: relative;
    top: 30px;
}

header #cajita-rio-parana .contenedor .cont-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

header #cajita-rio-parana .contenedor .cont-texto .titulo {
    font-family: Delighter, Arial;
    text-align: center;
    font-size: 110px;
}

header #cajita-rio-parana .contenedor .cont-texto .bajada {
    font-family: Delighter, Arial;
    text-align: center;
    font-size: 45px;
}


header #cajitas-premium {
    background-color: #e6ded5;
    background-position: center;
    background-size: auto 100%;
}

header #cajitas-premium .contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header #cajitas-premium .contenedor .titulo {
    color: #891c1a;
    text-align: center;
    font-family: Delighter, Arial;
    line-height: .8;
    width: 325px;
    max-width: 100%;
    font-size: 115px;
}

header #cajitas-premium .contenedor>img {
    width: 770px;
    height: 328px;
}


header #cajita-criolla {
    background-color: #e6ded5;
    background-position: center;
    background-size: auto 100%;
}

header #cajita-criolla .contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header #cajita-criolla .contenedor>img {
    width: 565.5px;
    height: 350px;
    position: relative;
    top: 12px;
}

header #cajita-criolla .contenedor .cont-texto {
    color: #891c1a;
    text-align: center;
    font-family: Delighter, Arial;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-bottom: 52px;
    box-sizing: border-box;
}

header #cajita-criolla .contenedor .cont-texto .nueva {
    font-size: 50px;
    font-family: Delighter, Arial;
    line-height: .8;
    margin-bottom: 10px;
}

header #cajita-criolla .contenedor .cont-texto .titulo {
    font-size: 125px;
    font-family: Delighter, Arial;
    line-height: .8;
    margin-bottom: 10px;
}

header #cajita-criolla .contenedor .cont-texto .bajada {
    font-size: 55px;
    font-family: Delighter, Arial;
    line-height: .8;
}


header #promo-nortena {
    background-color: #e6ded5;
    background-position: center;
    background-size: auto 100%;
}

header #promo-nortena .contenedor {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header #promo-nortena .contenedor>img {
    width: 623px;
    height: 341px;
    position: absolute;
    right: 0;
    bottom: -16px;
}

header #promo-nortena .contenedor .cont-texto {
    color: #891c1a;
    text-align: center;
    font-family: Delighter, Arial;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-bottom: 52px;
    box-sizing: border-box;
}

header #promo-nortena .contenedor .cont-texto .titulo {
    font-size: 120px;
    font-family: Delighter, Arial;
    line-height: .8;
    margin-bottom: 10px;
    text-align: center;
}

header #promo-nortena .contenedor .cont-texto .bajada {
    font-size: 56px;
    width: 480px;
    max-width: 100%;
    line-height: .8;
    margin-bottom: 8px;
}

header #promo-nortena .contenedor .cont-texto .incluye {
    font-size: 28px;
    background-color: #891c1a;
    border-radius: 10px;
    padding: 5px 10px;
    color: #e6ded5;
}



header #promo-cuatro-cajitas {
    background-color: #e6ded5;
    background-position: center;
    background-size: auto 100%;
}

header #promo-cuatro-cajitas .contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header #promo-cuatro-cajitas .contenedor .cont-imagen {
    position: relative;
    top: 10px;
    left: -20px;
}

header #promo-cuatro-cajitas .contenedor .cont-imagen .productos {
    position: absolute;
    bottom: 15px;
    right: -185px;
    width: 249px;
    height: 251px;
}

header #promo-cuatro-cajitas .contenedor .cont-imagen .cajitas {
    width: 682px;
    height: 350px;
}

header #promo-cuatro-cajitas .contenedor .cont-texto {
    color: #891c1a;
    text-align: center;
    font-family: Delighter, Arial;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-bottom: 30px;
    box-sizing: border-box;
}

header #promo-cuatro-cajitas .contenedor .cont-texto .titulo {
    font-size: 100px;
    font-family: Delighter, Arial;
    line-height: .8;
    margin-bottom: 10px;
    text-align: center;
}

header #promo-cuatro-cajitas .contenedor .cont-texto .bajada {
    font-size: 35px;
    width: 415px;
    max-width: 100%;
    line-height: .8;
    margin-bottom: 12px;
}

header #promo-cuatro-cajitas .contenedor .cont-texto .cont-precio {
    background: #8b1c1c;
    color: white;
    font-size: 45px;
    text-align: center;
    padding: 15px 40px;
    position: relative;
    display: inline-block;
    clip-path: polygon(0 0,
            100% 0,
            92% 50%,
            100% 100%,
            0 100%,
            8% 50%);
}

header #promo-nortenas {
    background-color: #000000;
    background-position: center bottom;
}

header #promo-nortenas .contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

header #promo-nortenas .contenedor .cont-texto {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

header #promo-nortenas .contenedor .cont-texto .texto {
    width: 265px;
    max-width: 100%;
    font-size: 20px;
}

header #promo-nortenas .contenedor .cont-texto .texto .titulo {
    font-size: 96px;
    line-height: .9;
}

header #promo-nortenas .contenedor .cont-texto .texto .bajada {
    font-size: 30px;
    font-family: Big Noodle, Arial;
}

header #promo-nortenas .contenedor .cont-texto .texto .aclaracion {
    font-size: 21px;
    font-family: Big Noodle, Arial;
    position: absolute;
    bottom: 12px;
}

header #promo-nortenas .contenedor .cont-precio {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

header #promo-nortenas .contenedor .cont-precio .precio-venta {
    position: absolute;
    font-family: Big Noodle, Arial;
    font-size: 75px;
    bottom: 15px;
    left: 40px;
}

header #promo-nortenas .contenedor .cont-imagenes {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    width: 390px;
}

header #promo-nortenas .contenedor .cont-imagenes .cajas {
    position: absolute;
}

header #promo-nortenas .contenedor .cont-imagenes .empanadas {
    position: absolute;
    bottom: 20px;
}

header #promo-nortenas .contenedor .cont-imagenes .cajas.tucumanas {
    right: -200px;
}

header #promo-nortenas .contenedor .cont-imagenes .cajas.saltenas {
    right: -235px;
    top: -115px;
}


header #cajita-tucumana {
    background-position: center;
    background-repeat: repeat;
}

header #cajita-tucumana .contenedor {
    justify-content: flex-start;
}

header #cajita-tucumana .contenedor .cont-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

header #cajita-tucumana .contenedor .cont-img .salsa {
    position: absolute;
    right: 0;
    bottom: 0;
}

header #cajita-tucumana .contenedor .cont-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

header #cajita-tucumana .contenedor .cont-texto .sello {
    position: absolute;
    left: -65px;
    top: 10px;
    width: 140px;
}

header #cajita-tucumana .contenedor .cont-texto .nuevo-sabor {
    font-size: 55px;
    font-family: Big Noodle, Arial;
    text-align: center;
}

header #cajita-tucumana .contenedor .cont-texto .titulo {
    font-size: 85px;
    margin-bottom: 0;
    text-align: center;
}

header #cajita-tucumana .contenedor .cont-texto .descripcion {
    font-family: Big Noodle, Arial;
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
}

header #cajita-tucumana .contenedor .cont-texto .precio {
    font-size: 65px;
    font-family: 'Big Noodle', Arial;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    letter-spacing: .9px;
}

header #promo-tucumana {
    background-position: center;
    background-repeat: repeat;
}

header #promo-tucumana .contenedor {
    justify-content: space-between;
}

header #promo-tucumana .contenedor .empanadas {
    position: absolute;
    right: 0;
}

header #promo-tucumana .contenedor .cont-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    margin-top: 25px;
}

header #promo-tucumana .contenedor .cont-texto .sello {
    position: absolute;
    left: -65px;
    top: -5px;
    width: 140px;
}

header #promo-tucumana .contenedor .cont-texto .nuevo-sabor {
    font-size: 45px;
    font-family: LeagueGothic, Arial;
    text-align: center;
    margin-bottom: 5px;
}

header #promo-tucumana .contenedor .cont-texto .titulo {
    font-size: 80px;
    line-height: .8;
    text-align: center;
    font-family: LeagueGothic, Arial;
    margin-bottom: 5px;
}

header #promo-tucumana .contenedor .cont-texto .titulo>span {
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
}

header #promo-tucumana .contenedor .cont-texto .descripcion {
    font-family: Yellowtail, Arial;
    font-size: 35px;
    margin-bottom: 10px;
    text-align: center;
}

header #promo-tucumana .contenedor .cont-texto .cont-precio {
    display: flex;
    justify-content: center;
    align-items: center;
}

header #promo-tucumana .contenedor .cont-texto .precio {
    font-size: 85px;
    font-family: LeagueGothic, Arial;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    letter-spacing: .9px;
}

header #promo-tucumana .contenedor .cont-texto .tachado {
    font-family: LeagueGothic, Arial;
    font-size: 50px;
    margin-right: 20px;
    position: relative;
}

header #promo-tucumana .contenedor .cont-texto .tachado::after,
header #promo-tucumana .contenedor .cont-texto .tachado::before {
    content: '';
    width: 100%;
    height: 2px;
    background: red;
    position: absolute;
    top: 25px;
}

header #promo-tucumana .contenedor .cont-texto .tachado::after {
    left: 0;
    transform: rotate(25deg);
}

header #promo-tucumana .contenedor .cont-texto .tachado::before {
    left: 0;
    transform: rotate(-25deg);
}

header #promo-cuatro-tres .contenedor {
    justify-content: flex-start;
}

header #promo-cuatro-tres .contenedor>img {
    position: absolute;
    right: 0;
}

header #promo-cuatro-tres .contenedor .cont-texto {
    display: flex;
    justify-content: center;
    align-items: center;
}

header #promo-cuatro-tres .contenedor .cont-texto .texto {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-right: 80px;
}

header #promo-cuatro-tres .contenedor .cont-texto .titulo {
    font-size: 70px;
}

header #promo-cuatro-tres .contenedor .cont-texto .titulo>span {
    color: #f28800;
}

header #promo-cuatro-tres .contenedor .cont-texto .bajada {
    font-weight: 300;
    font-size: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

header #promo-cuatro-tres .contenedor .cont-precio {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-family: Big Noodle, Arial;
}

header #promo-cuatro-tres .contenedor .cont-precio .precio-lista {
    position: relative;
    font-size: 55px;
}

header #promo-cuatro-tres .contenedor .cont-precio .precio-lista .img-tachado {
    width: 100%;
    position: absolute;
    top: -18px;
    left: 0;
}

header #promo-cuatro-tres .contenedor .cont-precio .precio-venta {
    font-size: 90px;
}

/**/

header #burger .contenedor {
    overflow: hidden;
    position: relative;
}

header #burger .contenedor>img {
    margin-right: 50px;
    width: 447px;
    height: 350px;
}

header #burger .contenedor::after {
    content: 'NUEVO GUSTO';
    position: absolute;
    right: -45px;
    top: 35px;
    background: #ffb207;
    color: #ffffff;
    font-size: 30px;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-family: Big Noodle, Arial;
}

header #burger .contenedor .cont-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header #burger .contenedor .cont-texto .titulo {
    font-size: 100px;
    color: #ffb207;
    font-family: 'Hudson NY', 'Arial';
}

header #burger .contenedor .cont-texto .sabores {
    font-size: 36px;
    text-align: center;
    color: #fddca2;
    font-family: Big Noodle, Arial;
    margin-bottom: 8px;
}

header #burger .contenedor .cont-texto .texto {
    font-size: 30px;
    text-align: center;
    font-family: Big Noodle, Arial;
    letter-spacing: 2px;
}

/**/

header #vg-bp .contenedor>img {
    position: absolute;
}

header #vg-bp .contenedor .izq {
    left: -130px;
    z-index: 1;
}

header #vg-bp .contenedor .der {
    right: -170px;
}

header #vg-bp .contenedor .cont-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

header #vg-bp .contenedor .cont-texto .titulo {
    color: #ffb207;
    font-family: 'Hudson NY', 'Arial';
    font-size: 30px;
    margin-bottom: 20px;
}

header #vg-bp .contenedor .cont-texto .gustos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1;
}

header #vg-bp .contenedor .cont-texto .gustos>div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: Big Noodle, Arial;
    width: 305px;
}

header #vg-bp .contenedor .cont-texto .gustos>div>span {
    font-size: 15px;
}

header #vg-bp .contenedor .cont-texto .gustos .vg {
    color: #ff3f32;
}

header #vg-bp .contenedor .cont-texto .gustos .bp {
    color: #fddca2;
}

header #vg-bp .contenedor .cont-texto .gustos>div .iniciales {
    font-size: 115px;
    line-height: 1;
}

header #vg-bp .contenedor .cont-texto .gustos>div .nombre {
    font-size: 45px;
}

header #vg-bp .contenedor .cont-texto .gustos>div .descipcion {
    font-size: 25px;
    text-align: center;
}

/**/

header #veggie {
    background-size: 700px;
}

header #veggie .contenedor {
    flex-direction: column;
}

header #veggie .contenedor .cont-texto {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header #veggie .contenedor .cont-texto .titulo {
    text-align: center;
    color: #e1fab4;
    font-family: 'Hudson NY', 'Arial';
    font-size: 65px;
}

header #veggie .contenedor .cont-texto .bajada {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Hudson NY', 'Arial';
}

header #veggie .contenedor .cont-texto .bajada .cien {
    color: #86ff76;
    font-size: 50px;
}

header #veggie .contenedor .cont-texto .bajada .cero {
    color: #e1fab4;
    font-size: 65px;
}

header #veggie .contenedor .aclaracion {
    font-size: 25px;
    color: #a5d88f;
    text-align: center;
    font-family: Big Noodle, Arial;
}


/**/

header #franui-burger .contenedor {
    justify-content: flex-start;
}

header #franui-burger .contenedor .burger-franui {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 590px;
}

header #franui-burger .contenedor .franui-solo {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scaleX(-1);
}

header #franui-burger .contenedor .cont-texto {
    position: relative;
    left: 51%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

header #franui-burger .contenedor .cont-texto .titulo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: .8;
    margin-bottom: 15px;
}

header #franui-burger .contenedor .cont-texto .titulo .titulo-burger {
    font-size: 50px;
}

header #franui-burger .contenedor .cont-texto .titulo .titulo-franui {
    font-size: 60px;
    color: #e7444a;
}

header #franui-burger .contenedor .cont-texto .bajada {
    font-size: 38px;
    font-family: Big Noodle, Arial;
}


/**/

header #franui .contenedor {
    font-size: 20px;
}

header #franui .contenedor .tarro-franui {
    position: absolute;
    right: 0;
}

header #franui .contenedor .franui {
    position: absolute;
    left: 0;
    bottom: 0;
}

header #franui .contenedor .cont-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

header #franui .contenedor .cont-texto .titulo {
    font-size: 60px;
    line-height: .8;
}

header #franui .contenedor .cont-texto .bajada {
    font-family: Big Noodle, Arial;
    color: #ed7a78;
    font-size: 30px;
    margin-bottom: 30px;
}

header #franui .contenedor .cont-texto .texto {
    font-family: Big Noodle, Arial;
    font-size: 40px;
}

header #franui .contenedor .cont-texto .texto>span {
    color: #ed7a78;
}

/**/

header .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #000000;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

header .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000000;
    width: 12px;
    height: 12px;
}

/**/

@media (max-width: 1366px) {
    header #promo-saltenias .contenedor .imagen-empanada {
        width: 550px;
        height: 300px;
    }

    header #promo-saltenias .contenedor .cont-codigo .logo {
        display: initial;
        height: 91.5px;
        width: 88px;
        left: -72px;
        bottom: -8px;
        top: auto;
    }

    header #promo-saltenias .contenedor .logo {
        display: none;
    }

    header #franui-burger .contenedor .franui-solo {
        width: 130px;
        height: 123px;
    }

    header #franui-burger .contenedor .burger-franui {
        width: 480px;
        height: 232px;
    }

    header #franui .contenedor .tarro-franui {
        width: 300px;
        height: 284px;
        right: -5%;
    }

    header #franui .contenedor .franui {
        left: -5%;
        width: 250px;
        height: 223px;
    }

    header #promo-mayo .contenedor {
        overflow: visible;
    }

    header #promo-mayo .contenedor .sol {
        position: absolute;
        left: -240px;
        top: -195px;
    }

    header #promo-mayo .contenedor .empanadas {
        right: -5%;
    }

    header #cajita-tucumana .contenedor .cont-img {
        right: -100px;
    }

    header #promo-tucumana .contenedor .cont-texto .nuevo-sabor {
        font-size: 40px;
    }

    header #promo-tucumana .contenedor .cont-texto .titulo {
        font-size: 72px;
    }

    header #promo-tucumana .contenedor .cont-texto .descripcion {
        font-size: 30px;
    }

    header #promo-tucumana .contenedor .empanadas {
        position: absolute;
        right: -90px;
        width: 490px;
    }

    header #promocion .contenedor>img {
        margin-right: -80px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .titulo {
        font-size: 95px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .bajada {
        font-size: 38px;
    }

    header #cajitas-premium .contenedor>img {
        width: 665px;
        height: 283px;
    }

    header #cajita-criolla .contenedor>img {
        height: 294px;
        width: 475px;
        top: 35px;
    }

    header #promo-nortena .contenedor>img {
        width: 580px;
        height: 317.5px;
        right: -48px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .productos {
        right: -145px;
        width: 200px;
        height: 202px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .cajitas {
        width: 590px;
        height: 303px;
    }
}

@media (max-width: 1200px) {
    header #promo-saltenias .contenedor .cont-imagen {
        position: relative;
        right: -6%;
    }

    header #promo-saltenias .contenedor .imagen-empanada {
        width: 500px;
        height: 273.5px;
    }

    header #promo-saltenias .contenedor .titulo {
        font-size: 50px;
    }

    header #promo-saltenias .contenedor .titulo>span {
        font-size: 65px;
    }

    header #promo-saltenias .contenedor .texto-descuento {
        font-size: 35px;
    }

    header #promo-saltenias .contenedor .cont-codigo {
        font-size: 60px;
    }

    header #promo-saltenias .contenedor .cont-codigo .logo {
        height: 78px;
        width: 75px;
        left: -60px;
    }

    header #promo-cuatro-tres .contenedor>img {
        right: -20%;
    }

    header #promo-cuatro-tres .contenedor .cont-texto .texto {
        margin-right: 50px;
    }

    header #burger .contenedor {
        overflow: visible;
    }

    header #burger .contenedor::after {
        right: calc(-5% + -45px);
    }

    header #burger .contenedor>img {
        width: 350px;
        height: 257px;
    }

    header #burger .contenedor .cont-texto .titulo {
        font-size: 80px;
    }

    header #burger .contenedor .cont-texto .sabores {
        font-size: 30px;
    }

    header #burger .contenedor .cont-texto .texto {
        font-size: 26px;
    }

    header #vg-bp .contenedor .izq {
        width: 365px;
        height: 269px;
    }

    header #vg-bp .contenedor .der {
        width: 365px;
        height: 269px;
    }

    header #promo-mayo .contenedor .empanadas {
        width: 510px;
        height: 240px;
    }

    header #promo-mayo .contenedor .cont-texto .texto .texto-promo {
        width: 270px;
    }

    header #promo-mayo .contenedor .cont-texto .texto .titulo {
        font-size: 100px;
    }

    header #promo-mayo .contenedor .cont-texto .texto .incluye {
        font-size: 26px;
    }

    header #promo-copa .contenedor .contenido-promo {
        margin-left: 18%;
    }

    header #cajita-tucumana .contenedor .cont-img .empanadas {
        width: 490px;
        height: 270px;
    }

    header #cajita-tucumana .contenedor .cont-img .salsa {
        width: 180px;
        height: 104px;
    }

    header #cajita-tucumana .contenedor .cont-texto .titulo {
        font-size: 75px;
    }

    header #cajita-tucumana .contenedor .cont-texto .nuevo-sabor {
        font-size: 45px;
    }

    header #cajita-tucumana .contenedor .cont-texto .descripcion {
        font-size: 32px;
    }

    header #promo-tucumana .contenedor .empanadas {
        right: -110px;
        width: 490px;
    }

    header #promocion .contenedor .cont-texto .texto .texto-con-fondo {
        font-size: 32px;
    }

    header #promocion .contenedor .cont-texto .texto .cantidad {
        font-size: 90px;
    }

    header #promocion .contenedor .cont-texto .texto .sabor {
        font-size: 115px;
    }

    header #promocion .contenedor .cont-texto .precio>img {
        width: 165px;
        margin: 0 30px;
    }

    header #promocion .contenedor .cont-texto .precio .valor {
        font-size: 54px;
    }

    header #promocion .contenedor>img {
        margin-right: 0;
        width: 360px;
    }

    header #cajita-rio-parana .contenedor>img {
        width: 422px;
        height: 179px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .titulo {
        font-size: 80px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .bajada {
        font-size: 30px;
    }

    header #cajitas-premium .contenedor>img {
        width: 570px;
        height: 243px;
    }

    header #cajitas-premium .contenedor .titulo {
        font-size: 98px;
    }

    header #cajita-criolla .contenedor>img {
        height: 272px;
        width: 440px;
        top: 45px;
    }

    header #cajita-criolla .contenedor .cont-texto .titulo {
        font-size: 100px;
    }

    header #cajita-criolla .contenedor .cont-texto .bajada {
        font-size: 42px;
        width: 455px;
        max-width: 100%;
    }

    header #cajita-criolla .contenedor .cont-texto .nueva {
        font-size: 40px;
    }

    header #promo-nortena .contenedor .cont-texto .titulo {
        font-size: 90px;
    }

    header #promo-nortena .contenedor .cont-texto .bajada {
        font-size: 45px;
        width: 390px;
    }

    header #promo-nortena .contenedor .cont-texto .incluye {
        font-size: 22px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen {
        top: 35px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .productos {
        right: -120px;
        width: 170px;
        height: 171px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .cajitas {
        width: 530px;
        height: 272px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-texto .titulo {
        font-size: 84px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-texto .bajada {
        font-size: 28px;
        width: 333px;
    }
}

@media (max-width: 1024px) {
    header #promo-saltenias .contenedor .imagen-empanada {
        width: 459px;
        height: 251px;
    }

    header #promo-tucumana .contenedor .empanadas {
        right: -105px;
        width: 470px;
    }

    header #promo-nortenas .contenedor .cont-imagenes {
        width: 265px;
    }

    header #promo-nortenas .contenedor .cont-imagenes .empanadas {
        bottom: 40px;
        width: 300px;
        right: -40px;
    }

    header #promo-nortenas .contenedor .cont-imagenes .cajas.saltenas {
        width: 300px;
        right: -90px;
        top: -42px;
    }

    header #promo-nortenas .contenedor .cont-imagenes .cajas.tucumanas {
        width: 200px;
        right: -35px;
        bottom: -55px;
    }

    header #promo-nortenas .contenedor .cont-precio>img {
        width: 180px;
    }

    header #promo-nortenas .contenedor .cont-precio .precio-venta {
        font-size: 55px;
        bottom: 8px;
        left: 25px;
    }

    header #promocion .contenedor>img {
        margin-right: -35px;
    }

    header #cajita-criolla .contenedor>img {
        margin-left: -40px;
    }

    header #promo-nortena .contenedor>img {
        width: 530px;
        height: 290px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .productos {
        right: -120px;
        width: 170px;
        height: 171px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .cajitas {
        width: 500px;
        height: 256.5px;
    }
}

@media (max-width: 980px) {
    header #promo-saltenias .contenedor .imagen-empanada {
        width: 400px;
        height: 219px;
    }

    header #promo-saltenias .contenedor .titulo {
        font-size: 45px;
    }

    header #promo-saltenias .contenedor .titulo>span {
        font-size: 55px;
    }

    header #promo-cuatro-tres .contenedor .cont-texto {
        flex-direction: column;
    }

    header #promo-cuatro-tres .contenedor .cont-texto .texto {
        margin: 0 0 30px 0;
    }

    header #franui .contenedor .tarro-franui {
        width: 210px;
        height: 199px;
        bottom: 0;
    }

    header #franui .contenedor .franui {
        width: 210px;
        height: 187px;
    }

    header #vg-bp .contenedor .cont-texto .gustos>div .nombre {
        font-size: 38px;
    }

    header #vg-bp .contenedor .cont-texto .gustos>div .descipcion {
        font-size: 22px;
    }

    header #vg-bp .contenedor .izq {
        width: 310px;
        height: 228px;
    }

    header #vg-bp .contenedor .der {
        width: 310px;
        height: 228px;
    }

    header #vg-bp .contenedor .cont-texto .gustos>div {
        width: 260px;
    }

    header #promo-mayo .contenedor .cont-texto {
        margin-left: 85px;
    }

    header #promo-mayo .contenedor .empanadas {
        width: 460px;
        height: 217px;
        right: -20%;
    }

    header #promo-mayo .contenedor .cont-texto .texto .titulo {
        font-size: 90px;
    }

    header #promo-copa .contenedor .titulo {
        width: 260px;
        font-size: 40px;
    }

    header #promo-copa .contenedor .nombre {
        font-size: 18px;
        margin-bottom: 4px;
    }

    header #promo-copa .contenedor .descripcion .nombre-descripcion {
        font-size: 26px;
        letter-spacing: 1.5px;
        margin-right: 35px;
    }

    header #promo-copa .contenedor .descripcion .nombre-descripcion::before {
        right: -22px;
    }

    header #promo-copa .recuadro .empanada {
        right: -70px;
    }

    header #promo-copa .contenedor .contenido-promo {
        margin-left: 28%;
    }

    header #cajita-tucumana .contenedor .cont-img .empanadas {
        width: 460px;
        height: 254px;
    }

    header #cajita-tucumana .contenedor .cont-img .salsa {
        width: 155px;
        height: 90px;
        right: 15px;
    }

    header #cajita-tucumana .contenedor .cont-texto .titulo {
        font-size: 62px;
    }

    header #cajita-tucumana .contenedor .cont-texto .descripcion {
        font-size: 28px;
    }

    header #promo-tucumana .contenedor .empanadas {
        right: -110px;
        width: 430px;
        bottom: 20px;
    }

    header #promo-tucumana .contenedor .cont-texto .nuevo-sabor {
        font-size: 32px;
    }

    header #promo-tucumana .contenedor .cont-texto .descripcion {
        font-size: 26px;
    }

    header #promo-tucumana .contenedor .cont-texto .titulo {
        font-size: 60px;
    }

    header #promocion .contenedor .cont-texto .texto .cantidad {
        font-size: 80px;
    }

    header #promocion .contenedor .cont-texto .texto .sabor {
        font-size: 105px;
    }

    header #promocion .contenedor>img {
        margin-right: -120px;
        width: 325px;
    }

    header #promocion .contenedor .cont-texto .precio>img {
        margin: 0 15px;
    }

    header #cajita-rio-parana .contenedor>img {
        width: 295px;
        height: 125px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .titulo {
        font-size: 75px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .bajada {
        font-size: 25px;
    }

    header #cajitas-premium .contenedor>img {
        width: 425px;
        height: 181px;
    }

    header #cajitas-premium .contenedor .titulo {
        width: 280px;
        font-size: 98px;
    }

    header #cajita-criolla .contenedor>img {
        height: 233px;
        width: 376px;
        top: 50px;
    }

    header #cajita-criolla .contenedor .cont-texto .titulo {
        font-size: 75px;
    }

    header #cajita-criolla .contenedor .cont-texto .bajada {
        font-size: 34px;
        width: 370px;
    }

    header #cajita-criolla .contenedor .cont-texto .nueva {
        font-size: 32px;
    }

    header #promo-nortena .contenedor>img {
        right: -120px;
    }

    header #promo-nortena .contenedor .cont-texto .titulo {
        font-size: 78px;
    }

    header #promo-nortena .contenedor .cont-texto .bajada {
        font-size: 35px;
        width: 300px;
    }

    header #promo-nortena .contenedor .cont-texto .incluye {
        font-size: 16px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen {
        left: 0;
        top: 60px;
        margin-left: -60px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .cajitas {
        width: 435px;
        height: 223px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .productos {
        bottom: 15px;
        right: -95px;
        width: 150px;
        height: 151px;
    }
}

@media (max-width: 830px) {
    header #promo-saltenias .contenedor .imagen-empanada {
        width: 375px;
        height: 205px;
    }

    header #promo-saltenias .contenedor .titulo {
        font-size: 43px;
    }

    header #promo-saltenias .contenedor .titulo>span {
        font-size: 51px;
    }

    header #promo-saltenias .contenedor .texto-descuento {
        font-size: 30px;
    }

    header #promo-saltenias .contenedor .cont-codigo {
        font-size: 55px;
    }

    header #promo-saltenias .contenedor .cont-codigo .logo {
        height: 67.5px;
        width: 65px;
        left: -48px;
    }

    header #promo-copa .contenedor .contenido-promo {
        margin-left: 24%;
    }

    header #cajita-tucumana .contenedor .cont-img {
        right: -165px;
    }

    header #cajita-tucumana .contenedor .cont-img .salsa {
        right: 65px;
    }

    header #promo-tucumana .contenedor .empanadas {
        right: -138px;
        width: 400px;
    }

    header #promo-nortena .contenedor>img {
        width: 475px;
        height: 260px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-texto .titulo {
        font-size: 68px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-texto .bajada {
        font-size: 22px;
        width: 260px;
    }
}

@media (max-width: 768px) {
    header {
        height: 580px;
    }

    header .swiper-slide .contenedor {
        flex-direction: column;
    }

    header #fecha-promo-saltenias .contenedor {
        top: -20px;
        padding: 0;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo {
        font-size: 75px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo:before,
    header #fecha-promo-saltenias .contenedor .arriba-titulo:after {
        width: 80px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo:before {
        left: -90px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo:after {
        right: -90px;
    }

    header #fecha-promo-saltenias .contenedor .titulo {
        font-size: 80px;
    }

    header #promo-saltenias .contenedor {
        justify-content: space-between;
    }

    header #promo-saltenias .contenedor .cont-imagen {
        height: auto;
        right: 0;
    }

    header #promo-saltenias .contenedor .imagen-empanada {
        width: 430px;
        height: 235px;
    }

    header #promo-saltenias .contenedor .titulo {
        font-size: 60px;
    }

    header #promo-saltenias .contenedor .titulo>span {
        font-size: 70px;
    }

    header #promo-cuatro-tres .contenedor {
        padding-top: 50px;
    }

    header #promo-saltenias .contenedor .cont-codigo {
        font-size: 65px;
    }

    header #promo-saltenias .contenedor .texto-descuento {
        font-size: 40px;
    }

    header #promo-saltenias .contenedor .cont-codigo .logo {
        height: 85px;
        width: 82px;
        left: -62px;
    }

    header #promo-cuatro-tres .contenedor .cont-texto {
        margin: 0 0 50px 0;
    }

    header #promo-cuatro-tres .contenedor .cont-texto .bajada {
        margin-bottom: 15px;
    }

    header #promo-cuatro-tres .contenedor .cont-precio .precio-venta {
        font-size: 75px;
    }

    header #promo-cuatro-tres .contenedor>img {
        position: relative;
        right: auto;
        bottom: 0;
        width: 330px;
        height: 198px;
        max-width: initial;
    }

    header #franui .contenedor {
        justify-content: flex-start;
        padding-top: 60px;
    }

    header #franui .contenedor .tarro-franui {
        width: 265px;
        height: 251px;
    }

    header #franui .contenedor .franui {
        width: 280px;
        height: 250px;
    }

    header #burger .contenedor {
        flex-direction: column-reverse;
        justify-content: center;
        padding: 0;
    }

    header #burger .contenedor>img {
        margin: 0;
    }

    header #burger .contenedor .cont-texto {
        margin-bottom: 50px;
    }

    header #vg-bp .contenedor>img {
        bottom: 0;
    }

    header #vg-bp .contenedor .izq {
        left: -80px;
    }

    header #vg-bp .contenedor .der {
        right: -50px;
    }

    header .swiper-slide .contenedor {
        justify-content: flex-start;
        padding-top: 30px;
    }

    header #promo-mayo .contenedor .empanadas {
        position: relative;
        right: 0;
        width: 540px;
        height: 240px;
    }

    header #promo-mayo .contenedor .cont-texto {
        margin-left: 0;
        z-index: 1;
    }

    header #promo-mayo .contenedor .sol {
        left: -135px;
        top: -95px;
        width: 190px;
    }

    header #promo-copa .contenedor {
        align-items: center;
    }

    header #promo-copa .contenedor .contenido-promo {
        margin-left: 0;
    }

    header #promo-copa .recuadro .copa {
        bottom: 0;
        width: 190px;
        left: 25px;
    }

    header #promo-copa .recuadro .empanada {
        bottom: 0;
        width: 300px;
        right: 0;
    }

    header #promo-copa .contenedor {
        padding-top: 40px;
    }

    header #cajita-tucumana {
        background-size: auto 100%;
    }

    header #cajita-tucumana .contenedor .cont-img {
        position: relative;
        right: auto;
    }

    header #cajita-tucumana .contenedor .cont-texto .sello {
        left: -55px;
        top: -20px;
    }

    header #promo-tucumana {
        background-size: cover;
    }

    header #promo-tucumana .contenedor {
        justify-content: center;
    }

    header #promo-tucumana .contenedor .empanadas {
        position: relative;
        bottom: 0;
        right: 0;
        width: 320px;
    }

    header #promo-tucumana .contenedor .cont-texto {
        margin: 0 0 30px 0;
        height: auto;
    }

    header #promo-tucumana .contenedor .cont-texto .sello {
        left: -85px;
        top: -72px;
    }

    header #promo-nortenas .contenedor .cont-texto {
        height: auto;
    }

    header #promo-nortenas .contenedor .cont-imagenes {
        left: -18px;
    }

    header #promo-nortenas .contenedor .cont-imagenes .empanadas {
        bottom: 0;
        right: 0;
    }

    header #promo-nortenas .contenedor .cont-imagenes .cajas.saltenas {
        width: 205px;
        right: -133px;
        top: -25px;
    }

    header #promo-nortenas .contenedor .cont-imagenes .cajas.tucumanas {
        width: 155px;
        right: -82px;
        bottom: 0;
    }

    header #promo-nortenas .contenedor .cont-texto .texto .aclaracion {
        position: relative;
        bottom: 0;
        font-size: 15px;
        margin-bottom: 20px;
    }

    header #promo-nortenas .contenedor .cont-texto {
        justify-content: center;
        text-align: center;
    }

    header #promo-nortenas .contenedor .cont-texto .texto .titulo {
        font-size: 75px;
    }

    header #promo-nortenas .contenedor .cont-texto .texto .bajada {
        font-size: 25px;
        margin-bottom: 5px;
    }

    header #promocion .contenedor>img {
        margin-right: 0;
        width: 265px;
    }

    header #promocion .contenedor .cont-texto .precio>img {
        margin: 15px 0;
    }

    header #promocion .contenedor .cont-texto {
        flex-direction: column;
    }

    header #cajita-rio-parana {
        background-size: cover;
    }

    header #cajita-rio-parana .contenedor {
        flex-direction: column-reverse;
        height: auto;
        padding: 0;
    }

    header #cajita-rio-parana .contenedor>img {
        width: 420px;
        height: 178px;
        top: 0;
    }

    header #cajita-rio-parana .contenedor .cont-texto {
        margin-bottom: 60px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .titulo {
        font-size: 88px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .bajada {
        font-size: 40px;
    }

    header #cajitas-premium .contenedor {
        height: auto;
        padding: 0;
    }

    header #cajitas-premium .contenedor>img {
        width: 490px;
        height: 209px;
    }

    header #cajitas-premium .contenedor .titulo {
        margin-bottom: 60px;
    }

    header #cajita-criolla .contenedor {
        flex-direction: column-reverse;
    }

    header #cajita-criolla .contenedor>img {
        height: 266px;
        width: 430px;
        top: 10px;
        margin: 0;
        left: 20px;
    }

    header #cajita-criolla .contenedor .cont-texto {
        padding: 0;
        margin-bottom: 10px;
    }

    header #cajita-criolla .contenedor .cont-texto .nueva {
        font-size: 40px;
    }

    header #cajita-criolla .contenedor .cont-texto .titulo {
        font-size: 100px;
    }

    header #cajita-criolla .contenedor .cont-texto .bajada {
        font-size: 45px;
        width: 500px;
    }

    header #promo-nortena .contenedor>img {
        position: relative;
        right: 15px;
    }

    header #promo-nortena .contenedor .cont-texto .titulo {
        font-size: 100px;
    }

    header #promo-nortena .contenedor .cont-texto .bajada {
        font-size: 50px;
        width: 430px;
    }

    header #promo-nortena .contenedor .cont-texto .incluye {
        font-size: 22px;
    }

    header #promo-cuatro-cajitas .contenedor {
        flex-direction: column-reverse;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen {
        top: 0;
        margin-left: -30px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-texto .titulo {
        font-size: 108px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-texto .bajada {
        font-size: 35px;
        width: 435px;
    }
}

@media (max-width: 600px) {
    header #fecha-promo-saltenias .contenedor .arriba-titulo {
        font-size: 60px;
    }

    header #fecha-promo-saltenias .contenedor .titulo {
        font-size: 69px;
    }

    header #promo-saltenias .contenedor .titulo {
        font-size: 55px;
    }

    header #promo-saltenias .contenedor .titulo>span {
        font-size: 65px;
    }

    header #promo-saltenias .contenedor .texto-descuento {
        font-size: 35px;
    }

    header #promo-saltenias .contenedor .cont-codigo {
        font-size: 60px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo:before,
    header #fecha-promo-saltenias .contenedor .arriba-titulo:after {
        width: 60px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo:before {
        left: -65px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo:after {
        right: -65px;
    }

    section#lista-productos .contenedor .categorias .categoria .items .item {
        flex-direction: column-reverse;
        align-items: center;
        height: auto;
        width: 330px;
        margin: 15px 0;
    }

    header #franui .contenedor .franui {
        width: 180px;
        height: 160px;
        z-index: 1;
    }

    header #burger .contenedor>img {
        width: 300px;
        height: 220px;
    }

    header #burger .contenedor .cont-texto .titulo {
        font-size: 60px;
    }

    header #burger .contenedor .cont-texto .sabores {
        font-size: 26px;
        width: 300px;
        max-width: 100%;
    }

    header #burger .contenedor .cont-texto .texto {
        width: 300px;
        max-width: 100%;
    }

    header #vg-bp .contenedor .cont-texto .gustos .vg {
        margin-right: 30px;
    }

    header #vg-bp .contenedor .cont-texto .gustos>div {
        width: auto;
    }

    header #vg-bp .contenedor .cont-texto .gustos>div .iniciales {
        font-size: 96px;
    }

    header #vg-bp .contenedor .cont-texto .gustos>div .nombre {
        font-size: 26px;
    }

    header #vg-bp .contenedor .cont-texto .gustos>div .descipcion {
        font-size: 20px;
    }

    header #vg-bp .contenedor>img {
        bottom: 50px;
    }

    header #vg-bp .contenedor .der {
        width: 260px;
        height: 192px;
        right: -70px;
    }

    header #vg-bp .contenedor .izq {
        width: 260px;
        height: 192px;
        left: -100px;
    }

    header #promo-mayo .contenedor {
        padding-top: 55px;
    }

    header #promo-mayo .contenedor .empanadas {
        width: 100%;
        height: auto;
        right: -5%;
        max-width: initial;
        position: absolute;
    }

    header #promo-mayo .contenedor .cont-texto .cont-precio .precio-tachado {
        position: relative;
        left: 0;
        margin-right: 15px;
    }

    header #promo-mayo .contenedor .cont-texto .texto .titulo {
        font-size: 75px;
    }

    header #promo-mayo .contenedor .cont-texto .texto .texto-promo {
        width: 225px;
    }

    header #promo-mayo .contenedor .cont-texto .texto .incluye {
        font-size: 22px;
    }

    header #cajita-rio-parana .contenedor>img {
        width: 325px;
        height: 138px;
    }

    header #cajitas-premium .contenedor>img {
        width: 320px;
        height: 198px;
    }

    header #cajitas-premium .contenedor .titulo {
        font-size: 82px;
    }

    header #cajita-criolla .contenedor .cont-texto .bajada {
        font-size: 30px;
        width: 380px;
    }

    header #promo-nortena .contenedor>img {
        width: 392px;
        height: 214.5px;
        bottom: -7px;
    }

    header #promo-nortena .contenedor .cont-texto .titulo {
        font-size: 95px;
    }

    header #promo-nortena .contenedor .cont-texto .bajada {
        font-size: 34px;
    }

    header #promo-nortena .contenedor .cont-texto .incluye {
        font-size: 20px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen {
        margin-left: -55px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .cajitas {
        width: 330px;
        height: 169px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-imagen .productos {
        bottom: 15px;
        right: -66px;
        width: 110px;
        height: 111px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-texto .titulo {
        font-size: 85px;
    }

    header #promo-cuatro-cajitas .contenedor .cont-texto .bajada {
        font-size: 28px;
        width: 330px;
    }
}

@media (max-width: 500px) {
    header #fecha-promo-saltenias .contenedor .cont-fecha {
        font-size: 30px;
    }

    header #fecha-promo-saltenias .contenedor .titulo {
        font-size: 52px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo {
        font-size: 50px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo:before,
    header #fecha-promo-saltenias .contenedor .arriba-titulo:after {
        width: 40px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo:before {
        left: -45px;
    }

    header #fecha-promo-saltenias .contenedor .arriba-titulo:after {
        right: -45px;
    }

    header #promo-saltenias .contenedor {
        padding-top: 55px;
    }

    header #promo-saltenias .contenedor .titulo {
        font-size: 43px;
    }

    header #promo-saltenias .contenedor .titulo>span {
        font-size: 50px;
    }

    header #promo-saltenias .contenedor .texto-descuento {
        font-size: 30px;
    }

    header #promo-saltenias .contenedor .cont-codigo {
        font-size: 55px;
    }

    header #promo-saltenias .contenedor .cont-codigo .logo {
        height: 78px;
        width: 75px;
        left: -53px;
    }

    header #promo-saltenias .contenedor .imagen-empanada {
        width: 442px;
        height: 242px;
    }

    header #promo-mayo .contenedor {
        padding-top: 80px;
    }

    header #promo-copa .recuadro .empanada {
        right: -70px;
    }

    header #promo-copa .recuadro .copa {
        left: 0;
    }

    header #cajita-tucumana .contenedor .cont-texto .descripcion {
        font-size: 25px;
    }

    header #cajita-tucumana .contenedor .cont-texto .titulo {
        font-size: 46px;
    }

    header #cajita-tucumana .contenedor .cont-texto .nuevo-sabor {
        font-size: 37px;
    }

    header #cajita-tucumana .contenedor .cont-texto {
        padding-top: 35px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .titulo {
        font-size: 70px;
    }

    header #cajita-rio-parana .contenedor .cont-texto .bajada {
        font-size: 35px;
    }
}/* --- Page: ../components/menu-categorias.css --- */
section#categorias .contenedor {
    flex-direction: row;
}

section#categorias .cont-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 5px;
    padding: 5px;
    transition: all .3s linear;
}

section#categorias .item-categoria {
    font-size: 22px;
    padding: 8px 15px;
    color: #ffffff;
    cursor: pointer;
    transition: all .3s linear;
    border-radius: 5px;
    font-family: Big Noodle, Arial;
    text-decoration: none;
}

section#categorias .item-categoria:hover {
    color: #000000;
    background: #ffffff;
}/* --- Page: ../components/card-producto.css --- */
section#lista-productos {
    padding: 0 0 100px 0;
}

section#lista-productos .titulo {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: Big Noodle, Arial;
}

section#lista-productos .titulo-secundario {
    margin-bottom: 30px;
    font-weight: 400;
    font-family: Big Noodle, Arial;
    font-size: 30px;
}

section#lista-productos .lista-producto {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

section#lista-productos .lista-producto .card-producto {
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

section#lista-productos .card-producto .cont-imagen {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 100%;
    overflow: hidden;
}

section#lista-productos .card-producto .cont-imagen img {
    width: 100%;
}

section#lista-productos .card-producto .contenido {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
    flex-grow: 1;
}

section#lista-productos .card-producto .cont-texto {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    flex-grow: 1;
}

section#lista-productos .card-producto .nombre {
    font-size: 22px;
    font-weight: 400;
    font-family: Big Noodle, Arial;
}

section#lista-productos .card-producto .descripcion {
    font-size: 16px;
    font-weight: 300;
}

section#lista-productos .card-producto .cont-precios-rel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 5px;
}

section#lista-productos .card-producto .precio-rel {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 48px;
    background-color: #eaeaea;
    border-radius: 5px;
    gap: 5px;
    cursor: pointer;
    transition: all .1s linear;
    box-sizing: border-box;
}

section#lista-productos .card-producto .precio-rel.sin-relacionados {
    background-color: transparent;
    width: 100%;
}

section#lista-productos .card-producto .precio-rel.selected {
    border: 2px solid #d02525;
    background-color: rgba(208, 37, 37, .1);
}

section#lista-productos .card-producto .precio-rel .etiqueta {
    font-size: 14px;
    font-weight: 300;
}

section#lista-productos .card-producto .precio-rel .cont-precio {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

section#lista-productos .card-producto .precio-rel.sin-relacionados .cont-precio {
    flex-direction: column;
}

section#lista-productos .card-producto .precio-rel .precio-tachado {
    font-size: 12px;
    color: #5c5c5c;
    text-decoration: line-through;
    line-height: 1;
    margin-bottom: -2px;
}

section#lista-productos .card-producto .precio-rel.sin-relacionados .precio-tachado {
    font-size: 14px;
}

section#lista-productos .card-producto .precio-rel .precio-venta {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

section#lista-productos .card-producto .precio-rel.sin-relacionados .precio-venta {
    font-size: 20px;
}

section#lista-productos .card-producto .boton-agergar {
    width: 100%;
    font-family: 'Neusa';
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    height: 40px;
    background-color: #1a1919;
    border-radius: 5px;
    padding-top: 5px;
    cursor: pointer;
    transition: all .15s linear;
}

section#lista-productos .card-producto .boton-agergar:active {
    transform: scale(0.98);
}

section#lista-productos .card-producto .badge-promo {
    color: #000000;
    background-color: yellow;
    padding: 8px 5px 5px 5px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Neusa';
    font-weight: 600;
}/* --- Page: ../components/modal-configuracion-producto.css --- */
.modal[data-modal="config-pedido"] .contenido-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal[data-modal="config-pedido"] .contenido-modal .titulo {
    font-family: Big Noodle, Arial;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 400;
}

.modal[data-modal="config-pedido"] .contenido-modal .bajada {
    font-family: 'Neusa';
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-titulo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: 'Neusa';
    margin-bottom: 5px;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-titulo .titulo-grupo {
    font-weight: 500;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-radio {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 0;
    border-top: 2px solid #f4f4f4;
    border-bottom: 2px solid #f4f4f4;
}

.modal[data-modal="config-pedido"] .contenido-modal .radios {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 5px;
}

.modal[data-modal="config-pedido"] .contenido-modal .radios .radio {
    padding: 10px 18px;
    border: 1.5px solid #eeeeee;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #fdfdfd;
    color: #555;
    font-family: 'Neusa';
    letter-spacing: 1px;
}

.modal[data-modal="config-pedido"] .contenido-modal .radios .radio.selected {
    color: #ffffff;
    background-color: #1a1919;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-botones {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-botones .agregar {
    width: 100%;
    height: 50px;
    border: none;
    background-color: #1a1919;
    color: #ffffff;
    border-radius: 8px;
    font-family: 'Neusa';
    font-size: 20px;
    letter-spacing: 1px;
    padding-top: 8px;
    cursor: pointer;
    transition: all .15s linear;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-botones .agregar.disabled {
    background-color: #b6b5b5;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-botones .cancelar {
    background: none;
    border: none;
    color: #aaaaaa;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-ingredientes {
    width: 100%;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-number {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 0;
    border-top: 2px solid #f4f4f4;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-number .numbers {
    width: 100%;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-number .number {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-number .number .nombre-ingrediente {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: 'Neusa';
    font-weight: 300;
    font-size: 18px;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-number .number .selector-cantidad {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-number .number .selector-cantidad .cantidad-ingrediente {
    font-family: 'Neusa';
    font-size: 18px;
    position: relative;
    top: 2px;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-number .number .selector-cantidad .menos,
.modal[data-modal="config-pedido"] .contenido-modal .cont-number .number .selector-cantidad .mas {
    border-radius: 100%;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 38px;
    height: 38px;
    font-weight: 700;
    box-sizing: border-box;
    cursor: pointer;
}

.modal[data-modal="config-pedido"] .contenido-modal .cont-number .number .selector-cantidad .menos .material-icons,
.modal[data-modal="config-pedido"] .contenido-modal .cont-number .number .selector-cantidad .mas .material-icons {
    font-size: 20px;
}/* --- Page: ../components/widget-finalizar-compra.css --- */
:root {
    --negro: #1a1a1a;
    --gris-fondo: #f4f4f4;
    --gris-claro: #f8f9fa;
    --gris-borde: #dddddd;
    --gris-texto: #666;
    --accent: #ffcc00;
    --exito: #27ae60;
    --error: #e74c3c;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: var(--gris-fondo);
    color: var(--negro);
}

/* --- BARRA INFERIOR (DISPARADOR) --- */
.barra-carrito-fija {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
    background: var(--negro);
    color: #fff;
    border-radius: 50px;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-family: 'Neusa';
    border: 2px solid #ffffff;
}

.carrito-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cant-badge {
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    background-color: #db2727;
    padding: 3px 2px 0px 2px;
}

.carrito-info strong {
    padding-top: 2px;
}

.carrito-total {
    font-size: 20px;
    position: relative;
    top: 2px;
}

/* --- PANEL CHECKOUT --- */
.panel-checkout {
    position: fixed;
    top: 100%;
    /* Oculto inicialmente */
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    font-family: 'Neusa';
}

.panel-checkout.open {
    top: 0;
}

.checkout-centrado {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

/* --- CABECERA --- */
.header-checkout {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gris-borde);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.btn-cerrar {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.header-checkout h2 {
    margin: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    top: 4px;
}

/* --- SECCIONES --- */
.cuerpo-checkout {
    padding: 20px;
    flex: 1;
}

.seccion {
    margin-bottom: 30px;
}

.seccion-titulo {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gris-texto);
    margin-bottom: 15px;
    display: block;
    border-bottom: 1px solid var(--gris-claro);
    padding-bottom: 5px;
}

/* PRODUCTOS */
.item-carrito {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.item-fila {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-info {
    font-weight: 600;
    font-size: 16px;
    margin-right: 20px;
}

.item-precio-eliminar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-detalles {
    font-size: 0.85rem;
    color: var(--gris-texto);
    margin-top: 5px;
    padding-left: 5px;
    line-height: 1.4;
}

.btn-eliminar {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
}

.btn-eliminar .material-icons {
    font-size: 15px;
}

/* Contenedor para alinear los dos precios */
.item-precio-eliminar .precios-contenedor {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.precio-tachado {
    font-size: 0.85rem;
    color: #a0a0a0;
    text-decoration: line-through;
    line-height: 1;
    margin-bottom: 2px;
    font-weight: 400;
}

.txt-precio {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

/* CUPÓN */
.cupon-group {
    display: flex;
    gap: 10px;
}

.input-text {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gris-borde);
    border-radius: 10px;
    font-size: 1rem;
    box-sizing: border-box;
    outline: none;
}

.btn-accion {
    background: var(--negro);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

/* ENTREGA */
.selector-tabs {
    display: flex;
    background: var(--gris-claro);
    padding: 5px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.tab {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.tab.active {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* GRID DE PAGOS (CARDS) */
.grid-pagos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pago-card {
    border: 2px solid var(--gris-borde);
    border-radius: 15px;
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.pago-card i {
    font-size: 1.8rem;
    color: var(--gris-texto);
}

.pago-card span {
    font-size: 15px;
    font-weight: 400;
}

.pago-card.active {
    border-color: var(--negro);
    background: var(--gris-claro);
}

.pago-card.active i {
    color: var(--negro);
}

/* --- FOOTER --- */
.checkout-footer {
    padding: 20px;
    border-top: 1px solid var(--gris-borde);
    position: sticky;
    bottom: 0;
    background: #fff;
}

.fila-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.btn-confirmar {
    width: 100%;
    background: var(--negro);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* --- CONTENEDOR DEL DESGLOSE --- */
#checkout-desglose-final {
    padding: 10px 0;
    margin-bottom: 10px;
}

.fila-resumen {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #444;
    margin-bottom: 4px;
    font-weight: 300;
    letter-spacing: 1px;
}

.txt-verde {
    color: #27ae60;
    font-weight: 400;
}

/* --- FILA DEL TOTAL (La que tiene el $ 38.680) --- */
.fila-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px dashed #ccc;
    /* Línea de separación */
    margin-bottom: 15px;
}

.fila-total span:first-child {
    font-size: 20px;
    font-weight: 800;
    color: #000;
}

#checkout-total-monto {
    font-size: 22px;
    font-weight: 900;
    color: #000;
}

/* --- BOTÓN CONFIRMAR (Ancho completo y estilizado) --- */
.btn-confirmar-pedido {
    width: 100%;
    /* Para que ocupe todo el ancho */
    background: #000;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-confirmar-pedido:hover {
    background: #333;
}

/* Icono del botón */
.btn-confirmar-pedido i {
    font-size: 20px;
}

.btn-quitar-cupon {
    background: none;
    border: none;
    cursor: pointer;
}

.pac-container {
    z-index: 10000 !important;
}

.pac-item {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.input-group-direccion {
    display: flex;
    gap: 10px;
    width: 100%;
}

.contenedor-direccion {
    flex: 3;
    position: relative;
}

.input-text.extra-addr {
    flex: 1;
}

.cont-input-checkout {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cont-input-checkout label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.input-con-icono {
    position: relative;
    display: flex;
    align-items: center;
}

.input-con-icono i {
    position: absolute;
    left: 10px;
    color: #888;
    font-size: 20px;
}

.input-con-icono .input-text {
    padding-left: 35px;
}

textarea.input-text {
    padding: 10px;
    resize: none;
    font-family: inherit;
}

.ayuda-input {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

#seccion-detalles-pago {
    padding: 20px;
}

#msj-validacion-direccion {
    font-size: 12px;
    display: none;
    position: absolute;
    bottom: -15px;
    left: 4px;
}

@media (max-width: 768px) {
    #checkout-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: white;
        z-index: 9999;
        /* Empezamos abajo de todo (oculto) */
        transform: translateY(100%);
        transition: transform 0.3s ease-out;
        display: block !important;
        /* El div existe, pero está fuera de pantalla */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Clase para cuando el panel está abierto */
    #checkout-panel.open {
        transform: translateY(0);
    }

    .checkout-centrado {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .checkout-footer {
        margin-top: auto;
        padding: 20px 15px;
        background: #fff;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 480px) {
    .input-group-direccion {
        flex-direction: column;
    }
}/* --- Page: la-orden-barrio-martin.css --- */
