@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}

a:focus,
button:focus,
input:focus,
text:focus,
textarea:focus {
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.nav-opened {
  overflow: hidden;
}

html {
  font-size: 62.5%;
}

html,
body {
  font-family: "Jost", sans-serif;
  color: #1E1E1E;
}

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

.image {
  overflow: hidden;
  position: relative;
}
.image img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.image:after {
  content: "";
  display: block;
}

.btn {
  padding: 0.8rem;
  border-radius: 0.6rem;
  text-align: center;
  line-height: 1.7;
  height: 5rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.btn-main {
  background: #581908;
  color: #fff;
}
.btn-main:hover {
  color: #581908;
  background: #FFF;
  border-color: #581908;
}
.btn-main-w {
  background: #fff;
  color: #581908;
  border: 1px solid transparent;
}
.btn-main-w:hover {
  background: #581908;
  color: #fff;
}

.select-wrapper {
  position: relative;
  width: 14rem;
}
.select-wrapper::after {
  content: "Unidades";
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 600;
  padding-left: 1.5rem;
  border-left: 1px solid #e5e5e5;
  pointer-events: none;
}
.select-wrapper select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #D1D1D1;
  border-radius: 12px;
  background-color: #F9F9F9;
  font-size: 14px;
  color: #D1D1D1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.60986 4.89999L5.66486 6.955C5.75854 7.04812 5.88527 7.10039 6.01736 7.10039C6.14946 7.10039 6.27618 7.04812 6.36986 6.955L8.36986 4.95499' stroke='%23151515' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='bevel'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}
.select-wrapper select:focus {
  outline: none;
}
.select-wrapper select option {
  color: #000;
}
.select-wrapper .select-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.section-title {
  font-size: 6rem;
  font-weight: 500;
  color: #361C1C;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 6.5rem;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 3rem;
    line-height: 1.2;
  }
  .section-title ~ p {
    font-size: 1.6rem;
  }
}

.fullbanner {
  position: relative;
  z-index: 1;
}
.fullbanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.fullbanner .image::after {
  padding-top: 50rem;
}
.fullbanner .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
}
.fullbanner .text .title {
  font-size: 6.2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: ) {
  .fullbanner .text .title {
    font-size: 9.2rem;
  }
}
.fullbanner .text .description {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 2.4rem;
  max-width: 44.5rem;
}
@media (min-width: ) {
  .fullbanner .text .description {
    font-size: 1.6rem;
  }
}
.fullbanner .text .footnote {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 7.3rem;
  max-width: 44.5rem;
}
@media (min-width: ) {
  .fullbanner .text .footnote {
    font-size: 1.6rem;
  }
}

.list-products {
  margin-top: 7rem;
  margin-bottom: 12rem;
}
.list-products .title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: #361C1C;
  max-width: 33.5rem;
}
@media (min-width: 1280px) {
  .list-products .title {
    font-size: 4rem;
  }
}
.list-products .grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row dense;
  gap: 1rem;
  margin-top: 3.3rem;
}
@media (min-width: 1280px) {
  .list-products .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-box {
  padding: 3rem 5%;
  background-color: #FAEEDC;
}
.product-box .info {
  margin-bottom: 1.2rem;
}
.product-box .info .name {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.2;
  color: #361C1C;
  text-align: center;
}
@media (min-width: 1280px) {
  .product-box .info .name {
    font-size: 3.2rem;
  }
}
.product-box .info .link {
  display: block;
  text-align: center;
  color: #DB7558;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
}
.product-box .info .link .icon {
  width: 1.3rem;
  height: 1rem;
}
@media (min-width: 1280px) {
  .product-box .info .link {
    font-size: 2rem;
  }
}
.product-box .image {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}
.product-box .image::after {
  content: "";
  display: block;
  padding-top: 123%;
}

.section-cta {
  padding: 6rem 0;
}
.section-cta .flex {
  align-items: center;
}
.section-cta .info {
  margin-left: 0%;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  text-align: center;
}
.section-cta .cta-wrapper {
  margin-left: 0%;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 1280px) {
  .section-cta .info {
    text-align: left;
    margin-left: 0%;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .section-cta .cta-wrapper {
    margin-left: 0%;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 25%;
    flex: 0 0 25%;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
  }
}
.section-cta .info .title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: #fff;
}
.section-cta .info .description {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #fff;
}
.section-cta .cta-wrapper .cta {
  border-radius: 0.3rem;
  padding: 0.2rem 4rem;
  height: 3.8rem;
}