#portfólio .center > div{
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
}

.projeto{
    width: calc(90% / 3);
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--box_shadow);
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
    transition: 0.5s;
}

.projeto:hover, .projeto:focus{
  box-shadow: 3px 3px 10px #0034be;
}

.projeto img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: inherit;
    background-color: red;
}

.projeto p{
    overflow: hidden;
    height: 100%;
    max-height: 60px;
}

.projeto a{
    padding: 10px 15px;
    background-color: orange;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 10px;
}