*,
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 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #f4f5f8;
}

main.site-main {
  flex: 1 0 auto;
  width: 100%;
  margin-top: var(--header-h, 4.5rem);
  min-height: calc(100dvh - var(--header-h, 4.5rem) - var(--footer-h, 12rem));
}

#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;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 14px rgba(21, 37, 63, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header__inner {
  min-height: 4.5rem;
  padding: 0.65rem 0;
  gap: 1rem;
}
.site-header.active-scrolled {
  box-shadow: 0 4px 22px rgba(21, 37, 63, 0.12);
}
.site-header.active-scrolled .site-header__inner {
  min-height: 3.75rem;
  padding: 0.4rem 0;
}
.site-header__logo {
  flex-shrink: 0;
  max-width: 12rem;
}
.site-header__logo img, .site-header__logo-img {
  display: block;
  width: auto;
  max-height: 2.75rem;
  height: auto;
}
.site-header__logo-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: #495879;
}
.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.4rem;
  border-radius: 0.35rem;
  background: #f4f5f8;
}
.site-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #495879;
  border-radius: 1px;
}
.site-header__panel {
  flex: 1;
  gap: 1rem;
}
.site-header__menu {
  gap: 1.25rem;
}
.site-header__menu a {
  color: #495879;
  font-weight: 400;
  transition: color 0.2s ease;
}
.site-header__menu a:hover {
  color: #1f9ad7;
}
.site-header__menu .sub-menu {
  display: none;
}
.site-header__actions {
  flex-shrink: 0;
}
.site-header__actions .search-form {
  min-width: 10rem;
  max-width: 14rem;
}
.site-header__actions .search-field {
  width: 100%;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(73, 88, 121, 0.2);
  border-radius: 2rem;
  background: #f4f5f8;
}
.site-header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  border-radius: 50%;
  background: #1f9ad7;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}
.site-header__cart-count {
  line-height: 1;
}

@media (max-width: 1024px) {
  .site-header__toggle {
    display: flex;
  }
  .site-header__panel {
    position: fixed;
    top: var(--header-h, 4.5rem);
    left: 0;
    width: 100%;
    max-height: calc(100dvh - var(--header-h, 4.5rem));
    overflow-y: auto;
    padding: 1rem 2.5%;
    background: #fff;
    box-shadow: 0 12px 24px rgba(21, 37, 63, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    z-index: 190;
  }
  .site-header__panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .site-header__menu {
    flex-direction: column;
    align-items: flex-start;
  }
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  background: #495879;
  color: #fff;
  padding: 2.5rem 0 1.5rem;
}
.site-footer * {
  color: inherit;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.site-footer__logo img, .site-footer__logo-img {
  display: block;
  max-height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer__text {
  max-width: 22rem;
  font-size: 0.875rem;
  opacity: 0.9;
}
.site-footer__menus {
  flex: 1;
  justify-content: flex-end;
}
.site-footer__col-title {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.site-footer__menu a {
  font-size: 0.875rem;
  opacity: 0.9;
}
.site-footer__menu a:hover {
  opacity: 1;
  color: #1f9ad7;
}
.site-footer__bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.site-footer__copy {
  font-size: 0.8rem;
  opacity: 0.85;
}
.site-footer__social a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.site-footer__social a:hover {
  color: #1f9ad7;
}/*# sourceMappingURL=main.css.map */