.ContenedorProductosDestacados{
  display: flex;
  justify-content: space-between;
  gap: 30px;
 /* margin: 80px 0;*/
 padding-top: 40px;
}

.ContenedorDestacados{
  width: 75%;
}

.ContenedorBannerImg{
  width: 20%;
}

.FlexTitleArrows{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.FlexTitleArrows h2{
  color: var(--ColorBtn);
  font-size: 35px;
      font-family: 'Orbitron';
}

.FlexTitleArrows h2 span{
  color: var(--ColorBlack);
}

.FlexArrows{
  display: flex;
  gap: 10px;
  align-items: center;
}

.arrowFlecha{
  background-color: var(--ColorBtn);
  padding: 12px 14px;
  color: white;
  cursor: pointer;
  transition: all ease .3s;
}

.arrowFlecha:hover{
  background-color:  #0C5798;
}

/* PRODUCTOS */
.ProductoDestacado{
  width: 330px;
  border: 2px solid var(--bordeClaro);
  padding-top: 35px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ContenedorImg{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.ContenedorImg img{
  width: 100%;
}

.FlexButon{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.FlexButon a button{
    width: 100%;
    padding: 12px 0px;
    border: none;
    color: var(--ColorWhite);
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

}


.FlexButon a button i{
  font-size: 22px;
}

.FlexButon .Detalle{
  background-color: var(--ColorBtn);
}

.FlexButon .Detalle:hover {
  background-color: #0C5798;
}


.FlexButon .Cotizar{
  background-color: var(--ColorVerde);
}

.textoProductoD{
  padding: 30px 0px;
  font-family: Roboto;
  font-weight: 600;
  text-transform: uppercase;
}

/* Swiper exclusivo */
.swiperDest {
  width: 100%;
  overflow: hidden;
  margin: 40px 0px;
}

.swiperDest-slide {
  display: flex !important;
  justify-content: center;
}
/* Evita el overlay del swiper original */
.swiperDest .swiper-slide::after {
    content: none !important;
}





.ContenedorBannerImg {
  height: 500px;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: var(--ColorWhite);
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 30px;
}
.ContenedorBannerImg h2{
  font-family: Orbitron;
}

.Sombra {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 99, 192, 0.74);
  z-index: 1;
}

.ContenedorBannerImg > *:not(.Sombra) {
  position: relative;
  z-index: 2;
}



@media (max-width:900px){
  .ContenedorDestacados{ width: 60%; }
  .ContenedorBannerImg{ width: 30%; }
  .ContenedorImg{min-height: 0px;}
}

@media (max-width:700px){
  .ContenedorProductosDestacados{
    flex-direction: column;
  }
  .ContenedorDestacados,
  .ContenedorBannerImg{
    width: 100%;
    height:auto;
    min-height:350px;
  }
  .ContenedorImg{
    min-height: 200px;
  }
}
