@charset "UTF-8";
@font-face {
  font-family: "Rubik";
  src: url("./fonts/Rubik.ttf") format("opentype");
}
:root {
  --white: #fff;
  --black: #000000;
  --grey: rgba(0, 0, 0, 0.55);
  --primary: #9C2926;
  --background: #ffaeae;
  --max-size: 420px;
}

* {
  box-sizing: border-box;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

html {
  background: white;
}

body {
  min-height: 100dvh;
  max-width: var(--max-size);
  margin-inline: auto;
  font-family: "Rubik";
  font-size: 12px;
  color: var(--black);
}

h1, h2, h3, h4, h5 {
  text-wrap: balance;
}

h2 {
  font-size: 26px;
  font-weight: 500;
  font-style: normal;
}

h4 {
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  color: var(--grey);
}

p {
  text-wrap: pretty;
  margin-inline: auto;
}

ul {
  text-decoration: none;
  padding: 0;
}

a {
  text-decoration: none;
}

/*Negrita*/
.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

/*Tamaños*/
.ft-9 {
  font-size: 9px;
}

.ft-10 {
  font-size: 10px !important;
}

.ft-12 {
  font-size: 12px !important;
}

.ft-14 {
  font-size: 14px !important;
}

/*Colores*/
.text-color {
  color: var(--primary);
}

/*Distribuciones*/
.start-x, .start-y, .center-x, .center-y,
.between-x, .between-y, .end-y, .end-x {
  display: flex;
  flex-wrap: wrap;
}

.start-y, .center-y, .between-y, .end-y {
  flex-direction: column;
}

.start-x, .start-y {
  justify-content: start;
  align-items: center;
}

.center-x, .center-y {
  justify-content: center;
  align-items: center;
}

.between-x, .between-y {
  justify-content: space-between;
  align-items: center;
}

.end-y, .end-x {
  justify-content: end;
}

/*Imagen de fondo*/
.imagen-fondo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/*Estilos*/
main:not(.form-search) input[type=text]:not(.cantidad):focus {
  border: 1px solid var(--primary) !important;
  box-shadow: 0 0 5px var(--primary) !important;
}

input[type=email]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=password]:focus {
  border: 1px solid var(--primary) !important;
  box-shadow: 0 0 5px var(--primary) !important;
}

#input-pass, #reinput-pass {
  position: absolute;
  width: 16px;
  right: 20px;
  cursor: pointer;
  right: 10px;
}

#mensaje {
  height: 80px;
  font-size: 12px;
}
#mensaje:focus {
  box-shadow: none !important;
  border-color: var(--primary);
}

.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--primary);
  padding: 2px 0.4rem;
  font-weight: 600;
  border-radius: 0.5rem;
  font-size: 12px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn-base2 {
  display: flex;
  height: 48px;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 500;
  transition: all 0.5s ease;
  font-size: 14px;
}

/*Header*/
header {
  color: var(--white);
  align-items: center;
  position: fixed;
  z-index: 10;
  width: 100%;
  max-width: var(--max-size);
  z-index: 99;
}

.header-principal .form-search {
  width: 100%;
  background-color: rgb(239, 240, 246);
  height: 32px;
  padding-inline: 15px;
  display: flex;
  font-size: 14px;
  border-radius: 30px;
}
.header-principal .form-search i {
  font-size: 1rem;
  color: #7E7E7E;
  margin-right: 0.5rem;
}
.header-principal .form-search input {
  height: 32px;
  padding: 10px;
  background-color: transparent;
}
.header-principal .form-search input::-moz-placeholder {
  color: #7E7E7E;
  text-align: center;
}
.header-principal .form-search input::placeholder {
  color: #7E7E7E;
  text-align: center;
}

.pt-principal {
  padding-top: 120px;
  padding-bottom: 80px;
}

main {
  position: relative;
  width: 100%;
  max-width: 90%;
  margin-inline: auto;
  min-height: 100dvh;
}

.logo {
  width: 80px;
  margin-bottom: 0.5rem;
}

/*Main*/
section {
  margin: 2.5rem 0;
}

