/*======== CATALOGO DETALLE 1 ========*/
.catalogo-detalle1-slider {
  background-image: url("../img/carta/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  display: flex;
  align-items: center;
}
.catalogo-detalle1-slider-div {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(3px);
  padding: 2rem 1rem;
}
.catalogo-detalle1-slider-int {
  max-width: 900px;
  text-align: center;
  color: white;
}

/*======== RESPONSIVE ========*/

/*==================SECCIÓN 2=================*/
.secc2 {
  padding-top: 120px;
  padding-bottom: 120px;
  max-width: 1600px;
}
.img-producto {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  background-position: center;
  background-size: cover;
}
.img-producto::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

/*==================TEXTOS=================*/
.secc2_textos {
  margin-left: 30px;
  width: 35%;
  gap: 0.5rem;
}
.secc2_titulo {
  color: black;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ff0040;
}
.secc2_descripcion {
  color: black;
}
.secc2_regresar {
  margin-top: auto;
}
.btn-regresar {
  background-color: transparent;
  border: 2px solid #ff0040;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: black !important;
}
.btn-regresar:hover {
  transform: scale(1.05);
  border: 2px solid #ff0040;
  box-shadow: 0 0 5px 0px #ff0040;
}
.div-imagenes {
  display: flex;
  gap: 0.5rem;
  width: 70%;
  max-width: 600px;
}
.carousel-inner {
  overflow: unset;
}
.img-detalle {
  border-radius: 0.5rem;
  margin-left: auto;
  width: 100%;
  background-color: #efefef;
  background-position: center;
  background-size: cover;
  position: relative;
}
.img-detalle::after {
  content: "";
  width: 100%;
  display: block;
  padding-bottom: 100%;
}
.indicadores-carucel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.indicadores-carucel button {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
  height: 5vw;
  width: 5vw;
  max-width: 60px;
  max-height: 60px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 0.25rem;
  opacity: 0.4;
  transition: all 0.4s ease-in-out;
}

.indicadores-carucel button.active {
  opacity: 1;
}
/*==================RESPONSIVE=================*/
@media (min-width: 320px) {
  .secc2 {
    padding-top: 80px;
    padding-bottom: 80px;
    flex-direction: column;
  }
  .secc2_textos {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .btn-regresar {
    margin-top: 20px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .secc2 {
    padding-top: 120px;
    padding-bottom: 120px;
    flex-direction: row;
  }
  .secc2_textos {
    margin-left: 30px;
    margin-right: unset;
    width: 60%;
  }
  .btn-regresar {
    width: unset;
  }
}
@media (min-width: 1440px) {
  .secc2_textos {
    width: 55%;
  }
  .secc2 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1200px) {
  .secc1-bg {
    height: unset;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 992px) {
  .nosotros1-slider {
    height: unset;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .secc2 {
    gap: 3rem;
  }
  .div-imagenes {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 500px;
  }
  .indicadores-carucel {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .secc1-bg {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
