@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  * {
    margin: 0;
    padding: 0;
  }
  body {
    line-height: 1.5;
  }
  img,
  picture,
  video,
  canvas,
  svg {
    display: block;
    max-inline-size: 100%;
  }
  input,
  button,
  textarea,
  select {
    font: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    color: currentColor;
  }
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    overflow-wrap: break-word;
  }
  ol,
  ul {
    list-style: none;
  }
  :not([class]) h1,
  :not([class]) h2,
  :not([class]) h3,
  :not([class]) h4,
  :not([class]) h5,
  :not([class]) h6 {
    margin-block: 0.75em;
    line-height: 1.25;
    text-wrap: balance;
    letter-spacing: -0.05ch;
  }
  :not([class]) p,
  :not([class]) ol,
  :not([class]) ul {
    margin-block: 1em;
  }
  :not([class]) ol,
  :not([class]) ul {
    padding-inline-start: 1.5em;
    list-style: revert;
  }
  :not([class]) li {
    margin-block: 0.5em;
  }
}
@font-face {
  font-family: "Assistant-Regular";
  src: url(/fonts/Assistant-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body.dark-mode {
  background-color: #333;
  color: #f8f9fa;
}

body {
  font-family: "Assistant-Regular", sans-serif, sans-serif;
  background-color: #f8f9fa;
  color: #000;
}

hr {
  border: none;
  border-top: 1px solid #000;
  margin: 2rem 0;
}

.sc-aviso {
  background-color: #DD1D1D;
  color: #FFFFFF;
  text-align: center;
  padding: 1rem 0;
  letter-spacing: 0.1rem;
  min-height: 3.8rem;
  font-family: "Assistant-Regular", sans-serif;
  font-weight: 300;
}
.sc-aviso span {
  text-transform: uppercase;
}

.sc-header {
  background: #FFFFFF;
  padding: 20px 0;
}
.sc-header button {
  border: none;
  background-color: transparent;
}
.sc-header__navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sc-header__brand {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
}
.sc-header__brand:hover {
  color: #0056b3;
}
.sc-header__menu {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sc-header__menu .sc-header__item {
  position: relative;
}
.sc-header__menu .sc-header__item:hover .sc-header__submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.sc-header__link {
  text-decoration: underline;
  color: #000;
  padding: 10px;
  display: block;
}
.sc-header__link:hover {
  color: #0056b3;
}
.sc-header__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: #FFFFFF;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  z-index: 100;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sc-header__submenu li {
  padding: 10px 20px;
}
.sc-header__submenu a {
  color: #000;
  text-decoration: none;
}
.sc-header__submenu a:hover {
  color: #0056b3;
  text-decoration: underline;
}

#weather {
  background-color: #4aabe7;
  font-family: "Assistant-Regular", sans-serif;
  font-family: "Assistant-Regular", sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 2%;
}

.sc-slider {
  position: relative;
}
.sc-slider__img {
  object-fit: cover;
  height: 415px;
}
.sc-slider__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}
.sc-slider h1 {
  font-family: "Assistant-Regular", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.sc-slider__cta {
  padding: 10px 20px;
  background: #f39c12;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}
.sc-slider__cta:hover {
  background: rgb(199.8795180723, 126.5060240964, 10.1204819277);
  transition: background 0.3s ease;
  font-family: "Assistant-Regular", sans-serif;
  font-weight: 600;
}
.sc-slider__controls button {
  background: #000;
  border: none;
  transition: background 0.3s ease;
}
.sc-slider__controls button:hover {
  background: #000;
}
.sc-slider .carousel-indicators button {
  background-color: #0056b3;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.sc-slider .carousel-indicators button.active {
  background-color: #f39c12;
}

.sc-soldout {
  text-align: center;
  padding: 4rem 1rem;
}
.sc-soldout__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.sc-soldout__text {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #000;
  max-width: 700px;
  margin-inline: auto;
}
.sc-soldout__cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}
.sc-soldout__cta:hover {
  font-family: "Assistant-Regular", sans-serif;
  font-weight: 600;
  background: black;
  color: #f8f9fa;
}
.sc-soldout__stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.sc-soldout__stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 200px;
  min-height: 100px;
}
.sc-soldout__stat img {
  width: 60px;
}
.sc-soldout__stat span {
  color: #666;
  font-size: 0.9rem;
}
.sc-soldout__number {
  font-size: 2rem;
  font-weight: bold;
}

.sc-onsale {
  padding: 1.5rem 1.2rem 0.5rem 0.5rem;
  text-align: center;
}
.sc-onsale__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.sc-onsale__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.sc-onsale__item {
  width: 234px;
  height: 333px;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sc-onsale__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.sc-onsale__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  justify-content: center;
}
.sc-onsale__item h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}
.sc-onsale__item span {
  display: block;
  font-size: 1rem;
  color: #DD1D1D;
}
.sc-onsale__like {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #DD1D1D;
  transition: color 0.3s ease;
}
.sc-onsale__like:hover {
  color: #DD1D1D;
}

.sc-help {
  padding: 0 0 2rem 0;
  text-align: center;
}
.sc-help__list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sc-help__item {
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.sc-help__item:hover {
  color: #0056b3;
  text-decoration: underline;
}

.sc-contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.sc-contact-form h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.sc-contact-form p {
  margin-bottom: 2rem;
  font-size: 1rem;
}
.sc-contact-form form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}
.sc-contact-form label {
  text-align: left;
  font-weight: bold;
}
.sc-contact-form .form-control {
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}
.sc-contact-form .form-control:focus {
  outline: none;
  border-color: #0056b3;
  box-shadow: 0 0 8px rgba(0, 86, 179, 0.5);
}
.sc-contact-form .btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}
.sc-contact-form .btn:hover {
  font-family: "Assistant-Regular", sans-serif;
  font-weight: 600;
  background: black;
  color: #f8f9fa;
}

.floating-whatsapp {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.floating-whatsapp:hover {
  background: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}

.sc-floating {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.8rem;
}
.sc-floating__btn {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.sc-floating__btn:hover {
  transform: rotate(45deg);
}
.sc-floating__menu {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.sc-floating__link {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}
.sc-floating__link:hover {
  transform: scale(1.2);
}
.sc-floating--active .sc-floating__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sc-contact__title {
  font-size: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.sc-contact-banners {
  padding: 1rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.sc-contact-banners__item {
  padding: 1rem 2rem;
  border: 1px solid #0056b3;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.sc-contact-banners__item:hover {
  transform: scale(1.05);
  background: rgba(0, 86, 179, 0.1);
  cursor: pointer;
}

.sc-footer {
  background: #333;
  color: #f8f9fa;
  padding: 1.5rem 0 0.5rem;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-family: "Assistant-Regular", sans-serif;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  text-transform: uppercase;
}

/*# sourceMappingURL=main.css.map */
