.decretos {
    margin: 0;
    padding: 0;
    padding-inline: 10%;

    .anexo {
        display: flex;

        height: 60px;


        &:nth-child(even) a {
            background: #D9D9D9;
        }

        a {
            all: unset;

            display: flex;
            align-items: center;
            text-align: justify;
            box-sizing: border-box;

            height: 100%;
            width: 100%;

            position: relative;
            left: 0;

            padding-inline: 70px;

            color: var(--verde-escuro);
            background: #F6F5F5;

            transition: 250ms;
            cursor: pointer;

            &::before {
                content: '';
                height: 0;
                width: 2px;

                position: absolute;
                left: 0;

                background-color: var(--verde-escuro);
                transition: 250ms;
            }

            &:hover,
            &:focus-visible,
            &:focus {
                .icone-link-externo {
                    margin-left: 10px;
                    opacity: 1;
                }
            }

            &:hover,
            &:focus-visible {
                left: 10px;
                text-decoration: none;
            }

            &:hover::before,
            &:focus-visible::before {
                content: '';
                height: 100%;
            }

            .icone-link-externo {
                width: 10px;
                opacity: 0;
                transition: 250ms;
            }
        }

        p {
            margin: 0px;
            font-size: 1.2rem;

            overflow: hidden;
            text-overflow: ellipsis;
            text-wrap-mode: nowrap;

            color: var(--verde-escuro);
        }
    }
}


.container-botoes-modal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    margin: auto;
    margin-top: 50px;

    .botao-abrir-modal {
        position: relative;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;

        padding: 10px 20px;
        border: 1px solid var(--verde-escuro);
        border-radius: 10px;

        background-color: transparent;
        color: var(--verde-escuro);
        overflow: hidden;
        text-decoration: none;
        transition: var(--delay-default);

        &::before {
            content: '';
            position: absolute;
            width: 0px;
            aspect-ratio: 1 / 1;
            background-color: #ffffff;
            clip-path: circle(50% at 50% 50%);
            z-index: -1;
            transition: var(--delay-default);
        }

        &:hover{
            color: white;

            &::before {
                content: '';
                position: absolute;
                width: calc(100% + 10px);
                background-color: var(--verde-escuro);
                z-index: -1;
            }
        }
    }
}

.modal{

    .conteudo-texto{
        margin-block: 20px;
    }

    h6{
        margin-left: 25px;
        font-weight: 800;
    }
    p{
        text-indent: 25px;
        text-align: justify;
        margin-bottom: 8px;
    }
    .imagem-iss{
        display: block;
        margin: auto;
    }
}






.link {
    color: #00569c;
    text-decoration: none;

    --reversed-link-gap: min(100%, 1.35em);
    background: linear-gradient(to right, currentColor, currentColor) 0 var(--reversed-link-gap)/0 1px no-repeat;
    background-position-x: right;
    transition: background-size .5s cubic-bezier(.3, 1, .3, 1);

    &:hover {
        background-position-x: left;
        background-size: 100% 1px;
    }
}


@media (max-width: 425px) {
    .decretos {
        padding-inline: 30px;

        .anexo {
            a {
                padding-inline: 20px;
            }
        }
    }
}