/* [project]/src/app/principal/principal.css [app-client] (css) */
.content-main {
  display: flex;
}

.content-main .list-products {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  min-height: 100vh;
  padding-right: 5px;
  display: flex;
  overflow: hidden;
}

.content-main .list-products img {
  width: 220px;
}

.content-main .list-products .banner2 {
  height: 445px;
}

.content-main .list-products .banner1 {
  height: 435px;
  margin-bottom: 30px;
}

.content-main .list-products .banner0 {
  height: 250px;
  margin-bottom: 30px;
}

.content-main .content-index {
  box-sizing: border-box;
  width: 100%;
  padding-left: 0;
  padding-right: 20px;
}

.container-carousel {
  width: 100%;
  padding-left: 5px;
}

.container-carousel img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.head-container {
  background: gray;
  width: 100%;
  min-height: 30px;
  margin-top: 20px;
  padding: 6px 15px;
}

.head-container span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.container-destacado {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

@media (max-width: 992px) {
  .content-main .list-products {
    display: none;
  }
}

@media (max-width: 768px) {
  .container-destacado {
    justify-content: center;
    display: flex;
  }
}

/* [project]/src/app/components/carousel/carousel.css [app-client] (css) */
.carousel {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.imageContainer {
  border-radius: 8px;
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.sliderTrack {
  width: 100%;
  height: 100%;
  transition: transform .5s ease-in-out;
  display: flex;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.slide .image {
  object-fit: contain;
  background-color: #000;
  width: 100%;
  height: 100%;
  display: block;
}

.dotsOverlay {
  background-color: rgba(0, 0, 0, .4);
  border-radius: 20px;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.dotsGroup {
  align-items: center;
  gap: 8px;
  display: flex;
}

.dot {
  cursor: pointer;
  background-color: #ccc;
  border: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  padding: 0;
  transition: background-color .3s;
}

.dot.active {
  background-color: #fff;
}

.arrowBtn {
  color: #fff;
  cursor: pointer;
  opacity: .85;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  transition: opacity .2s, transform .15s;
  display: flex;
}

.arrowBtn:hover {
  opacity: 1;
  transform: scale(1.2);
}

.arrowBtn:active {
  transform: scale(.9);
}

@media (max-width: 999px) {
  .slide .image {
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 992px) {
  .slide .image {
    object-fit: contain !important;
  }
}

/* [project]/src/app/components/carouselMarcas/carousel_marca.module.css [app-client] (css) */
.carousel_marca-module__eOUsCG__wrapper {
  width: 100%;
  height: 100px;
  position: relative;
  overflow: hidden;
}

.carousel_marca-module__eOUsCG__track {
  gap: 50px;
  width: max-content;
  animation: 30s linear infinite reverse carousel_marca-module__eOUsCG__scroll;
  display: flex;
}

.carousel_marca-module__eOUsCG__slide {
  flex: none;
}

.carousel_marca-module__eOUsCG__image {
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@keyframes carousel_marca-module__eOUsCG__scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.carousel_marca-module__eOUsCG__wrapper:hover .carousel_marca-module__eOUsCG__track {
  animation-play-state: paused;
}

/* [project]/src/app/components/carouselPlataformas/carousel_plataformas.module.css [app-client] (css) */
.carousel_plataformas-module__BUxN5G__wrapper {
  width: 100%;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.carousel_plataformas-module__BUxN5G__track {
  gap: 50px;
  width: max-content;
  animation: 18s linear infinite carousel_plataformas-module__BUxN5G__scroll;
  display: flex;
}

.carousel_plataformas-module__BUxN5G__slide {
  flex: none;
}

.carousel_plataformas-module__BUxN5G__image {
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@keyframes carousel_plataformas-module__BUxN5G__scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.carousel_plataformas-module__BUxN5G__wrapper:hover .carousel_plataformas-module__BUxN5G__track {
  animation-play-state: paused;
}

/*# sourceMappingURL=src_app_95707fd2._.css.map*/