section.saiba-mais {
    background-color: #dedede;
    padding: 2rem 1rem;
}
section.saiba-mais h6 {
    font-family: "Bebas Neue";
    text-align: center;
    font-size: 2rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1.5px;
}
section.saiba-mais h6 > span {
    color: #a4a48d;
}
section.saiba-mais h6 a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
section.saiba-mais h6 a span {
    color: #666652;
    border-bottom: 2px solid #666652;
    display: inline-block;
}
section.saiba-mais .tag-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
}
section.saiba-mais .tag-arrow svg {
    fill: #666652;
    width: 1.5rem;
}
section.saiba-mais h6 a:hover span {
   color: #a4a48d;
   border-color: #a4a48d;
}
section.saiba-mais h6 a:hover .tag-arrow {
    transition: .3s;
    background-color: #a4a48d;
}
section.saiba-mais h6 a:hover svg {
    fill: #666652;
}
@media (max-width: 500px) {
    section.saiba-mais h6 {
        font-size: 1.5rem;
        line-height: 1.65rem;
        display: grid;
    }
    section.saiba-mais .tag-arrow {
        width: 30px;
        height: 30px;
    }
    section.saiba-mais .tag-arrow svg {
        width: 1rem;
    }
    section.saiba-mais h6 a {
        flex-direction: column;
        gap: 10px;
    }
}