.a {
    text-decoration: none !important;
}

.boxproduct {
    min-height: 380px;
    border-radius: 5px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
    transition: filter 0.3s ease; /* Agrega transición para el filtro de imagen */
}

.boxproduct1{
    min-height: 380px;
    border-radius: 5px;
    background:rgba(0,0,0,0);
    position:absolute;
    overflow: hidden;
    z-index:2;
}

.boxproduct1:hover {
    background:rgba(0,0,0,0.7) !important; /* Oscurece la imagen al hacer hover */
}

.boxproduct .titulo {
    padding: 10px;
    color: #ffffff;
    font-size: 22px; /* Mantiene el tamaño original del texto del título */
    line-height: 22px;
    text-align: left;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: font-size 0.3s ease; /* Agrega transición para el tamaño del texto */
}

.botonver {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.boxproduct .etiquetaproducto {
    position: absolute;
    left: 0;
    top: 100px; /* Ajusta la posición de la etiqueta */
    font-size: 14px; /* Aumenta el tamaño del texto de la etiqueta */
    line-height: 14px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 200px;
    font-weight: 600;
    text-align: left;
    padding: 5px 5px 5px 5px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    background: #00345a;
    transition: font-size 0.3s ease; /* Agrega transición para el tamaño del texto */
}

.boxproduct .boxprecio {
    position: absolute;
    bottom: 65px; /* Ajusta la posición del precio */
    right: 0;
    color: #ffffff; /* Mantiene el color original del precio */
    margin-right: 20px;
    margin-bottom: 0;
    z-index: 1; /* Asegura que el precio esté sobre el botón */
    transition: margin-bottom 0.3s; /* Agrega transición para la posición */
}

.boxproduct .boxprecio .desde {
    font-size: 12px;
    line-height: 12px;
    font-weight: bold;
    text-align: right;
    margin-bottom: 5px; /* Ajusta la posición del "desde" */
    text-shadow: 2px 2px 5px #656565;
}

.boxproduct .boxprecio .precio {
    font-size: 30px; /* Ajusta el tamaño del precio */
    line-height: 30px;
    font-weight: bold;
    text-align: right;
    margin-top: 0px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 5px #656565;
}







.botonidea {
   position: absolute;
   bottom: 5px;
   left: 50%;
   transform: translateX(-50%);
   width: 85%;
   margin-left: auto;
   margin-right: auto;
   background: rgb(0 0 0 / 50%);
   color: #fff;
   border-radius: 8px;
   z-index: 1;
   display: flex;
   justify-content: center;
   align-items: center; 
   transition: color 0.3s, background 0.3s;
   font-weight: 600;
   font-size: 18px;
   padding: 10px;
   text-align: center;
}


.botonidea:hover {
    color: #0045C0; /* Color de fuente hover */
    background: #fff; /* Color de fondo hover */
   border-radius: 8px;
}

.botonidea::after {
    content: "";
    background: #fff; /* Color de fondo hover */
    position: absolute;
    z-index: -1;
    padding: 16px 20px;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(0, 0);
    transition: all 0.3s ease;
       border-radius: 8px;

}

.botonidea:hover::after {
    transition: all 0.3s ease-out;
    transform: scale(1, 1);
}


.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border: none;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #0b5ed7;
    border: none;
    box-shadow: none;
    
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    border: none;
    box-shadow: none;
    
}

.btn-check:focus+.btn-primary, .btn-primary:focus:hover {
    color: #fff;
    background-color: #ea0029;
    border: none;
    box-shadow: none;
    
}

.btn-primary:hover{
    background-color: #ea0029;
}




.MultiCarousel { float: left; overflow: hidden; padding:0px; width: 100%; position:relative; }
.MultiCarousel .MultiCarousel-inner { transition: 1s ease all; float: left; }
.MultiCarousel .MultiCarousel-inner .item { float: left;}
.MultiCarousel .MultiCarousel-inner .item > div { text-align: center; padding:0px; margin:15px; background:#f1f1f1; color:#666;}
.MultiCarousel .leftLst, .MultiCarousel .rightLst { position:absolute; border-radius:50%;top:calc(50% - 20px); }
.MultiCarousel .leftLst { left:0; }
.MultiCarousel .rightLst { right:0; }
.MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { pointer-events: none; background:#ccc; } 
    