section.frentes {
    padding: 90px 0;
    margin-top: 100px;
}

section.frentes .title {
    text-align: center;
    padding-top: 120px;
    position: relative;
    padding-bottom: 90px;
    position: relative;
}

section.frentes .title:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #dedede;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

section.frentes .title .icone {
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 30px #00000021;
    border-radius: 50%;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

section.frentes .title .icone svg {
    width: 70px;
    height: 70px;
    fill: var(--verde);
}

section.frentes .title h2 {
    color: var(--azul);
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

section.frentes .title h2:after {
    content: '.';
    color: var(--verde);
}

section.frentes .frentes__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

section.frentes .frentes__list .box {
    background: var(--azul);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
    position: relative;
    transition: all .4s;
    border: 3px var(--azul) solid;
}

section.frentes .frentes__list .box:hover {
    transform: scale(1.02);
    background: #fff;
    border-color: var(--verde);
}

section.frentes .frentes__list .box a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

section.frentes .frentes__list svg {
    width: 100px;
    height: 100px;
    fill: #fff;
}

section.frentes .frentes__list .box:hover svg {
    fill: var(--verde);
}

section.frentes .frentes__list h3 {
    color: #fff;
    text-transform: uppercase;
    font-weight:bold;
    font-size: 16px;
}

section.frentes .frentes__list .box:hover h3 {
    color: var(--azul);
}
