.hero{
    overflow: hidden;
    position: relative;

    & .container{
        gap: 2.5rem;
        padding-block: 160px;
    }

    & .titulo{
        color: var(--gov-cor-azul);
        font-size: 1.5rem;
        font-weight: 500;
    }
}

    .links{
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 866px;

        & .lista{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
    }

        .card-link{
            background-color: #FFF;
            border-radius: .25rem;
            box-shadow: var(--sombra);
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            height: 240px;
            justify-content: space-between;
            padding: 1.5rem;

            & .descricao{
                display: flex;
                flex-direction: column;
                gap: 1.5rem;

                & .titulo{
                    color: var(--cor-azul);
                    font-size: 1.25rem;
                    font-weight: 500;
                }

                & p{
                    line-height: 150%;
                }
            }
        }

    .mockup{
        height: 550px;
        position: absolute;
        right: -5%;
        top: 2rem;
        width: auto;
        z-index: -1;
    }

/* RESPONSIVIDADE */
@media screen and (width < 1522px) {
    .mockup{
        display: none;
    }
}

@media screen and (width < 860px) {
    .hero .container{
        padding-block: 2.5rem;
    }

    .links{
        gap: 1rem;

        & > .titulo{
            font-size: 1.25rem;
            text-align: center;
        }

        & .lista{
            display: flex;
            flex-direction: column;
        }
    }

        .card-link{
            gap: 2.5rem;
        }
}