body{
    scroll-behavior: smooth;
}
.cabecera-nego>.titulo {
    position: absolute;
    top: 0;
    left: 51%;
    width: 49%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-transform: uppercase;
    text-shadow: black 0 0 2px;
    font-size: 3em;
    color: white;
}

.contenedor-paneles{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

@media (max-width: 500px) { /* Movil */
    .contenedor-paneles{
        justify-content: center;
    }
    h2{
        text-align: center;
    }
    .panel-busqueda{
        width: 100% !important;
        height: 400px !important;
    }
    .contenedor-imagen{
        height: 95% !important;
        width: 91.7% !important;
        max-width: 449px !important;
    }
    .contenedor-imagen>img{
        width: 100% !important;
        height: 98% !important;
    }
    .tarjeta-titulo{
        font-size: 30px !important;
        margin-top: 80% !important;
        padding-bottom: 25dvh !important;
    }
    .btn-dias-precio-container{
        margin-top: -80% !important;
    }
}

.panel-busqueda {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: 1px solid lightgrey;
    border-radius: 1em;
    overflow: hidden;
    cursor: pointer;
    width: 32%;
    height: 28vw;
    margin-bottom:1em;
    min-height: 300px;
    max-height: 400px;
    min-width: 325px;
    max-width: 450px;
}
.contenedor-imagen{
    min-width: 322px;
    /*max-width: 440px;*/
    align-self: start !important;
    width:  calc(24% + 80px); //calc(25vw + 15px);
    /*height: calc(150px + 9vw);*/
    position: absolute;
    height: 40dvh;
    min-height: 250px;
    transition: height .5s;
    &>img{
        border-radius: 1em;
        width: 100%;
        object-fit: cover;
        height: 100%;
        max-height: 400px;
        transition: height 0.5s ease-in-out, opacity .5s ease-in-out, mask-image .5s;
    }
}
@media (max-width: 1900px){
    .contenedor-imagen{
        width: calc(28% + 30px);
        height: 35vh;
    }
}
@media (max-width: 1560px) {
    .contenedor-imagen{
        width: calc(26.5% + 50px);
        height: 35vh;
    }
}
@media (max-width: 1520px) {
    .contenedor-imagen{
        width: calc(26.2% + 50px);
        height: 35vh;
    }
}
@media (max-width: 1200px) {
    .contenedor-imagen{
        width: calc(26.2% + 50px);;
        height: 30vh;
    }
    .tarjeta-titulo{
        margin-top: 60% !important;
    }
}
.panel-busqueda:hover .contenedor-imagen .tarjeta-resumen{
    opacity: 1;
}
.panel-busqueda:hover img{
    opacity: 1;
    /*border-radius: 1em 1em 0px 0px !important;*/
}
.panel-busqueda:hover{
    border-color: var(--main-color);
    box-shadow: var(--main-color) 0 0 15px;
}
/*.contenedor-imagen .tarjeta-resumen{*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    padding: 0.5em;*/
/*    text-align: left;*/
/*    color: #353535;*/
/*    text-shadow: white 0 0 1px;*/
/*    font-weight: bold;*/
/*    transition: opacity 0.5s ease-in-out;*/
/*    opacity: 0;*/
/*}*/
.tarjeta-resumen{
    justify-content: center;
    position: absolute;
    opacity: 0;
    display: none;
    width: 100%;
    align-items: end;
    height: 0;
    text-align: center !important;
    bottom: 0 !important;
    z-index: 2 !important;
}
.panel-busqueda:hover>.contenedor-imagen{
    height: 28vh !important;
    border-radius: 1em 1em 1em 1em;
    /*box-shadow: inset 0px -5px 7px 0px rgba(0,0,0,0.49);*/
    &>img{
        mask-image: linear-gradient(rgba(0, 0, 0, 1) 85%,rgba(0, 0, 0, 0) 100%);
    }
}
.panel-busqueda:hover>.tarjeta-titulo{
    /*background-color: rgba(0,0,0,0);*/
    /*margin-top: 70% !important;*/
    transform: translateY(10%);
    margin-bottom: 0;
    background-color: rgba(255,255,255,0);
    backdrop-filter: none;
    border: 0;
}

.panel-busqueda:hover>.btn-dias-precio-container{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: .7;
}
/*.panel-busqueda:hover .tarjeta-resumen{*/
/*    opacity: 1;*/
/*    display: flex;*/
/*    animation: goup .5s linear forwards;*/
/*}*/
/*@keyframes goup {*/
/*    0%{*/
/*        opacity: 0;*/
/*        height: calc(250px + 100%);*/
/*    }*/
/*    100%{*/
/*        opacity: 1;*/
/*        height: calc(200px + 60%);*/
/*    }*/
/*}*/

.tarjeta-titulo {
    display: flex;
    justify-content: center;
    align-items: start;
    text-align: center;
    padding: 0.5em;
    margin-top: 60%;
    font-size: calc(.7dvw + 10px);
    z-index: 1;
    background-color: rgba(255,255,255,0.2);
    border-radius: .5em .5em 0px 0px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,.3);
    width: 100%;
    height: 100%;
    padding-bottom: 10dvh;
    transition: margin-top .5s, background-color .5s ease-in-out, transform .5s ease-in-out;
}
.btn-dias-precio-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1em;
    margin-top: -55%;
    z-index: 2 !important;
    transition: scale .5s ease-in-out, width .5s ease-in-out, opacity .5s ease-in-out, transform .5s ease-in-out;
}
.dias-precio {
    text-align: right;
}

.panel-tarjeta {
    border: 0 !important;
    border-radius: 1em !important;
    overflow: hidden;
}
.panel-tarjeta:hover {
    transition: box-shadow .5s ease-in-out, border-color .5s ease-in-out;
    border-color: var(--main-color);
    box-shadow: var(--main-color) 0 0 15px;
}

@media (min-width: 1700px) {
    .contenido {
        width: 70%;
    }
}