.grid-triplo{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.grid-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #EAF4FA;
    padding: 25px;
}
.grid-item .textos{
    display: flex;
    flex-direction: column;
}
.grid-item .textos h3{
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    color: #0c0d14;
}
.grid-item .textos p{
    color: #67697a;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    margin: 10px 0 20px;
}

.cta-padrao{
    background: #0484c5;
    border-radius: 164px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    border: none;
    width: 130px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
.cta-padrao:hover{
    background-color: transparent;
    color: var(--blue5);
    border: 2px solid var(--blue8);
}

@media screen and (max-width: 768px){
    .grid-triplo{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 575px){
    .grid-triplo{
        grid-template-columns: 1fr;
    }
}