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

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, Noto Sans, sans-serif;
}

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

.listReset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main {
  width: 100%;
  display: block;
}

.sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.sections--bottom {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.md-content {
  color: #000;
  font-family: Josefin Sans, sans-serif;
  line-height: 1.65;
}

.md-content h2 {
  margin: 2.5rem 0 1rem;
  font-family: Josefin Sans, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.2;
}

.md-content h3 {
  margin: 2rem 0 .75rem;
  font-family: Josefin Sans, sans-serif;
  font-size: 1.2rem;
}

.md-content h4 {
  margin: 1.5rem 0 .5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.md-content p {
  margin: 0 0 1.2rem;
  font-size: 1rem;
}

.md-content ul, .md-content ol {
  margin: 1rem 0 1.5rem 1.25rem;
  padding: 0;
}

.md-content li {
  margin-bottom: .5rem;
}

.md-content a {
  text-align: left;
  float: none;
  font-weight: inherit;
  color: #00979d;
  text-underline-offset: 2px;
  margin: 0;
  text-decoration: underline;
  display: inline;
}

.md-content a:hover {
  color: #ff7a00;
}

.md-content hr {
  background-color: #e0e0e0;
  border: 0;
  height: 1px;
  margin: 3rem 0;
}

.md-content blockquote {
  background-color: #f7f7f7;
  border-left: 4px solid #00979d;
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  font-style: italic;
}

.footer {
  color: #fff;
  background: #44444485;
  padding: 28px 16px;
}

.footer .footerWrap {
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .footerCopy {
  margin: 0 0 10px;
  font-weight: 600;
}

.footer .disclaimer {
  opacity: .9;
  margin: 0;
  line-height: 1.4;
}

.footer .footerList {
  gap: 8px;
  display: grid;
}

.footer .footerExtra1:empty, .footer .footerExtra2:empty {
  display: none;
}

.footer .footerLogo {
  align-items: center;
  text-decoration: none;
  display: inline-flex;
}

.footer .footerLogo img {
  height: clamp(160px, 15vw, 220px);
  display: block;
}

.footer--l1 .footerWrap {
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "brand legal"
                       "extra1 extra2";
  align-items: start;
}

.footer--l1 .footerBrand {
  grid-area: brand;
}

.footer--l1 .footerLegal {
  grid-area: legal;
}

.footer--l1 .footerExtra1 {
  grid-area: extra1;
}

.footer--l1 .footerExtra2 {
  grid-area: extra2;
}

.footer--l2 .footerWrap {
  text-align: center;
  grid-template-columns: 1fr;
  grid-template-areas: "brand"
                       "legal"
                       "extra1"
                       "extra2";
  justify-items: center;
}

.footer--l2 .footerBrand {
  grid-area: brand;
  max-width: 800px;
}

.footer--l2 .footerLegal {
  grid-area: legal;
}

.footer--l2 .footerExtra1 {
  grid-area: extra1;
}

.footer--l2 .footerExtra2 {
  grid-area: extra2;
}

.footer--l2 .footerList {
  justify-items: center;
}

.footer--l3 .footerWrap {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-areas: "brand legal extra1 extra2";
}

.footer--l3 .footerBrand {
  grid-area: brand;
}

.footer--l3 .footerLegal {
  grid-area: legal;
}

.footer--l3 .footerExtra1 {
  grid-area: extra1;
}

.footer--l3 .footerExtra2 {
  grid-area: extra2;
}

@media (width <= 768px) {
  .footer .footerWrap {
    grid-template-columns: 1fr !important;
    grid-template-areas: "brand"
                         "legal"
                         "extra1"
                         "extra2" !important;
  }

  .footer--l1 .footerWrap, .footer--l3 .footerWrap {
    text-align: left;
    justify-items: start;
  }

  .footer--l2 .footerWrap {
    text-align: center;
    justify-items: center;
  }

  .footer--l2 .footerList {
    justify-items: center;
  }
}

.header {
  color: #fff;
  background: #00979d;
  width: 100%;
}

.headerInner {
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px;
  display: grid;
}

.headerLogo {
  grid-area: logo;
}

.headerToggle {
  grid-area: toggle;
}

.headerNav {
  grid-area: nav;
}

.headerCta {
  grid-area: cta;
}

.headerSearch {
  grid-area: search;
}

.headerCrumbs {
  grid-area: crumbs;
}

.headerHero {
  grid-area: hero;
}

.headerBg {
  grid-area: bg;
}

.headerLogoLink img {
  width: auto;
  height: clamp(170px, 18vw, 210px);
  display: block;
}

.header.noCta .headerCta {
  display: none;
}

.headerMenu {
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.headerLink, .headerCta {
  color: #fff;
  text-decoration: none;
}

.headerLink.isActive, .headerLink[aria-current="page"] {
  color: #febd69;
  font-weight: 700;
}

.headerLink:hover, .headerLink.isActive:hover, .headerLink[aria-current="page"]:hover {
  color: #febd69;
}

.headerToggle {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 8px;
  display: none;
}

.headerToggleBar {
  background: #fff;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  display: block;
}

.headerHero .pageTitle, .headerHero .pageLead {
  color: #fff;
  margin: 0;
}

.headerHero .pageTitle {
  margin-top: 8px;
}

.headerHero .pageLead {
  margin-top: 6px;
}

.headerSearch:empty, .headerCrumbs:empty {
  display: none;
}

.header--l1 .headerInner {
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo cta toggle"
                       "nav nav nav"
                       "hero hero hero";
  align-items: center;
}

.header--l2 .headerInner {
  text-align: center;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "search logo cta"
                       "nav nav nav"
                       "crumbs crumbs crumbs"
                       "hero hero hero";
  align-items: center;
}

.header--l3 .headerInner {
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo cta toggle"
                       "nav nav nav"
                       "hero hero hero";
  align-items: center;
}

@media (width <= 768px) {
  .header {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo . toggle"
                         "hero hero hero"
                         "nav nav nav";
  }

  .headerLogoLink img {
    height: 150px;
  }

  .headerToggle {
    justify-self: end;
    display: inline-block;
  }

  .headerNav {
    display: none;
  }

  .header.isOpen .headerNav {
    padding-top: 10px;
    display: block;
  }

  .headerMenu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .headerCta {
    justify-self: start;
  }
}

.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.productsGrid {
  gap: 2rem;
  display: grid;
}

.productsSectionTitle {
  text-align: center;
  grid-column: 1 / -1;
  margin: 2.5rem 0 1.5rem;
}

.productsSectionTitle__inner {
  max-width: 720px;
}

.productsSectionTitle h2 {
  padding: 0;
  display: block;
}

.productsSectionTitle h2:after {
  content: "";
  background-color: #febd69;
  border-radius: 2px;
  width: 60%;
  height: 3px;
  margin: .6rem auto 0;
  display: block;
}

.productsSectionTitle__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px #0000002e;
}

.productCard {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  transition: transform .15s, box-shadow .15s;
  overflow: hidden;
}

.productCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px #00000014;
}

.productCard__media {
  background: #f6f6f6;
}

.productCard__img {
  width: 100%;
  height: auto;
  display: block;
}

.productCard__body {
  align-content: start;
  gap: .75rem;
  padding: 1rem;
  display: grid;
}

.productCard__title {
  margin: 0;
  font-family: Josefin Sans, sans-serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.productCard__desc {
  opacity: .92;
  margin: 0;
  line-height: 1.5;
}

.productCard__btn {
  text-align: center;
  color: #000;
  background: #febd69;
  border-radius: 12px;
  padding: .8rem 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.productCard__btn:hover {
  text-decoration: underline;
}

.productCard__btn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #fff;
}

.products--grid .productsGrid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.products--grid .productCard__media {
  border-bottom: 1px solid #eee;
}

.products--list .productsGrid {
  grid-template-columns: 1fr;
}

.products--list .productCard {
  grid-template-columns: 340px 1fr;
  display: grid;
}

.products--list .productCard:not(:has(.productCard__media)) {
  grid-template-columns: 1fr;
}

.products--list .productCard:nth-of-type(2n) {
  grid-template-columns: 1fr 340px;
}

.products--list .productCard:nth-of-type(2n) .productCard__body {
  order: 1;
}

.products--list .productCard:nth-of-type(2n) .productCard__media {
  order: 2;
}

.products--list .productCard__media {
  height: 100%;
}

.products--list .productCard__img {
  object-fit: cover;
  height: 100%;
}

.products--list .productCard__body {
  gap: .9rem;
  padding: 1.25rem 1.5rem 1.5rem;
}

@media (width <= 768px) {
  .products--list .productCard, .products--list .productCard:nth-of-type(2n) {
    grid-template-columns: 1fr;
  }

  .products--list .productCard__body, .products--list .productCard__media {
    order: initial;
  }

  .products--list .productCard__media {
    height: 220px;
  }
}

.productsSectionTitle__inner {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.productsSectionTitle__link {
  color: #fff;
  background: #00979d;
  border-radius: 12px;
  margin-top: 20px;
  padding: 14px 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  display: inline-block;
}

.productsSectionTitle__link:hover {
  background: #007a7e;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px #0000002e;
}

.productsSectionTitle__link:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #fff;
}

@media (width <= 768px) {
  .productsSectionTitle__inner {
    text-align: center;
    align-items: center;
  }
}

.categoryBackCta {
  text-align: center;
  margin: 32px 0;
}

.categoryBackCta__btn {
  color: #fff;
  background: #00979d;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  display: inline-block;
}

.categoryBackCta__btn:hover {
  background: #007a7e;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px #0000002e;
}

.categoryBackCta__btn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #fff;
}

.productsMoreDeals {
  text-align: center;
  margin: 18px 0 32px;
}

.productsMoreDeals__btn {
  color: #fff;
  background: #ff7a00;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  display: inline-block;
}

.productsMoreDeals__btn:hover {
  background: #e06b00;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px #0000002e;
}

.productsMoreDeals__btn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #fff;
}

.cookieBanner {
  z-index: 9999;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.cookieBanner__inner {
  color: #000;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  box-shadow: 0 10px 30px #0000001f;
}

.cookieBanner__text {
  margin: 0;
  line-height: 1.35;
}

.cookieBanner__text a {
  color: #00979d;
  text-underline-offset: 2px;
  text-decoration: underline;
}

.cookieBanner__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
  display: flex;
}

.cookieBanner__btn {
  cursor: pointer;
  color: #fff;
  background: #00979d;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
}

.cookieBanner__btn--ghost {
  color: #000;
  background: none;
  border: 1px solid #d9d9d9;
}

.cookieBanner__btn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #fff;
}

