/* Estilo automático para a página: portal-tiss */

#cabecalho{
    padding: 24px !important;
    min-height: auto !important;
}

.portal {
    padding: 80px 0;

    h2 {
        color: var(--azul-tercirio);
        font-size: 36px;
        font-weight: 700;
        line-height: 115%;
    }
    .text-portal {
        color: var(--azul-texto);
        font-size: 18px;
        font-weight: 400;
        line-height: 160%;

        li{
            color: var(--azul-texto);
            font-size: 18px;
            font-weight: 400;
            line-height: 32px;
        }
        
        a{
            color: var(--azul-secundrio);
            font-size: 18px;
            font-weight: 600;
            line-height: 32px; 
            text-decoration-line: underline;
        }
    }

}

#lista-documentos{
    padding: 80px 0;
    background: #F8FCFF;
    
    h3{
        text-align: center;
        color: var(--azul-tercirio);
    }

    h2{
        text-align: center;
        color: var(--azul-tercirio);
        margin: 16px 0 40px;
    }

    .card-download {
        border-radius: 0;
        border: 1px solid #CAD9F0;
        background: #FFF;
        box-shadow: 4px 4px 10px 0 rgba(82, 95, 111, 0.16);
        display: flex;
        justify-content: space-between;
        padding: 24px;
        align-items: center;

        .nome-arquivo {
            display: flex;
            align-items: center;
            min-height: 80px;

            .nome-tipo{
                margin-left: 8px;

                .nome-file {
                    color: var(--azul-texto);
                    font-size: 18px;
                    font-weight: 600;
                    margin: 0;
                }
                .nome-type {
                    color: #525F6F;
                    font-size: 14px;
                    font-weight: 500;
                    margin: 0;
                }
            }
        }

        &:first-child {
            border-radius: 24px 24px 0 0;

        }
        &:last-child {
            border-radius: 0 0 24px 24px;

        }

        .link-download {
            color: var(--azul-secundrio, #235AEB);
            font-size: 16px;
            font-weight: 500;
        }

    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .portal {
        padding: 60px 0;

        h2{
            font-size: 30px;
        }
    }

    #lista-documentos {
        padding: 60px 0;
    }
}

/* MOBILE */
@media all and (max-width: 767px) {
    .portal {
        padding: 40px 15px;

        h2{
            font-size: 26px;
        }
    }

    #lista-documentos {
        padding: 40px 15px;

        h2 {
            text-align: left;
            margin: 16px 0;
        }

        .card-download {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;

            .nome-arquivo {
                min-height: auto;
            }
        }
    }
}