section.proverbios__page {
    padding: 90px 0;
}

section.proverbios__page ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

section.proverbios__page li {
    padding:45px 30px;
    padding-left: 50px;
    border-radius: 8px;
    background: #f5f5f5;
    position: relative;
    transition: all .3s;
}

section.proverbios__page li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}


section.proverbios__page li:hover {
    transform: scale(1.05);
}

section.proverbios__page li h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--azul);
}

section.proverbios__page li h3:before {
    content: '\f10d'; 
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    position: absolute;
    margin-left: -25px;
    margin-top: -10px;
    color: var(--azul-escuro);
    display: block;
}