.cabecalho {
    background: #003366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 10px 15px;
}

.logo {
    width: 60px;
}

.home {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
}

.opcao {
    display: flex;
    flex-direction: column;

    width: 320px;
    min-height: 110px;

    margin: 15px auto;
    padding: 15px;

    background: #1976d2;
    color: white;

    border-radius: 10px;

    justify-content: center;
    align-items: center;
}

.boas-vindas {

    text-align: center;

    max-width: 650px;

    margin: 20px auto 10px;

    padding: 0 20px;
}

.boas-vindas h1 {

    color: #003366;

    font-size: 24px;

    margin-bottom: 10px;
}

.boas-vindas p {

    color: #555;

    line-height: 1.5;

    margin: 0;
}




.opcao-laranja {
    background: #e67e22;
}

.opcao-laranja:hover {
    background: #d35400;
}

.opcao-desabilitada {
    background: #d8d8d8;
    color: #666;
    cursor: default;
}

.opcao-desabilitada:hover {
    background: #d8d8d8;
    transform: none;
}

.rodape {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 20px;
    color: #777;
    font-size: 13px;
}

.opcao-azul-desabilitada {

    background: #1976d2;

    color: white;

    opacity: 0.6;

    cursor: not-allowed;
}

.opcao-azul-desabilitada:hover {

    background: #1976d2;

    transform: none;
}


.rodape {

    text-align: center;

    margin-top: 30px;

    padding-bottom: 20px;

    color: #777;

    font-size: 13px;
}

.rodape-link {

    color: inherit;

    text-decoration: none;
}

.rodape-link:hover {

    color: #1976d2;
}