@import url("../banners/banner.css");
@import url("../formulario/form.css");
@import url("../product-card/product-card.css");
.categories {
  position: relative;
  width: 98dvw;
  z-index: 3;
  margin-top: -150px;
  overflow: hidden;
}
.categories > div {
  display: flex;
  justify-content: space-evenly;
  gap: 1.5em;
  padding: 5px;
  overflow: hidden;
}
@media (max-width: 1050px) {
  .categories > div {
    overflow-x: scroll;
    padding: 0;
    padding-bottom: 5px;
  }
}
.categories > div .category {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  justify-content: center;
  align-items: flex-start;
  flex-grow: 1;
  flex-shrink: 0;
  padding: 0.5em 1em;
  min-width: 215px;
  max-width: 230px;
  height: 110px;
  border-radius: 10px;
  background-color: var(--color-primary);
  transition: 0.3s all var(--transitionv2);
}
@media (max-width: 800px) {
  .categories > div .category {
    flex: 0 0 260px;
  }
}
.categories > div .category i {
  position: absolute;
  left: 15px;
  bottom: 0.8em;
  font-size: 20px;
  color: #FFF;
  animation: moveArrow 2s infinite;
}
.categories > div .category h2 {
  font-size: calc(var(--text) + 2px);
  color: #FFF;
  font-weight: 600 !important;
  transform: scale(0.98);
  transition: 0.3s transform var(--transitionv2);
}
.categories > div .category a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  width: 110px;
  height: 26px;
  border-radius: 10px;
  margin: 0 0 0 auto;
  transition: 0.3s all var(--transitionv2);
}
.categories > div .category a:hover {
  background-color: var(--color-primary);
  color: #FFF;
}
.categories > div .category:hover {
  background-color: var(--accent-color);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.5058823529);
}
.categories > div .category:hover h2 {
  z-index: 4;
}
.categories > div .category:hover h2 {
  transform: scale(1);
}
.categories > div::-webkit-scrollbar {
  height: 5px;
}
.categories > div::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #FFF;
}
.categories > div::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

