section.section-solucoes h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 780px;
    margin: 0 auto 1rem auto;
    align-items: center;
    font-size: 2.8rem;
    gap: 1rem;
    letter-spacing: 1px;
}

section.section-solucoes h2 span::before,
section.section-solucoes h2 span::after {
    content: "";
    height: 1px;
    width: 80px;
    background: #cb8418;
}

section.section-solucoes h2 span::before {
    margin-right: 15px;
}

section.section-solucoes h2 span::after {
    margin-left: 15px;
}

section.section-solucoes h2 span {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    color: #cb8418;
    align-items: center;
}

section.section-solucoes p {
    color: #474747;
    margin: 1rem auto;
    text-align: center;
    max-width: 760px;
    line-height: 2;
}

section.section-solucoes-box {
    background: #fefefe;
    border-radius: 1rem;
}

section.section-solucoes-box {
    background: #fefefe;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.5);
}

section.section-solucoes-box p {
    text-align: justify;
    margin: 1rem 0;
    line-height: 1.5;
}

section.section-solucoes-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
}

section.section-solucoes-box h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
}

section.section-solucoes-box.red h3::after {
    background: #b83933;
}

section.section-solucoes-box.green h3::after {
    background: #61a969;
}

.section-solucoes-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 50px 0;
}

section.section-solucoes-box.red {
    border-left: #fefefe solid 4px;
    transition: 0.5s ease-out;
}

section.section-solucoes-box.red:hover {
    border-color: #b83933;
    transition: 0.5s ease-out;
}

section.section-solucoes-box.green {
    border-left: #fefefe solid 4px;
    transition: 0.5s ease-out;
}

section.section-solucoes-box.red svg {
    background: #fef4f3;
    border-radius: 100%;
    padding: 1rem;
}

section.section-solucoes-box.green:hover {
    border-color: #61a969;
    transition: 0.5s ease-out;
}

section.section-solucoes-box.green svg {
    background: #f3f8f4;
    border-radius: 100%;
    padding: 1rem;
}

section.section-solucoes-box.red a.btn-solucoes {
    color:#b83933;
    text-transform:uppercase;
    font-weight: 700;
}

section.section-solucoes-box.red a.btn-solucoes:hover {
    color:#5f0500;
}

section.section-solucoes-box.green a.btn-solucoes {
    color:#61a969;
    text-transform:uppercase;
    font-weight: 700;
}
section.section-solucoes-box.green a.btn-solucoes:hover {
    color:#004408;
}

@media screen and (max-width: 991px) {
    .section-solucoes-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 991px) {
    section.section-solucoes h2 {
        font-size: 1.8rem;
    }
}