.cookieModal {
  z-index: 10000;
  position: fixed;
  inset: 0;
}

.cookieModal__overlay {
  background: #00000073;
  position: absolute;
  inset: 0;
}

.cookieModal__panel {
  color: #000;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  width: calc(100% - 32px);
  max-width: 720px;
  margin: 10vh auto;
  padding: 16px 16px 14px;
  position: relative;
  box-shadow: 0 16px 50px #0003;
}

.cookieModal__header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.cookieModal__title {
  margin: 0;
  font-family: Josefin Sans, sans-serif;
  font-size: 1.2rem;
}

.cookieModal__close {
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 1.6rem;
  line-height: 1;
}

.cookieModal__close:hover {
  background: #f3f3f3;
}

.cookieModal__desc {
  opacity: .9;
  margin: 10px 0 14px;
  line-height: 1.4;
}

.cookieModal__list {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  gap: 12px;
  padding: 12px;
  display: grid;
}

.cookieRow {
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  display: flex;
}

.cookieRow__name {
  font-weight: 800;
}

.cookieRow__hint {
  opacity: .85;
  margin-top: 2px;
  font-size: .92rem;
}

.cookieSwitch {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.cookieSwitch input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.cookieSwitch__ui {
  background: #d7d7d7;
  border-radius: 999px;
  width: 46px;
  height: 28px;
  transition: background .15s;
  position: relative;
}

.cookieSwitch__ui:after {
  content: "";
  background: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
  transition: transform .15s;
  position: absolute;
  top: 4px;
  left: 4px;
  box-shadow: 0 2px 8px #0000002e;
}

.cookieSwitch input:checked + .cookieSwitch__ui {
  background: #00979d;
}

.cookieSwitch input:checked + .cookieSwitch__ui:after {
  transform: translateX(18px);
}

.cookieSwitch--locked .cookieSwitch__ui {
  opacity: .7;
}

.cookieModal__footer {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
  display: flex;
}

.cookieModal__btn {
  cursor: pointer;
  color: #fff;
  background: #00979d;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
}

.cookieModal__btn--ghost {
  color: #000;
  background: none;
  border: 1px solid #d9d9d9;
}

@media (width <= 768px) {
  .cookieBanner__actions, .cookieModal__footer {
    justify-content: center;
  }

  .cookieModal__panel {
    margin: 8vh auto;
  }
}
/*# sourceMappingURL=misitio_python.3377c607.css.map */