@keyframes moveArrow {
  0% {
    left: 15px;
  }
  50% {
    left: 25px;
  }
  100% {
    left: 15px;
  }
}
.exp {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
@media (max-width: 1400px) {
  .exp {
    max-width: 950px;
  }
}
@media (max-width: 1050px) {
  .exp {
    max-width: 750px;
  }
}
@media (max-width: 800px) {
  .exp {
    max-width: 500px;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .exp {
    max-width: 90%;
  }
}
.exp > div {
  display: flex;
}
@media (max-width: 1050px) {
  .exp > div {
    width: calc(50% - 1em) !important;
  }
}
@media (max-width: 800px) {
  .exp > div {
    width: 100% !important;
  }
}
.exp .img {
  width: calc(40% - 1em);
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 520px) {
  .exp .img {
    height: 200px;
  }
}
.exp .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.exp .text {
  width: calc(60% - 1em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
}
.exp .text h2 {
  color: var(--accent-color);
  font-size: var(--subtitle);
}
.exp .text h2 span {
  font-size: calc(var(--subtitle) - 3px);
  background-color: var(--color-primary);
  color: #FFF;
  padding: 2px 5px;
  border-radius: 10px;
}
.exp .text p {
  width: 90%;
  color: #000;
  font-size: var(--text);
  font-weight: 400;
}
@media (max-width: 800px) {
  .exp .text p {
    width: 100%;
    text-align: justify;
  }
}

.contact-us {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 90px calc((100% - 1000px) / 2);
  padding-right: 50px;
  border-radius: 10px;
  overflow: visible;
}
.contact-us .formulario > div {
  padding: 2em 4em;
}
@media (max-width: 800px) {
  .contact-us .formulario > div {
    padding: 1.5em 3em;
  }
}
.contact-us .formulario > div h2, .contact-us .formulario > div p {
  text-align: center;
}
.contact-us .formulario > div p {
  font-size: var(--text);
  color: #FFF;
  font-weight: 400;
}
.contact-us .formulario > div::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 500px;
  right: -60px;
  bottom: -20px;
  background: url("../../img/builder-frontview.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}
@media (max-width: 1280px) {
  .contact-us .formulario > div::before {
    right: -30px;
  }
}
@media (max-width: 1050px) {
  .contact-us .formulario > div::before {
    width: 170px;
    bottom: -70px;
  }
}
@media (max-width: 800px) {
  .contact-us .formulario > div::before {
    display: none;
  }
}
@media (max-width: 1400px) {
  .contact-us {
    max-width: 950px;
    margin: 0 auto 90px calc((100% - 950px) / 2);
  }
}
@media (max-width: 1050px) {
  .contact-us {
    max-width: 750px;
    margin: 0 auto 90px calc((100% - 750px) / 2);
  }
}
@media (max-width: 800px) {
  .contact-us {
    max-width: 500px;
    overflow: hidden;
    height: auto;
    margin: 0 auto 90px auto;
    padding: 0;
  }
}
@media (max-width: 520px) {
  .contact-us {
    max-width: 90%;
  }
}

.brands {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1920px;
  flex-direction: column;
  gap: 2em;
  padding: 2em calc((100% - 1280px) / 2);
  background-color: var(--accent-color);
  overflow: hidden;
}
@media (max-width: 1280px) {
  .brands {
    padding: 2em calc((100% - 1050px) / 2);
  }
}
@media (max-width: 1050px) {
  .brands {
    padding: 2em 5%;
    max-width: 100dvw;
  }
}
.brands h2 {
  font-size: var(--subtitle);
  color: #FFF;
  font-weight: 900;
  text-align: center;
}
.brands .swiper {
  display: flex;
  width: 100%;
}
.brands .swiper .swiper-wrapper {
  max-width: 1280px;
}
@media (max-width: 1280px) {
  .brands .swiper .swiper-wrapper {
    max-width: 1050px;
  }
}
@media (max-width: 1050px) {
  .brands .swiper .swiper-wrapper {
    max-width: 90%;
  }
}
.brands .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 1em;
  flex-grow: 1;
}
.brands .swiper .swiper-wrapper .swiper-slide img {
  width: auto;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.our-products {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.our-products h2 {
  font-size: var(--subtitle);
  color: var(--color-primary);
}
.our-products > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2em;
  padding: 5px;
}
.our-products > div .category {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-grow: 1;
  flex-shrink: 0;
  min-width: 200px;
  max-width: 300px;
  height: 150px;
  border-radius: 10px;
  cursor: pointer;
}
.our-products > div .category img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.98);
  transition: 0.3s transform var(--transitionv2);
}
.our-products > div .category > div {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 1em;
  z-index: 3;
}
.our-products > div .category > div h2 {
  width: 80%;
  font-size: var(--subsbtitle);
  color: #FFF;
  font-weight: 900;
  transform: scale(0.98);
  transition: 0.3s transform var(--transitionv2);
}
.our-products > div .category > div a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  width: 50px;
  height: 25px;
  border-radius: 10px;
  margin: 0 0 4px 0;
  z-index: 4;
  transition: 0.3s all var(--transitionv2);
}
.our-products > div .category > div a:hover {
  background-color: var(--accent-color);
  color: #FFF;
}
.our-products > div .category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #848484;
  opacity: 0.2;
  transform: scale(0.98);
  transition: 0.3s all var(--transitionv2);
}
.our-products > div .category:hover::after {
  background: radial-gradient(circle at 50% 50%, #848484 0%, #000 100%);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.5058823529);
  transform: scale(1);
  opacity: 0.6;
  background: none;
}
.our-products > div .category:hover img, .our-products > div .category:hover h2 {
  transform: scale(1);
}

.featured {
  display: flex;
  width: 98dvw;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}
@media (max-width: 1400px) {
  .featured {
    max-width: 1050px;
  }
}
@media (max-width: 1050px) {
  .featured {
    max-width: 90%;
  }
}
.featured .title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.featured .title h2 {
  font-size: var(--subtitle);
  color: var(--color-primary);
  text-align: center;
}
.featured .title > div {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  right: 0;
}
@media (max-width: 1050px) {
  .featured .title > div {
    width: 90%;
    margin: auto 0;
    right: inherit;
  }
}
@media (max-width: 330px) {
  .featured .title > div {
    width: 98%;
  }
}
.featured .title > div svg {
  stroke: #767373;
  transition: 0.3s all var(--transitionv2);
}
.featured .title > div svg:hover {
  stroke: var(--color-primary);
}
.featured .swiper {
  width: 100%;
  padding: 5px;
}
@media (max-width: 460px) {
  .featured .swiper {
    max-width: 215px;
  }
}
.featured .swiper .swiper-wrapper {
  display: flex;
  width: 100%;
}
@media (max-width: 1050px) {
  .featured .swiper .swiper-wrapper .product {
    max-width: none;
    padding: 0 calc((33.3333333333% - 215px) / 2.5);
  }
}
@media (max-width: 800px) {
  .featured .swiper .swiper-wrapper .product {
    padding: 0 calc((50% - 215px) / 2.5);
  }
}
@media (max-width: 460px) {
  .featured .swiper .swiper-wrapper .product {
    padding: 0;
    max-width: 215px;
  }
}/*# sourceMappingURL=index.css.map */