/* fuente */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap");
* {
  font-family: "Roboto Condensed", sans-serif;
}
/* footer en parte inferior */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex-grow: 1;
}

.fondoTitulo {
  background-image: url(../img/fondoNegro.png);
}
/* navBar */
nav li:hover {
  background-color: #8e8e8e;
}
nav li {
  border-radius: 15px;
}
.edicionNavbar {
  width: 100%;
  border-bottom: 15px solid #8e8e8e;
  background-image: url(../img/fondoNegro.png);
}
.card {
  border: solid 1px #c4c4c4;
}
.nav-link {
  color: #c4c4c4;
}
.nav-link:hover {
  color: white;
}
.dropdown-item:active {
  background-color: #8e8e8e;
}
#botonBuscar {
  color: #000000;
  border: 1px solid #8e8e8e;
  border-radius: 50px;
  background-color: #d8d8d8;
}
#botonBuscar:hover {
  background-color: #8e8e8e;
}
.logoNav {
  width: 40%;
}
/* slider de promociones */
.promociones {
  height: 450px;
}
/* seccion destacados */
.cardDestacados {
  margin: 0 0.48%;
  padding: 0;
}
.cardDestacados:hover {
  box-shadow: 5px 5px 20px #8e8e8e;
  transition: all 200ms ease-in-out;
}
.card-footer a {
  background-color: #8e8e8e;
  border: none;
}
.card-footer a:hover {
  background-color: #000000;
}
/* seccion ofertas */
.tamanioLetraCardOfertas {
  font-size: 15px;
}

div .card:hover {
  box-shadow: 0 0 13px 2px #d8d8d8;
  transition: 550ms;
}
.carousel-control-next {
  justify-content: end;
  opacity: 1;
}
.carousel-control-prev {
  justify-content: start;
  opacity: 1;
}
.cardOfertas .card-body {
  height: 100px;
}
/* slider de marcas */
.slider {
  width: 100%;
  height: auto;
  margin: auto;
  overflow: hidden;
  margin-top: 5em;
}
.slider .slide-marcas {
  display: flex;
  height: 20vh;
  animation: scroll 40s linear infinite;
  -webkit-animation: scroll 40s linear infinite;
  width: calc(200px * 26);
}

.slider .slide {
  margin-top: 4em;
  width: 50%;
  margin-left: 3em;
}

.slider .slide img {
  width: 100%;
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-200px * 13));
    transform: translateX(calc(-200px * 13));
  }
}
/* footer */
.linksFooter a {
  text-decoration: none;
  font-size: 17px;
}
.iconoFooter i {
  font-size: 35px;
}
/* pagina acercaDe */

.imgSobreNosotros {
  border-radius: 50%;
}
/* pagina detalle de carrito */
.opcionesCarrito {
  width: 50%;
}
/* pagina detalle de categoria zapatillas */
.ContenedorBanner {
  width: 100%;
  height: auto;
}
.banner-img {
  width: 100%;
  height: 70vh;
  filter: brightness(70%);
}
.cardCategorias {
  padding: 1em;
  height: 350px;
  transition: transform 0.3s;
  margin-top: 1em;
  margin-bottom: 1em;
}
.cardCategorias .card-img-top {
  width: 60%;
  height: auto;
  object-fit: cover;
  height: 200px;
  padding: 1em;
  margin: 0 auto;
}
/* pagina de contacto */
/* pagina de detalle de producto*/
.tamanioLetraBotonTalles,
.tamanioLetraBotonCantidad,
.tamanioLetraBotonColores,
.tamanioLetraComentarios {
  font-size: 12px;
}
.botonTalles,
.botonCantidad {
  width: 37px;
}
.botonColores,
.inputCantidad {
  width: 37px;
  height: 30px;
}
.botonColores:hover,
.botonTalles:hover {
  border: 1px solid green;
}
.botonColorAzul {
  background-color: #2a2a50;
}

/*carrusel de imagenes del detalle de producto*/
.carousel-indicators [data-bs-target] {
  width: 10px;
}
.carousel-control-prev {
  justify-content: start;
}
.carousel-control-next {
  justify-content: end;
}
/*boton de whatsapp*/
.botonWhatsApp {
  right: 35px;
  bottom: 30px;
}
.tamanioIconoWhatsApp {
  font-size: 50px;
}
/* inicio de media queries, ordenadas de menor a mayor resolucion*/
@media all and (min-width: 576px) {
  /* seccion detalles de producto */
  .botonTalles,
  .botonCantidad {
    width: 70px;
  }
  .botonColores,
  .inputCantidad {
    width: 70px;
    height: 30px;
  }
  .tamanioLetraComentarios {
    font-size: 12px;
  }
}
@media all and (min-width: 0px) and (max-width: 767px) {
  /* navBar */
  #buscador {
    width: 70%;
  }
  .navbar .container-fluid {
    display: initial;
  }
  #seccionBuscarYHamburguesa {
    display: flex;
    justify-content: space-between;
  }

  /* destacados */
  .cardDestacados h5,
  p {
    font-size: 15px;
  }
  .cardDestacados .card-body {
    padding: 0px 16px;
  }
  .promociones {
    height: 300px;
  }
  /* detalles de categoria zapatillas */
  .banner-img {
    height: 35vh;
  }

  .cardCategorias {
    height: 300px;
  }

  .cardCategorias .card-img-top {
    width: 60%;
    height: 150px;
    margin: 0 auto;
  }
  /* error 404 */
  #imgError404 {
    width: 50%;
  }
}
@media all and (min-width: 768px) and (max-width: 991px) {
  /* navBar */
  .navbar .container-fluid {
    display: flex;
    flex-wrap: nowrap;
  }
  /* destacados */
  .contenedorCardDestacados .cardDestacados .card-body {
    height: 220px;
  }
  /* detalles de categoria zapatillas */
  .banner-img {
    height: 40vh;
  }

  .cardCategorias {
    margin-bottom: 2em;
    margin-top: 2em;
  }

  .cardCategorias .card-img-top {
    width: 60%;
    height: 200px;
  }
  /* error 404 */
  #imgError404 {
    width: 100%;
  }
  /* pagina detalles de producto */
  .botonTalles,
  .botonCantidad {
    width: 42px;
  }
  .botonColores,
  .inputCantidad {
    width: 42px;
    height: 30px;
  }
  .tamanioLetraComentarios {
    font-size: 13px;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  /* destacados */
  .contenedorCardDestacados .cardDestacados .card-body {
    height: 220px;
  }
  /* pagina detalles de carrito */
  .imagen-ropa {
    width: 50%;
  }
  /* error 404 */
  #imgError404 {
    width: 25%;
  }
  /* pagina detalles de producto */
  .tamanioImgDetalleProducto {
    width: 75%;
  }
  .tamanioLetraComentarios {
    font-size: 14px;
  }
}
@media all and (min-width: 1200px) {
  /* destacados */
  .contenedorCardDestacados .cardDestacados .card-body {
    height: 200px;
  }
  /* pagina detalles de carrito */
  .imagen-ropa {
    width: 50%;
  }
  /* error 404 */
  #imgError404 {
    width: 25%;
  }
  /* pagina detalles de producto */
  .tamanioImgDetalleProducto {
    width: 75%;
  }
  .tamanioLetraComentarios {
    font-size: 14px;
  }
}
