.solucoesSection {
    padding: 5rem 0 10rem 0;
}

.solucoesWrapper {
    width: 83.33%;
    margin: 0 auto;
    max-width: 1600px;
}

.solucoesHeaderWrapper {
    padding: 10rem 0;
    width: 83.33%;
    margin: 0 auto;
}

.solucoesHeader {
    width: 100%;
    padding: 5rem 0 10rem 0;
}

.gray-text {
    color: rgba(var(--color-almostBlack), 0.35);
}

.solucoesHeaderActions {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 5rem;
    justify-content: space-between;
    gap: 2rem;
}

.solucoesHeaderLinks ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 3;
    gap: 0.5rem;
}

.solucoesHeaderLinks ul a {
    color: rgba(var(--color-almostBlack), 0.75);
    background-color: rgba(var(--color-lightBlue), 0);
    border: 1px solid rgba(var(--color-lightBlue), 0);
    border-radius: 5rem;
    padding: 0.5rem;
}

.solucoesHeaderLinks ul a:hover {
    color: rgba(var(--color-lightBlue), 0.75);
    background-color: rgba(var(--color-lightBlue), 0.15);
    border: 1px solid rgba(var(--color-lightBlue), 0.25);
}

.solucoesGridWrapper,
.solucoesGridWrapper-03 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solucoesCategoryWrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solucoesCardsWrapper {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.solucoesGridTitle h4 {
    width: 100%;
    border-bottom: 1px solid rgba(var(--color-laranBlue), 0.5);
    padding: 0 0 0.5rem 0;
    margin: 0 0 1rem 0;
    color: rgba(var(--color-laranBlue), 0.75);
}

.solucoesCard {
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    background-color: rgba(var(--color-blueishGray), 0.8);
    border: 1px solid rgba(var(--color-laranBlue), 0.1);
    color: rgba(var(--color-almostBlack), 0.75);
    padding: 1rem;
    height: 100%;
    gap: 1rem;
}

.solucoesCard:hover {
    background-color: rgba(var(--color-blueishGray), 1);
    border: 1px solid rgba(var(--color-laranBlue), 0.2);
    color: rgba(var(--color-almostBlack), 1);
    box-shadow: 0 2rem 3rem rgba(var(--color-black), 0.2);
    cursor: pointer;
}

.solucoesCard-Inactive {
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    background-color: rgba(var(--color-blueishGray), 0.8);
    border: 1px solid rgba(var(--color-laranBlue), 0.1);
    color: rgba(var(--color-almostBlack), 0.75);
    padding: 1rem;
    height: 100%;
    gap: 1rem;
    opacity: 0.5;
}

.solucoesCard a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(var(--color-laranBlue), 0.90);
}

.solucoesCard a p {
    color: rgba(var(--color-almostBlack), 0.5);
}

.solucoesCardContent img {
    height: auto;
    border-radius: 1rem;
}

.solucoesCardContent {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {

    .solucoesHeaderActions,
    .solucoesHeaderLinks ul,
    .solucoesGridWrapper-03 {
        flex-direction: row;
    }

    .solucoesCategoryWrapper {
        flex: 1;
    }

    .solucoesGridWrapper-03 .solucoesCardsWrapper {
        grid-template-columns: repeat(2, minmax(20rem, 1fr));
    }
}