nav {
  max-width: var(--max-size);
  display: flex;
  height: 54px;
  width: 100%;
  padding: 0px 1rem;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  position: fixed;
  z-index: 1;
  bottom: 0;
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(0, 0, 0, 0);
  background: white;
  box-shadow: 0 -20px 25px -5px rgba(0, 0, 0, 0.1), 0 -8px 10px -6px rgba(0, 0, 0, 0.1);
}
nav a:hover {
  color: var(--primary);
}
nav a:hover i {
  color: var(--primary);
}
nav .btn-carrito {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
  cursor: pointer;
  box-shadow: 1px 1px 5px var(--primary);
}
nav .btn-carrito img {
  width: 38px;
  height: 41px;
  flex-shrink: 0;
}
nav a {
  color: #636363;
  width: 50px;
  font-weight: 800;
  font-size: 21px;
  position: relative;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}
nav a span {
  font-weight: 400;
  font-size: 12px;
}
nav a i {
  color: var(--black);
  transition: all 0.5s ease;
  margin-bottom: 0.2rem;
}
nav a.active {
  color: var(--primary);
}
nav a.active i {
  color: var(--primary);
}

.oferta {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  max-width: 98%;
  margin-inline: auto;
  height: 137px;
  padding: 10px 15px;
  flex-shrink: 0;
  border-radius: 20px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.oferta .info {
  position: relative;
  z-index: 1;
}
.oferta h3 {
  color: #FFFBFB;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: end;
  margin-left: 5px;
}
.oferta h3 span {
  color: var(--primary);
  background-color: white;
  margin-left: 5px;
  padding-inline: 5px;
  border-radius: 3px;
}
.oferta h4 {
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}
.oferta p {
  font-size: 12px;
  color: var(--white);
  margin-bottom: 0;
}
.oferta p span {
  margin-right: 2px;
  font-size: 16px;
  font-weight: 700;
}
.oferta .imagen-fondo {
  z-index: 1;
  filter: brightness(0.85);
}
.oferta.izquierda {
  justify-content: end;
}
.oferta.izquierda h3, .oferta.izquierda h4, .oferta.izquierda p {
  text-align: end;
}
.oferta.izquierda h3 {
  justify-content: end;
}

.close {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  cursor: pointer;
}

.banners-section {
  font-size: 14px;
  margin-bottom: 0;
  position: relative;
}
.banners-section .banners-carrusel {
  margin-top: 20px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 1.5rem;
}
.banners-section .banners-carrusel img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.banners-section .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.banners-section .swiper-pagination-bullet-active {
  background-color: white;
  opacity: 1;
}
.banners-section .swiper-pagination {
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  margin-inline: auto;
  gap: 0px;
}

.categoria-carrusel {
  margin-top: 20px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}
.categoria-carrusel .swiper-slide {
  height: 110px;
  padding: 5px 0;
}

.categorias-section {
  margin-bottom: 1rem;
}

.destacados-section {
  margin-top: 1rem;
}

.categoria-carrusel .swiper-slide .categoria {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s ease;
  border-radius: 0.5rem;
  height: 100%;
  overflow: hidden;
}
.categoria-carrusel .swiper-slide .categoria .ct-categoria {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
}
.categoria-carrusel .swiper-slide .categoria .ct-categoria img {
  height: 35px;
  width: auto;
}
.categoria-carrusel .swiper-slide .categoria span {
  margin-top: 5px;
  color: #363636;
  transition: all 0.5s ease;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: -0.1px;
  max-width: 85px;
  text-align: center;
}
.categoria-carrusel .swiper-slide .categoria:hover .ct-categoria, .categoria-carrusel .swiper-slide .categoria.active .ct-categoria {
  background-color: var(--primary);
}
.categoria-carrusel .swiper-slide .categoria:hover img, .categoria-carrusel .swiper-slide .categoria.active img {
  filter: brightness(1000%);
}

.comida {
  flex-shrink: 0;
  border-radius: 1rem;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(239, 240, 246);
  transition: all 0.5s ease;
}
.comida .ct-imagen {
  width: 110px;
  flex-shrink: 0;
  overflow: hidden;
  flex-shrink: 0;
  align-items: stretch;
  display: flex;
}
.comida .ct-imagen img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
}
.comida .info {
  padding: 12px 12px 15px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.comida .info .between-x {
  width: 100%;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.comida h3 {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 18.2px */
  text-transform: uppercase;
  padding-bottom: 0.4rem;
}
.comida p {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 10px;
  color: #6E7191;
  width: 100%;
  flex-wrap: wrap;
}
.comida .precio {
  margin: 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
}
.comida .add {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary);
  background-color: transparent;
}
.comida .add i {
  color: var(--primary);
  margin-top: 1px;
  font-size: 15px;
}
.comida:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.col-6 .comida, .comida-carrusel .comida {
  flex-direction: column;
}
.col-6 .comida .info h3, .comida-carrusel .comida .info h3 {
  margin-bottom: 4px;
}
.col-6 .comida .info p, .comida-carrusel .comida .info p {
  margin-bottom: 4px;
}
.col-6 .comida .info .precio, .comida-carrusel .comida .info .precio {
  margin-bottom: 0;
}
.col-6 .comida .ct-imagen, .comida-carrusel .comida .ct-imagen {
  width: 100%;
  height: 120px;
}
.col-6 .comida .ct-imagen img, .comida-carrusel .comida .ct-imagen img {
  width: 100%;
  height: auto;
}

.nosotros-section {
  margin-inline: 3%;
  font-size: 13px;
}
.nosotros-section li {
  margin-left: 1rem;
}
.nosotros-section h2 {
  font-size: 24px;
  color: var(--primary);
}

.vistas .vista {
  margin-left: 0.5rem;
  color: #767676;
  margin-bottom: 0.75rem;
  font-size: 15px;
  cursor: pointer;
}
.vistas .vista.selected {
  color: var(--primary);
}

.login-section {
  padding-top: 0.5rem;
}
.login-section input[type=password], .login-section input[type=text] {
  padding-right: 2rem;
}
.login-section h2 {
  font-size: 24px;
}
.login-section a {
  color: var(--primary);
  font-size: 14px;
}
.login-section span, .login-section label {
  font-size: 14px;
}

.modal {
  z-index: 99999;
  height: 100dvh;
  overflow: hidden;
}

.modal-content {
  border: 0;
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem;
  max-height: 95dvh;
  overflow: hidden;
}
.modal-content .producto {
  flex-shrink: 0;
  display: flex;
  align-items: start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-bottom: 0.5rem;
}
.modal-content .producto .ct-imagen {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  border-radius: 8px;
}
.modal-content .producto .ct-imagen img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.modal-content .producto .info {
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.modal-content .producto .info .between-x {
  width: 100%;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.modal-content .producto h3 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.modal-content .producto p {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0.25rem;
  color: #6E7191;
  width: 100%;
  flex-wrap: wrap;
}
.modal-content .producto .precio {
  margin: 0;
  font-size: 10px;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
}
.modal-content .producto .add {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary);
  background-color: transparent;
}
.modal-content .producto .add i {
  color: var(--primary);
  margin-top: 1px;
  font-size: 15px;
}
.modal-content label {
  font-size: 14px;
  font-weight: 500;
}
.modal-content .contenedor-cantidad {
  width: 70px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 60px;
  padding: 0;
  background-color: white;
  padding-inline: 4px;
}
.modal-content .contenedor-cantidad span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal-content .contenedor-cantidad input {
  text-align: center;
  width: 25px;
  border: none !important;
  background-color: transparent;
  font-size: 14px;
}
.modal-content .contenedor-cantidad input:focus {
  box-shadow: none !important;
}
.modal-content .form-producto {
  overflow: hidden;
}
.modal-content .adicional {
  flex-shrink: 0;
  border-radius: 1rem;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgb(239, 240, 246);
  padding-inline: 0;
  margin-inline: 0.25rem;
  zoom: 0.8;
}
.modal-content .adicional .ct-imagen {
  width: 68px;
  flex-shrink: 0;
  overflow: hidden;
  flex-shrink: 0;
  align-items: stretch;
  display: flex;
}
.modal-content .adicional .ct-imagen img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
}
.modal-content .adicional .info {
  padding: 0.5rem 0.5rem 0.5rem 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.modal-content .adicional .info .between-x {
  width: 100%;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.modal-content .adicional h3 {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0;
}
.modal-content .adicional .precio {
  margin: 0;
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
}
.modal-content .adicional .add {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary);
  background-color: transparent;
}
.modal-content .adicional .add i {
  color: var(--primary);
  margin-top: 1px;
  font-size: 15px;
}
.modal-content .adicional .end-x {
  width: 100%;
}
.modal-content .adicional .contenedor-cantidad {
  margin-top: 4px;
  width: 70px !important;
}
.modal-content .adicional .contenedor-cantidad input {
  margin-top: 2px;
}

.modal-dialog {
  width: 700px;
  height: 100dvh;
  max-width: 90%;
  margin-inline: auto;
}

.btn-close:focus {
  box-shadow: none;
}

.carrito-section {
  margin-top: 15px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100dvh - 175px);
  position: relative;
}
.carrito-section .cerrar {
  position: absolute;
  right: 0;
  top: -5px;
  color: var(--white);
  border-radius: 50%;
  background-color: rgb(183, 26, 26);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.carrito-section .cerrar i {
  font-weight: 400;
  font-size: 0.8rem;
}
.carrito-section h2 {
  margin-bottom: 1.5rem;
}
.carrito-section .producto {
  flex-shrink: 0;
  display: flex;
  align-items: start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgb(239, 240, 246);
}
.carrito-section .producto .ct-imagen {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  border-radius: 8px;
}
.carrito-section .producto .ct-imagen img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.carrito-section .producto .info {
  padding: 0.5rem 0.5rem 0rem 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  height: 74px !important;
}
.carrito-section .producto .info .between-x {
  width: 100%;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.carrito-section .producto h3 {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
}
.carrito-section .producto .precio {
  margin: 0;
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
}
.carrito-section .producto .add {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary);
  background-color: transparent;
}
.carrito-section .producto .add i {
  color: var(--primary);
  margin-top: 1px;
  font-size: 15px;
}
.carrito-section .producto .end-x {
  width: 100%;
}
.carrito-section .producto .contenedor-cantidad {
  width: 70px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 60px;
  padding: 0;
  background-color: white;
  padding-inline: 4px;
}
.carrito-section .producto .contenedor-cantidad span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.carrito-section .producto .contenedor-cantidad input {
  text-align: center;
  width: 25px;
  border: none !important;
  background-color: transparent;
  font-size: 14px;
}
.carrito-section .producto .contenedor-cantidad input:focus {
  box-shadow: none !important;
}
.carrito-section .producto .contenedor-cantidad {
  margin-top: 4px;
  width: 70px !important;
}
.carrito-section .producto .contenedor-cantidad input {
  margin-top: 2px;
}
.carrito-section .total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(239, 240, 246);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.carrito-section .total p {
  margin: 0;
  font-size: 14px;
}
.carrito-section .total .cifra {
  color: rgb(183, 26, 26);
  font-weight: 600;
}

#ct-notificacion {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
  pointer-events: none;
}

#ct-notificacion .toast {
  pointer-events: auto;
  max-width: 90%;
  background-color: rgb(26, 183, 89);
  color: var(--white);
}

