:root {
    --azul: #2A3146;
    --celeste: #1970D7;
    --amarillo: #F2D850;
    --verde:#C1E376;
}


.main-marcas{
    /* padding-top: 10vh; */

}

.div-marcas{
    padding: 5vh;
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.titulo-marcas{
    color: var(--azul);
    font-family: 'Bebas Neue', 'sans-serif';
    font-size: 5vh;
    text-align: center;
}

.contenedor-marcas{
    display: flex;
    gap:0 3vw;
    flex-wrap: wrap;
    justify-content: center;

    @media (max-width:900px) {
        gap: 3vh;
    }
}

.marca{
    padding: .5vw;
    border-radius: 0.8cap;
    margin: 2vh 3vw;

    &:hover{
        scale: 1.01;
        cursor: pointer;

        box-shadow: 1px 1px 10px rgb(189, 188, 188);
    }

    @media (max-width:900px) {
        margin: 0;
    }
}

.marca-marcas{
    width: 35vh;
    height: 15vh;

    @media (max-width:590px) {
        width: 30vh;
        height: 15vh;
    }
}

/* septimo-div */
.septimo-div{
    background: url(imagenes/generica3.png);
    filter: brightness(0.3);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    box-shadow: 1px 1px 10px black;
  }
  