/*-- Página Processos--*/

body {
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100%;
}

.botao-voltar-menu {
    position: fixed;
    top: 16px;
    right: 24px;
    z-index: 999;
}

.botao-voltar-menu .btn-voltar-dash {
    background: #6a0dad;
    border: 1.5px solid #6a0dad;
    border-radius: 20px;
    color: white;
}

.botao-voltar-menu .btn-voltar-dash:hover {
    background: #530a9e;
    border-color: #530a9e;
    color: white;
}




.titulo {
    text-align: center;



    h1 {
        font-size: 2.3em;
        background: linear-gradient(#000000, #8056c4);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 0;
        text-align: center;
        margin-top: 50px;
    }

    p {
        font-size: 18px;
        font-family: 'Times New Roman', Times, serif;
        opacity: 0.6;
        text-align: center;
    }
}

.card-grande {
    font-size: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;

    max-width: 280px;
    margin: 40px 20px;
    margin-top: 10px;
    
     color: #8056c4;
    text-align: center;
}

.card-grande  :hover {
    transform: translateY(-1.5px);
    background-color: #e1d0eb;
}


.cards-processos {
    font-size: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;

    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;

    color: #8056c4;
    text-align: center;
}


.card h2 {
    margin-top: 100px;
    text-align: center;
}


.cards-processos :hover {
    transform: translateY(-1.5px);
    background-color: #e1d0eb;
}


.card {
    background: rgb(231, 230, 230);
    border-radius: 25px;
    height: 280px;
    padding: 20px;
    flex: 1;
    border: 1px solid #dcd8e4;
    cursor: pointer;
    box-shadow: 0px 18px 35px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
    display: block;
}


/*--Página Agendamento de Devolução--*/

.card-agendamento {
    background: #dfe4ec;
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    align-items: center;
    gap: 20px;
    margin: 25px;

}

.texto h2 {
    margin-bottom: 24px;
}

.texto p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 22px;
}

.imagem-agendamento {
    display: flex;
    justify-content: center;
    align-items: center;

}

.imagem-agendamento img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
}


.imagem-interrogacao {
    display: flex;
    justify-content: center;
    align-items: center;
}


.imagem-interrogacao img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    filter: drop-shadow(0 100px 25px rgba(0, 0, 0, 0.25));
    
}

/**--Bloco Critérios de agendamento--**/

.tamanho-p h3{
    font-size: 1.1em;
}



/**-- Bloco Fluxo do Processo--**/

.titulo{
    font-size: 24px;
    margin-bottom: 27px;
    margin-top: -45px;
    text-align: left;
}



.fluxo-etapas {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    
}

/* cada etapa vira um layout horizontal */
.etapa {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

/* texto */
.texto-etapa {

    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 22px;
    min-width: 170px;

}

/* imagens */
.imagens-etapa {
    display: flex;
    gap: 8px;
}

.imagens-etapa img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


.card-agendamento-processo {
    background: #dfe4ec;
    border-radius: 25px;
    padding: 70px;
    margin: 25px;
    max-width: 100%;
    overflow: hidden;
}

.detalhe {
    font-size: 13px;
}

@media (max-width:900px) {
    .fluxo-etapas {
        grid-template-columns: 1fr;
    }
}

