.line-brands {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.line-brands a {
    display: block;
    width: 33%;
    min-width: 310px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}
.line-brands a::after {
    content: "Más información";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    text-align: center;
    color: #262B59;
    backdrop-filter: blur(8px);
    line-height: 148px;
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    font-weight: bold;
    opacity: 0;
    transition: 0.4s;
    text-decoration: underline;
}
.line-brands a:hover::after {
    opacity: 1;
}

.line-brands a img{
    width: 100%;
    padding: 30px;
}
.line-brands a:hover{
    transform: scale(1.1);
}