/*Ajustes*/
.header-principal {
  border-radius: 0 0 20px 20px;
  padding: 20px 5%;
  color: var(--primary);
  background-color: var(--white);
}
.header-principal a {
  color: var(--primary);
}
.header-principal.red {
  background-color: #9C2926;
  color: var(--white);
}
.header-principal.red a {
  color: var(--white);
}

.header-principal .between-x {
  height: 60px;
}

.header-principal #buscador {
  margin-inline: center;
  width: 100%;
}

.header-principal .soporte {
  display: flex;
  flex-direction: column;
}
.header-principal .soporte a {
  display: flex;
  align-items: center;
}
.header-principal .soporte a img {
  width: 18px;
  margin-right: 5px;
}

.notificacion {
  position: relative;
}
.notificacion .digito {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.2px;
  position: absolute;
  top: -8px;
  right: -3px;
}

.red .notificacion {
  position: relative;
}
.red .notificacion .digito {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #9C2926;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.2px;
  position: absolute;
  top: -8px;
  right: -3px;
}

.banners-section::after {
  content: "";
  position: absolute;
  top: -45px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 50px);
  background-color: #9C2926;
}

.col-12 .comida {
  max-height: 110px;
}
.col-12 .comida .ct-imagen img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
}
.col-12 .comida h3 {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 18.2px */
  text-transform: uppercase;
}
.col-12 .comida .precio {
  margin: 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
}

.comida-carrusel {
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}
.comida-carrusel .swiper-slide {
  margin-inline: 0.3rem;
  padding: 12px 0 32px 0;
}/*# sourceMappingURL=style.css.map */