.linea__producto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 1136px;
    height: 306px;
    align-self: center;
}

.linea__producto__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 871px;
    width: 1133px;
    height: 38px;    
}

.linea__producto__top__titulo {
    width: 148px;
    height: 38px;
    font-weight: 700;
    font-size: 32px;
    color: #464646;

}
.linea__producto__top__button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 97px;
    height: 24px;
    cursor: pointer;;
}

.linea__producto__top__button p {
    width: 65px;
    height: 19px;
    font-weight: 700;
    font-size: 16px;
    color: #2A7AE4;
}

.linea__producto__productos {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 1136px;
    height: 252px;
}

.linea__producto__productos__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 176px;
    height: 252px;
    transition: 0.5 ease-in-out;
}
.linea__producto__productos__item:hover {
   transform: scale(1.05);
}

.linea__producto__productos__item__title {
    width: 176px;
    height: 16px;
    font-weight: 500;
    font-size: 14px;
    color: #464646;
}

.linea__producto__productos__item__precio {
    width: 176px;
    height: 19px;
    font-weight: 700;
    font-size: 16px;
    color: #464646;
}

.linea__producto__productos__item__ver {
    width: 100px;
    height: 19px;
    font-weight: 700;
    font-size: 16px;
    color: #2A7AE4;
    cursor: pointer;
}

.linea__producto__productos__item__ver:hover {
    text-decoration: underline;
}