*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

* {
  text-decoration: none;
  font-family: "CircularSTD", sans-serif;
  font-weight: 100;
  font-size: 0.938rem;
  line-height: 120%;
  color: #495879;
}

li {
  list-style: none;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.color-white {
  color: white;
}

.shadow {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.3);
}
.shadow-1 {
  box-shadow: 0px 4.492px 4.492px 0px rgba(0, 0, 0, 0.1);
}

.w-100 {
  width: 100%;
}
.w-full {
  width: 100vw;
}
.wh-100 {
  width: 100%;
  height: 100%;
}
.wh-full {
  width: 100vw;
  height: calc(100vh - 140px);
}

.h-100 {
  height: 100%;
}
.h-full {
  height: calc(100vh - 140px);
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}

.flex {
  display: flex;
}
.flex.col {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}
.flex.around {
  justify-content: space-around;
}
.flex.between {
  justify-content: space-between;
}
.flex.evenly {
  justify-content: space-evenly;
}
.flex-1 {
  flex: 1;
}
.flex.wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.gap {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-5 {
  gap: 5rem;
}

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

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

.end {
  justify-content: flex-end;
  align-items: flex-end;
}
.end-x {
  justify-content: flex-end;
}
.end-y {
  align-items: flex-end;
}

body {
  background-color: #f4f5f8;
}

main {
  margin-top: var(--header-h, 0px);
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
#overlay.active {
  opacity: 0.5;
  z-index: 90;
}

.hidden {
  display: none !important;
}

.opacity-0 {
  opacity: 0;
  visibility: hidden;
}

.contenedor {
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
}

section {
  width: 100%;
  height: 85vh;
  min-height: 40rem;
  padding: 2rem 0;
}

header {
  top: 0;
  left: 0;
  z-index: 10;
}
header #menu-overlay {
  display: none;
}
@media (max-width: 1024px) {
  header #menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  header #menu-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 9;
  }
}
header nav.superior {
  background-color: #fbfbfb;
  padding: 0.7rem 0;
  transition: all 0.3s ease;
  z-index: 2;
}
@media (max-width: 1024px) {
  header nav.superior .contenedor {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
    gap: 0.5rem;
  }
}
header nav.superior .contenedor picture {
  height: 2.5rem;
  width: auto;
  display: flex;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  header nav.superior .contenedor picture {
    grid-area: 1/1/2/2;
  }
}
header nav.superior .contenedor picture img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  height: 100%;
  width: 100%;
}
header nav.superior .contenedor .search-form {
  background-color: #e5f1f7;
  border-radius: 3rem;
  padding: 0.5rem 1rem;
  position: relative;
}
@media (max-width: 1024px) {
  header nav.superior .contenedor .search-form {
    grid-area: 2/1/3/3;
  }
}
header nav.superior .contenedor .search-form label input {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
}
header nav.superior .contenedor .search-form .search-suggestions {
  position: absolute;
  top: 110%;
  z-index: 1;
  max-height: 15rem;
  overflow-y: auto;
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1rem;
  left: 0;
}
header nav.superior .contenedor .search-form .search-suggestions-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
header nav.superior .contenedor .search-form .search-suggestions-list .search-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
header nav.superior .contenedor .search-form .search-suggestions-list .search-group h4 {
  font-family: "Exo", sans-serif;
  font-weight: bold;
}
header nav.superior .contenedor .search-form .search-suggestions-list .search-group a {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
}
header nav.superior .contenedor .search-form .search-suggestions-list .search-group a img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1024px) {
  header nav.superior .contenedor > ul {
    grid-area: 1/2/2/3;
  }
}
header nav.superior .contenedor > ul li a,
header nav.superior .contenedor > ul li button {
  position: relative;
}
header nav.superior .contenedor > ul li a span,
header nav.superior .contenedor > ul li button span {
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  header nav.superior .contenedor > ul li a span,
  header nav.superior .contenedor > ul li button span {
    display: none;
  }
}
header nav.superior .contenedor > ul li a span.cart-items-count,
header nav.superior .contenedor > ul li button span.cart-items-count {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  height: 1rem;
  padding: 2px;
  font-size: 0.5rem;
  color: #ffffff !important;
  border-radius: 50%;
  background-color: #1f9ad7;
  transform: translate(60%, -40%);
}
header nav.superior .contenedor > ul li a svg path,
header nav.superior .contenedor > ul li button svg path {
  transition: all 0.3s ease;
}
header nav.superior .contenedor > ul li a:hover span,
header nav.superior .contenedor > ul li button:hover span {
  color: #15253f;
}
header nav.superior .contenedor > ul li a:hover svg path,
header nav.superior .contenedor > ul li button:hover svg path {
  fill: #15253f;
}
header nav.superior .contenedor > ul li.btnBurguer {
  display: none;
}
@media (max-width: 1024px) {
  header nav.superior .contenedor > ul li.btnBurguer {
    display: block;
  }
}
@media (max-width: 1024px) {
  header nav.superior .contenedor > ul li.hide-mobile {
    display: none;
  }
}
header nav.inferior {
  background-color: #ffffff;
  padding: 0.7rem 0;
  box-shadow: 1px 20px 20px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  header nav.inferior {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 25rem;
    max-width: 95%;
    height: 45rem;
    max-height: 95%;
    z-index: 20;
    transform: translate(-50%, -160vh);
    background-color: #15253f;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 1rem;
    gap: 1rem;
  }
}
header nav.inferior * {
  font-size: 1.125rem;
  font-weight: normal;
}
header nav.inferior .closed-menu-nav,
header nav.inferior .tabs-menu-nav,
header nav.inferior .pedidos-menu-nav {
  display: none;
}
@media (max-width: 1024px) {
  header nav.inferior .closed-menu-nav,
  header nav.inferior .tabs-menu-nav,
  header nav.inferior .pedidos-menu-nav {
    display: flex;
  }
}
header nav.inferior .tabs-menu-nav li button {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #1f9ad7;
  font-size: 1.125rem;
  font-weight: 100;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
header nav.inferior .tabs-menu-nav li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav.inferior .tabs-menu-nav li button span {
  color: #1f9ad7;
  font-size: 1.125rem;
  font-weight: 100;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
header nav.inferior .tabs-menu-nav li button span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav.inferior .tabs-menu-nav li button svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
header nav.inferior .tabs-menu-nav li button svg path {
  fill: #1f9ad7;
  transition: all 0.3s ease;
}
header nav.inferior .tabs-menu-nav li button:hover, header nav.inferior .tabs-menu-nav li button.is-active {
  background-color: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  color: #ffffff;
}
header nav.inferior .tabs-menu-nav li button:hover::before, header nav.inferior .tabs-menu-nav li button.is-active::before {
  opacity: 1;
  z-index: 1;
}
header nav.inferior .tabs-menu-nav li button:hover span, header nav.inferior .tabs-menu-nav li button.is-active span {
  color: transparent;
}
header nav.inferior .tabs-menu-nav li button:hover span::before, header nav.inferior .tabs-menu-nav li button.is-active span::before {
  opacity: 1;
  color: #ffffff;
  font-weight: normal;
}
header nav.inferior .tabs-menu-nav li button:hover svg path, header nav.inferior .tabs-menu-nav li button.is-active svg path {
  fill: #ffffff;
}
@media (max-width: 780px) {
  header nav.inferior .tabs-menu-nav li button {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 1024px) {
  header nav.inferior .pedidos-menu-nav {
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    color: #14243e;
    font-size: 1.125rem;
    font-weight: normal;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  header nav.inferior .pedidos-menu-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    border-radius: 3rem;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
  }
  header nav.inferior .pedidos-menu-nav span {
    color: #14243e;
    font-size: 1.125rem;
    font-weight: normal;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
  }
  header nav.inferior .pedidos-menu-nav span::before {
    font-weight: normal;
    content: attr(data-title);
    position: absolute;
    font-size: 1.125rem;
    width: -moz-max-content;
    width: max-content;
    line-height: 1.2;
    opacity: 0;
    transition: all 0.3s ease;
  }
  header nav.inferior .pedidos-menu-nav svg {
    height: 1rem;
    width: 2rem;
    z-index: 2;
  }
  header nav.inferior .pedidos-menu-nav svg path {
    fill: #14243e;
    transition: all 0.3s ease;
  }
}
@media (max-width: 1024px) and (max-width: 780px) {
  header nav.inferior .pedidos-menu-nav {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor {
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    border: 2px solid #ffffff;
    border-radius: 1rem;
    padding: 1rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.0588235294);
    overflow-y: auto;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  header nav.inferior > .contenedor .tab-content {
    width: 100%;
  }
  header nav.inferior > .contenedor::-webkit-scrollbar {
    width: 0.5rem;
  }
  header nav.inferior > .contenedor::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.831372549);
    border-radius: 1rem;
  }
  header nav.inferior > .contenedor::-webkit-scrollbar-thumb {
    background: #14243e;
    border-radius: 1rem;
  }
  header nav.inferior > .contenedor::-webkit-scrollbar-thumb:hover {
    background: #14243e;
  }
}
header nav.inferior > .contenedor > div > button {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #495879;
  font-size: 1.125rem;
  font-weight: normal;
  background: transparent;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
header nav.inferior > .contenedor > div > button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #e7f4fc;
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav.inferior > .contenedor > div > button span {
  color: #495879;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
header nav.inferior > .contenedor > div > button span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav.inferior > .contenedor > div > button svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
header nav.inferior > .contenedor > div > button svg path {
  fill: #495879;
  transition: all 0.3s ease;
}
header nav.inferior > .contenedor > div > button:hover, header nav.inferior > .contenedor > div > button.active {
  background-color: #e7f4fc;
  color: #1f9ad7;
}
header nav.inferior > .contenedor > div > button:hover::before, header nav.inferior > .contenedor > div > button.active::before {
  opacity: 1;
  z-index: 1;
}
header nav.inferior > .contenedor > div > button:hover span, header nav.inferior > .contenedor > div > button.active span {
  color: transparent;
}
header nav.inferior > .contenedor > div > button:hover span::before, header nav.inferior > .contenedor > div > button.active span::before {
  opacity: 1;
  color: #1f9ad7;
  font-weight: normal;
}
header nav.inferior > .contenedor > div > button:hover svg path, header nav.inferior > .contenedor > div > button.active svg path {
  fill: #1f9ad7;
}
@media (max-width: 780px) {
  header nav.inferior > .contenedor > div > button {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > div > button {
    display: none;
  }
}
header nav.inferior > .contenedor > div .lista {
  background-color: #ffffff;
  padding: 0;
  max-height: 0;
  bottom: 1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease-in;
  box-shadow: 1px 20px 20px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > div .lista {
    background-color: transparent;
    box-shadow: none;
    overflow: visible;
    max-height: -moz-max-content;
    max-height: max-content;
    opacity: 1;
    bottom: auto;
    transform: none;
    position: relative;
  }
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > div .lista .contenedor {
    width: 100%;
    max-width: 100%;
  }
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #183d69;
  font-size: 1.125rem;
  font-weight: normal;
  background: transparent;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li a img {
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(4deg) brightness(110%) contrast(101%);
  }
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li span {
  color: #183d69;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li span::before {
  font-weight: bold;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li svg path {
  fill: #183d69;
  transition: all 0.3s ease;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:hover, header nav.inferior > .contenedor > div .lista .contenedor > ul > li.is-active {
  background-color: transparent;
  color: #183d69;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:hover::before, header nav.inferior > .contenedor > div .lista .contenedor > ul > li.is-active::before {
  opacity: 1;
  z-index: 1;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:hover span, header nav.inferior > .contenedor > div .lista .contenedor > ul > li.is-active span {
  color: transparent;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:hover span::before, header nav.inferior > .contenedor > div .lista .contenedor > ul > li.is-active span::before {
  opacity: 1;
  color: #183d69;
  font-weight: bold;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:hover svg path, header nav.inferior > .contenedor > div .lista .contenedor > ul > li.is-active svg path {
  fill: #183d69;
}
@media (max-width: 780px) {
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li {
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    color: #ffffff !important;
    font-size: 1.125rem;
    font-weight: 100 !important;
    background: transparent;
    position: relative;
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    border-radius: 3rem;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
  }
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li span {
    color: #ffffff !important;
    font-size: 1.125rem;
    font-weight: 100 !important;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
  }
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li span::before {
    font-weight: 100 !important;
    content: attr(data-title);
    position: absolute;
    font-size: 1.125rem;
    width: -moz-max-content;
    width: max-content;
    line-height: 1.2;
    opacity: 0;
    transition: all 0.3s ease;
  }
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li svg {
    height: 1rem;
    width: 2rem;
    z-index: 2;
  }
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li svg path {
    fill: #ffffff !important;
    transition: all 0.3s ease;
  }
}
@media (max-width: 1024px) and (max-width: 780px) {
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li a span::before {
    color: #ffffff !important;
    font-weight: 100 !important;
  }
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:last-child {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #1f9ad7 !important;
  font-size: 1.125rem;
  font-weight: 100 !important;
  background: transparent;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: underline;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:last-child span {
  color: #1f9ad7 !important;
  font-size: 1.125rem;
  font-weight: 100 !important;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:last-child span::before {
  font-weight: 100 !important;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:last-child svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
header nav.inferior > .contenedor > div .lista .contenedor > ul > li:last-child svg path {
  fill: #1f9ad7 !important;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  header nav.inferior > .contenedor > div .lista .contenedor > ul > li:last-child {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > div .lista .contenedor .sublistas {
    display: none;
  }
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista ul {
  grid-area: 1/1;
  -moz-column-count: 2;
       column-count: 2;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista ul li a {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #495879;
  font-size: 1.125rem;
  font-weight: normal;
  background: transparent;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista ul li a span {
  color: #495879;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista ul li a span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista ul li a svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista ul li a svg path {
  fill: #495879;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista ul li a {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista .listaImagen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  grid-area: span 2/2;
  height: -moz-fit-content;
  height: fit-content;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista .listaImagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background-color: #f7f7f7;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista > a {
  grid-area: 2/1;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista > a span {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista > a span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista > a svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista > a svg path {
  fill: #ffffff;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista > a {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
header nav.inferior > .contenedor > div .lista .contenedor .sublistas .sublista.is-active {
  display: grid;
}
header nav.inferior > .contenedor > div:hover > button {
  background-color: #e7f4fc;
  color: #1f9ad7;
}
header nav.inferior > .contenedor > div:hover > button svg path {
  fill: #1f9ad7;
}
header nav.inferior > .contenedor > div:hover > button span {
  color: #1f9ad7;
}
header nav.inferior > .contenedor > div:hover .lista {
  padding: 1rem 0;
  opacity: 1;
  max-height: 40rem;
  border-radius: 0 0 1rem 1rem;
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > div:hover .lista {
    padding: 0;
    max-height: -moz-max-content;
    max-height: max-content;
    overflow: visible;
    border-radius: none;
  }
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
header nav.inferior > .contenedor > ul li.responsive {
  display: none;
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > ul li.responsive {
    display: block;
  }
}
header nav.inferior > .contenedor > ul li a {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #495879;
  font-size: 1.125rem;
  font-weight: normal;
  background: transparent;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
header nav.inferior > .contenedor > ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #e7f4fc;
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav.inferior > .contenedor > ul li a span {
  color: #495879;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
header nav.inferior > .contenedor > ul li a span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav.inferior > .contenedor > ul li a svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
header nav.inferior > .contenedor > ul li a svg path {
  fill: #495879;
  transition: all 0.3s ease;
}
header nav.inferior > .contenedor > ul li a:hover, header nav.inferior > .contenedor > ul li a.active {
  background-color: #e7f4fc;
  color: #1f9ad7;
}
header nav.inferior > .contenedor > ul li a:hover::before, header nav.inferior > .contenedor > ul li a.active::before {
  opacity: 1;
  z-index: 1;
}
header nav.inferior > .contenedor > ul li a:hover span, header nav.inferior > .contenedor > ul li a.active span {
  color: transparent;
}
header nav.inferior > .contenedor > ul li a:hover span::before, header nav.inferior > .contenedor > ul li a.active span::before {
  opacity: 1;
  color: #1f9ad7;
  font-weight: normal;
}
header nav.inferior > .contenedor > ul li a:hover svg path, header nav.inferior > .contenedor > ul li a.active svg path {
  fill: #1f9ad7;
}
@media (max-width: 780px) {
  header nav.inferior > .contenedor > ul li a {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > ul li a {
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    color: #ffffff !important;
    font-size: 1.125rem;
    font-weight: 100;
    background: transparent;
    position: relative;
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  header nav.inferior > .contenedor > ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    border-radius: 3rem;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
  }
  header nav.inferior > .contenedor > ul li a span {
    color: #ffffff !important;
    font-size: 1.125rem;
    font-weight: 100;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
  }
  header nav.inferior > .contenedor > ul li a span::before {
    font-weight: 100;
    content: attr(data-title);
    position: absolute;
    font-size: 1.125rem;
    width: -moz-max-content;
    width: max-content;
    line-height: 1.2;
    opacity: 0;
    transition: all 0.3s ease;
  }
  header nav.inferior > .contenedor > ul li a svg {
    height: 1rem;
    width: 2rem;
    z-index: 2;
  }
  header nav.inferior > .contenedor > ul li a svg path {
    fill: #ffffff !important;
    transition: all 0.3s ease;
  }
  header nav.inferior > .contenedor > ul li a:hover, header nav.inferior > .contenedor > ul li a.active {
    background-color: transparent;
    color: #ffffff !important;
  }
  header nav.inferior > .contenedor > ul li a:hover::before, header nav.inferior > .contenedor > ul li a.active::before {
    opacity: 1;
    z-index: 1;
  }
  header nav.inferior > .contenedor > ul li a:hover span, header nav.inferior > .contenedor > ul li a.active span {
    color: transparent;
  }
  header nav.inferior > .contenedor > ul li a:hover span::before, header nav.inferior > .contenedor > ul li a.active span::before {
    opacity: 1;
    color: #ffffff !important;
    font-weight: 100;
  }
  header nav.inferior > .contenedor > ul li a:hover svg path, header nav.inferior > .contenedor > ul li a.active svg path {
    fill: #ffffff !important;
  }
}
@media (max-width: 1024px) and (max-width: 780px) {
  header nav.inferior > .contenedor > ul li a {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 1024px) {
  header nav.inferior > .contenedor > ul li a:hover::before {
    opacity: 0 !important;
  }
}
@media (max-width: 1024px) {
  header nav.inferior {
    padding: 2rem 0;
  }
  header nav.inferior.active {
    transform: translate(-50%, -50%);
  }
}
header.active-scrolled nav.superior {
  padding: 0.3rem 0;
}
header.active-scrolled nav.superior .contenedor picture {
  height: 2rem;
  width: auto;
}
@media (min-width: 1024px) {
  header.active-scrolled nav.inferior {
    padding: 0.3rem 0;
  }
}

nav {
  position: relative;
  z-index: 1;
}
nav.ti-breadcrumb * {
  font-size: 0.75rem;
  color: #15253f;
  font-family: "Exo", sans-serif;
  font-style: italic;
  font-weight: normal;
}

section.bannerTitulo {
  height: 20rem;
  min-height: -moz-fit-content;
  min-height: fit-content;
  position: relative;
}
@media (max-width: 870px) {
  section.bannerTitulo {
    height: 15rem;
    padding: 1rem 0;
  }
}
section.bannerTitulo .contenedor {
  border-radius: 1rem;
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 1rem;
}
section.bannerTitulo .contenedor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #a3e1ff 0%, #2ba9ee 100%);
  z-index: 0;
}
section.bannerTitulo .contenedor picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0.2;
}
section.bannerTitulo .contenedor picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
section.bannerTitulo .contenedor h1 {
  position: absolute;
  color: #15253f;
  font-size: 1.875rem;
  font-weight: bold;
  font-style: italic;
  font-family: "Exo", sans-serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 870px) {
  section.bannerTitulo .contenedor h1 {
    font-size: 1.563rem;
    width: 90%;
    text-align: center;
  }
}

footer {
  background: linear-gradient(180deg, #002241 0%, #000c16 100%);
  padding: 2rem 0;
}
@media (max-width: 780px) {
  footer .contenedor nav.superior {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
@media (max-width: 780px) {
  footer .contenedor nav.superior .menu {
    justify-content: space-around;
    width: 100%;
  }
}
@media (max-width: 480px) {
  footer .contenedor nav.superior .menu {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
@media (max-width: 480px) {
  footer .contenedor nav.superior .menu > ul {
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 480px) {
  footer .contenedor nav.superior .menu > ul li * {
    text-align: center;
  }
}
footer .contenedor nav.superior .menu > ul li span {
  color: #1f9ad7;
  font-size: 1.125rem;
  font-weight: normal;
}
footer .contenedor nav.superior .menu > ul li a {
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 0.5rem 0 0;
}
footer .contenedor nav.superior .menu > ul li a::before {
  position: absolute;
  content: attr(data-title);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  color: #ffffff;
  font-weight: normal;
  opacity: 0;
  transition: all 0.3s ease;
}
footer .contenedor nav.superior .menu > ul li a:hover {
  color: transparent;
}
footer .contenedor nav.superior .menu > ul li a:hover::before {
  opacity: 1;
  color: #ffffff;
}
footer .contenedor nav.superior .menu > ul li a.enlace {
  text-decoration: underline;
}
footer .contenedor nav.superior .redes > p {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
}
footer .contenedor nav.superior .redes .iconos a {
  background-color: transparent;
  border-radius: 50%;
  width: auto;
  height: 2.5rem;
  aspect-ratio: 1/1;
}
footer .contenedor nav.superior .redes .iconos a svg {
  height: 100%;
  width: 100%;
}
footer .contenedor nav.superior .redes .iconos a svg path {
  transition: all 0.3s ease;
}
footer .contenedor nav.superior .redes .iconos a:hover {
  background-color: #ffffff;
}
footer .contenedor nav.superior .redes .iconos a:hover svg path:first-child {
  fill: #1f9ad7;
}
footer .contenedor nav.superior .redes .iconos a:hover svg path:last-child {
  fill: transparent;
}
footer .contenedor nav.inferior {
  padding-top: 1rem;
  border-top: 2px solid #ffffff;
}
@media (max-width: 780px) {
  footer .contenedor nav.inferior {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
@media (max-width: 560px) {
  footer .contenedor nav.inferior ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
footer .contenedor nav.inferior ul li a {
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 0.5rem 0 0;
}
footer .contenedor nav.inferior ul li a::before {
  position: absolute;
  content: attr(data-title);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  color: #ffffff;
  font-weight: normal;
  opacity: 0;
  transition: all 0.3s ease;
}
footer .contenedor nav.inferior ul li a:hover {
  color: transparent;
}
footer .contenedor nav.inferior ul li a:hover::before {
  opacity: 1;
  color: #ffffff;
}
footer .contenedor nav.inferior ul li a.enlace {
  text-decoration: underline;
}
footer .contenedor nav.inferior .marca {
  color: #ffffff;
}
footer .contenedor nav.inferior .marca strong {
  font-weight: bold;
  color: #ffffff;
}

.ti_card_product__price-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.ti_card_product__price-line > span {
  color: #15253f;
}
.ti_card_product__price-line > button {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 2;
}
.ti_card_product__price-line > button .ti_card_product__tooltip {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: -moz-max-content;
  width: max-content;
  max-width: 10rem;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.3s ease;
  transform: translate(4%, -105%);
  padding: 0.5rem;
}
.ti_card_product__price-line > button .ti_card_product__tooltip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 123%;
  width: 107%;
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%22218%22%20height%3D%2274%22%20viewBox%3D%220%200%20218%2074%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%2212.3215%22%20y%3D%220.5%22%20width%3D%22205.678%22%20height%3D%2255.9217%22%20rx%3D%2210%22%20fill%3D%22%2315253F%22%2F%3E%0A%3Cpath%20d%3D%22M16.6322%2063.8627C14.6009%2065.1138%2011.9926%2063.6081%2012.0601%2061.2234L12.4697%2046.7678C12.534%2044.497%2015.0009%2043.1189%2016.9683%2044.2546L28.8719%2051.1262C30.8393%2052.2619%2030.8796%2055.0874%2028.9454%2056.2787L16.6322%2063.8627Z%22%20fill%3D%22%2315253F%22%2F%3E%0A%3C%2Fsvg%3E%0A);
  background-position: -0.5rem 0.2rem;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.ti_card_product__price-line > button .ti_card_product__tooltip a {
  color: #ffffff;
  position: relative;
  z-index: 2;
  font-size: 0.75rem;
  text-decoration: underline;
}
.ti_card_product__price-line > button:hover .ti_card_product__tooltip {
  opacity: 1;
  pointer-events: all;
}
.ti_card_product__price {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}
.ti_card_product__price * {
  color: #15253f;
}
.ti_card_product__price-single span bdi, .ti_card_product__price-sale span bdi {
  font-size: 1.125rem;
  font-weight: normal;
}
.ti_card_product__price-single span bdi *, .ti_card_product__price-sale span bdi * {
  font-size: 1.125rem;
  font-weight: normal;
}
.ti_card_product__price-regular {
  transform: translateY(-30%);
}
.ti_card_product__price-regular span bdi {
  text-decoration: line-through;
  font-size: 0.83rem;
}
.ti_card_product__igv {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  color: #495879;
  margin: auto 0;
}
.ti_card_product__cats {
  font-size: 0.75rem;
  font-family: "Exo", sans-serif;
  font-style: italic;
  color: #1f9ad7;
  text-transform: uppercase;
}/*# sourceMappingURL=main.css.map */