/****COLORES***********----------------------------------*******/

:root {--main: #bc964f; --negro: rgb(10, 10, 10); --blanco: #ffffff;}



.header-modelos{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 180px;
    background-image: url(../img/footer2.jpg);
    background-repeat: repeat;
    background-position: center bottom;
    padding-left: 4%;
}

.header-modelos h2{
    color: var(--main);
    padding-left: 15%;
    font-family: "Inter", sans-serif;
    font-size: 3rem;
    font-weight: 300;
}

.header-modelos .logo-modelo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
}

.header-modelos img{
    width: 100%;
}

.sliderInterno{
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: fit-content;
    margin: auto;
}

.sliderInterno img{
    width: 100%;
}


.menuSlider{
    display: flex;
    place-content: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.botones{
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    cursor: pointer;
}

.botones img{
    width: 100%;
    transition: transform .2s ease;
}

.botones img:hover{
    transform: scale(1.1);
}

.botones-active{
    border: 1px solid var(--main);
}

.bton-cerrar{
    position: fixed;
    top: 200px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 8;
}

.bton-cerrar img{
    width: 100%;
    transition: transform .2s;
}

.bton-cerrar img:hover{
    transform: scale(1.1);
}

@media screen and (max-width:750px){
    .sliderInterno{
        margin-top: 60px;
    }
    .bton-cerrar{
        position: absolute;
        width: 40px;
    }
}