/* Estilo automático para a página: prestador */


#quem-prestador{
    padding: 80px 0;

    h2{
        color: var(--azul-tercirio);
        line-height: 42px; 
        margin-bottom: 20px;
    }

    h3{
        color: var(--azul-tercirio);
        font-weight: 600;
        line-height: 20px;
    }

    .text-prestador{
        color: var(--azul-texto);
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
    }
    .img-prestacao{
        width: 100%;
        object-fit: cover;
        border-radius: 30px;
    }
}

#lista-pretador{
    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;
    }

    .centralizacao{
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .card-prestador {
        border-radius: 24px;
        border: 1px solid var(--traado, #CAD9F0);
        background: #FFF;
        box-shadow: 4px 4px 10px 0 rgba(82, 95, 111, 0.16);
        padding: 24px;
        position: relative;

        .icon-prest {
            margin-bottom: 16px;
        }

        
        .seta {
            position: absolute;
            right: 20px;
            top: 20px;
        }

        .tit-prest {
            color: var(--azul-texto, #060B35);
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }
        .desc-prest {
            color: #525F6F;
            font-size: 14px;
            font-weight: 500;
            margin: 0;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) {

    #cabecalho{
        padding: 24px 16px 40px !important;
    }

    #quem-prestador {
        padding: 40px 15px;
        
        h2{
            font-weight: 600;
            line-height: 120%;
        }
    }

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

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

