/* ALERTAS */
.container_alertas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.data_alerta {
    align-items: end;
    justify-content: end;
    display: flex;
    margin-top: 0.5rem;
}

.card_alerta {
    background: #ffffff;
    color: #000000;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card_alerta>span {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* ALERTAS */

/* PERFIL */
.perfil_header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #80808021;
}

.div_foto_perfil {
    position: relative;
}

.div_espaco_perfil {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.div_foto_perfil img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #000000;
    position: relative;
    object-fit: cover;
}

.icone_camera {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    color: #1b1f2a;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
    border: 1px solid #80808085;
}

.foto_input {
    display: none;
}

.dados_usuario h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.dados_usuario span {
    font-size: 0.9rem;
    color: #aaa;
}

.secao_perfil {
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #80808021;
}

.titulo_secao_perfil {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.div_inputs_perfil {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.div_dois_perfil_vertical {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 140px;
}

.div_dois_perfil_vertical span {
    font-size: 14px;
}

.div_dois_perfil_vertical input {
    width: 100%;
    padding: 8px 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: white;
    box-sizing: border-box;
}

.div_dois_perfil_vertical input:focus {
    outline: none;
}

.acoes_perfil {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn_padrao {
    border: none;
    border-radius: 8px;
    padding: 0.7rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn_salvar {
    background: #000064;
    color: #ffffff;
}

.btn_logout {
    background: #212224;
    color: #ffffff;
}

.btn_excluir {
    background: #ff0000;
    color: #ffffff;
}

.linha_dupla {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.linha_dupla .div_dois_perfil_vertical {
    flex: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal.hide {
    opacity: 0;
}

.modal-content {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: #000000;
    width: 90%;
    max-width: 480px;
    animation: fadeInScale 0.3s ease forwards;
    transform: scale(0.9);
    box-sizing: border-box;
    max-height: 90%;
    overflow: auto;
}

.icon-sucesso,
.icon-erro {
    font-size: 52px;
    margin-bottom: 1rem;
}

.icon-sucesso {
    color: #ddb40e;
}

.icon-erro {
    color: #ff4f4f;
}

.btn_modal {
    margin-top: 1rem;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    width: 100%;
    transition: 0.2s ease;
}

.btn_modal_erro {
    background-color: #E53935;
}

.btn_modal_sucesso {
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    color: black;
}

.lista_cartoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.card_cartao {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.acoes_cartao i {
    cursor: pointer;
    background-color: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0.4rem;
}

.lista_contas_bancarias {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card_conta_bancaria {
    background: #fff;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_conta_bancaria p {
    margin: 2px 0;
    font-size: 14px;
    color: #666;
}

.btn_add_conta {
    border: none;
    border-radius: 8px;
    padding: 0.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn_remover_conta {
    background: transparent;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 16px;
}

.input_conta_bancaria {
    width: 100%;
    padding: 8px 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: white;
    box-sizing: border-box;
}

.campos_input_conta_bancaria {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.input_conta_bancaria:focus {
    outline: none;
}

.btn_editar_conta {
    background: transparent;
    border: none;
    color: #2D3798;
    cursor: pointer;
    font-size: 16px;
}

.acoes_conta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.info_titular {
    font-size: 11px;
    color: #2D3798;
    margin-top: 4px;
}

.btn_excluir_banco {
    cursor: pointer;
    background-color: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0.4rem;
}

.btn_editar_banco {
    cursor: pointer;
    background-color: #2D3798;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0.4rem;
}

#modalContaTitulo {
    font-size: 16px;
    font-weight: 500;
}

.nome_banco_cadastrado {
    font-weight: 600;
    font-size: 14px;
}

.titulo_modal_conta {
    font-size: 16px;
    font-weight: 600;
}

.titulo_modal_alertas {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.div_inputs_grupo_conta {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 0.2rem;
}

.titulo_inputs_grupo_conta {
    font-size: 14px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.87);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* PERFIL */

/* INDEX */
.lista_veiculos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.avaliacao_motorista {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

.avaliacao_motorista i {
    color: #ffc107;
}

.info_motorista_big span {
    font-size: 12px;
    color: #668;
}

.info_veiculo {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.info_veiculo strong {
    font-weight: 600;
}

.card_top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
}

.icon {
    margin-left: auto;
    transition: 0.3s;
}

.card_detalhes {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    box-sizing: border-box;
}

.titulo_opcao {
    font-weight: 600;
    font-size: 13px;
}

.linha_opcao {
    font-size: 13px;
    color: #668;
}

.peso {
    font-size: 12px;
    color: #2D3798;
    font-weight: 600;
}

.card_opcao {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    border: 1px solid #E6E7E8;
    border-radius: 12px;
    padding: 0.6rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.div_endereco_partida {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.div_inputs_busca_partida {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #80808021;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    background-color: white;
}

.div_inputs_busca_partida input {
    padding: 0.4rem;
    width: 100%;
}

.div_inputs_busca_partida input:focus {
    outline: none;
    border: none;
}

.div_endereco_partida i {
    color: #2D3798;
}

.btn_padrao_aplicativo {
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
}

.btn_padrao_aplicativo.voltar {
    background-color: #000000;
    color: white;
    border: none;
}

.btn_padrao_aplicativo.finalizar {
    background-color: #000064;
    color: white;
    border: none;
}

.div_btn_acoes_busca {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
}

.card_opcao.selecionado {
    border: 1px solid #2D3798;
}

.box_ajudante {
    display: flex;
    justify-content: space-between;
    background-color: white;
    align-items: center;
    border: 1px solid #E6E7E8;
    padding: 0.8rem;
    border-radius: 12px;
    gap: 1rem;
}

.info_ajudante {
    display: flex;
    flex-direction: column;
}

.titulo_ajudante {
    font-weight: 500;
    font-size: 14px;
}

.valor_ajudante {
    font-size: 12px;
    color: #668;
}

.controle_ajudante {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn_ajudante {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #000064;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

#qtdAjudante {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 16px;
}

.total_ajudante {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: #000064;
}

.total_ajudante strong {
    font-weight: 600;
}

.btn_selecionar_outro_veiculo {
    background: #ffffff;
    border: 1px solid #80808021;
    color: #000;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
    font-size: 14px;
}

#div_campos_agendamento {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
}

.inputs_agendamento {
    display: flex;
    flex-direction: column;
}

.inputs_agendamento input {
    border: 1px solid #E6E7E8;
    border-radius: 12px;
    padding: 0.8rem;
    display: flex;
    gap: 0.8rem;
    align-items: start;
    cursor: pointer;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.inputs_agendamento input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
}

.inputs_agendamento span {
    margin-bottom: 0.3rem;
    font-size: 14px;
}

.inputs_agendamento input:focus {
    outline: none;
}

.div_tipo_solicitacao {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.container_step_01 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container_step_02 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input_group_resumo_pedido {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.input_group input,
.input_group textarea {
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #80808021;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
}

.input_group input:focus {
    outline: none;
}

.input_group textarea:focus {
    outline: none;
}

textarea {
    min-height: 80px;
    resize: none;
}

.preview_fotos {
    display: none;
    gap: 10px;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
}

.preview_fotos img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.lista_adicionais {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item_check {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #80808021;
}

.texto_completar_cadastro {
    font-size: 14px;
}

.item_check span {
    font-size: 14px;
}

.img_item {
    position: relative;
    width: 100%;
}

.img_item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.btn_remover {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgb(255 0 0 / 80%);
    border: none;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    cursor: pointer;
}

.lista_notas {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.item_nota {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #80808021;
}

.info_nota {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    font-size: 14px;
}

.info_nota i {
    color: #555;
}

.btn_remover_nota {
    background: rgb(255 0 0 / 80%);
    border: none;
    color: white;
    border-radius: 50%;
    min-width: 22px;
    min-height: 22px;
    font-size: 12px;
    cursor: pointer;
}

.nome_arquivo_notas {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.container_step_03 {
    display: flex;
    flex-direction: column;
}

.box_resumo_pedido {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    border: 1px solid #80808021;
    margin: 1rem;
}

#mapaPedido {
    width: 100%;
    height: 320px;
    background: #f3f3f3;
    overflow: hidden;
}

.item_resumo,
.total_confirmacao {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #80808014;
}

.item_resumo strong,
.total_confirmacao strong {
    text-align: right;
    font-size: 14px;
    max-width: 60%;
    word-break: break-word;
}

.label_resumo {
    font-size: 14px;
    color: #668;
}

.bloco_resumo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #80808014;
}

.resumo_fotos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.resumo_fotos img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

.lista_resumo_adicionais {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item_adicional_resumo {
    background: #f7f7f7;
    border: 1px solid #80808021;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

.total_confirmacao {
    margin-top: 8px;
    border-bottom: none;
    font-size: 16px;
}

.total_confirmacao span {
    font-size: 15px;
    font-weight: 600;
}

.total_confirmacao strong {
    font-size: 18px;
}

.container_conteudo_index {
    min-height: calc(100vh - 90.17px);
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1rem;
}

.container_step_01,
.container_step_02 {
    margin: 1rem;
}

.texto_mapa_erro {
    font-size: 14px;
    color: #668;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item_resumo strong {
    font-weight: 600;
}

.btn_desabilitado {
    opacity: 0.5;
    pointer-events: none;
}

@media(max-width: 350px) {
    .box_ajudante {
        flex-direction: column;
        justify-content: center;
    }
}

/* INDEX*/

/* HISTORICO */
.container_historico {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lista_pedidos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pedido_status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.status_agendado {
    background: #e3f2fd;
    color: #1565c0;
}

.pedido_id {
    font-size: 14px;
    color: #999;
    font-family: monospace;
}

.card_pedido {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #80808021;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #80808014;
}

.card_body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info_rota {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info_item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.info_item i {
    width: 16px;
    color: #2D3798;
    font-size: 14px;
}

.info_item span {
    color: #555;
}

.detalhes_pedido {
    background: #f7f7f7;
    border-radius: 12px;
    border: 1px solid #80808021;
    padding: 12px;
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.detalhe_item {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detalhe_valor {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.detalhe_label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

.card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #80808014;
}

.pedido_valor {
    font-size: 18px;
    font-weight: 700;
    color: #2D3798;
}

.pedido_valor_cancelado {
    font-size: 18px;
    font-weight: 700;
    color: #2D3798;
    text-decoration: line-through;
    opacity: 0.6;
}

.btn_refazer {
    background: #2D3798;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn_cancelar {
    background: #ff0000;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.status_concluido {
    background: #d2f6d5;
    color: #2e7d32;
}

.status_aguardando_pagamento {
    background: #fff3cd;
    color: #856404;
}

/* HISTORICO */

/* CORRIDAS */
.filtros_pedidos {
    display: flex;
    gap: 10px;
    padding: 0rem;
    flex-wrap: wrap;
}

.inputs_filtros {
    flex: 1;
    min-width: 120px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.div_filtro_datas {
    display: flex;
    width: 100%;
    gap: 0.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

#modalCancelarPedido {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal_cancelar_corrida_content {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    width: 90%;
    max-width: 350px;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.icon_alerta {
    font-size: 48px;
    color: #e53935;
    margin-bottom: 10px;
}

.modal_cancelar_corrida_content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.modal_cancelar_corrida_content p {
    font-size: 14px;
    color: #668;
}

.acoes_modal {
    display: flex;
    gap: 10px;
}

.btn_modal_corridas {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
}

.btn_fechar_cancelar {
    background-color: #000000;
    color: white;
}

.btn_cancelar_corrida {
    background: #e53935;
    color: #fff;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* CORRIDAS */

/* AGUARDANDO SOLICITAÇÃO */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.timer {
    text-align: center;
    margin: 10px 0;
}

.timer span {
    font-size: 18px;
}

.btn_solicitacao {
    margin-top: 10px;
    width: 100%;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn_solicitacao.cancelar {
    background: #000;
    color: #fff;
    border: none;
    box-sizing: border-box;
}

/* AGUARDANDO SOLICITAÇÃO */

/* VEÍCULOS */
.container_veiculos {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 5rem;
    overflow: auto;
    flex: 1;
    box-sizing: border-box;
}

.topo_veiculos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn_add_veiculo {
    background: #2D3798;
    color: #fff;
    border: none;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    bottom: calc(18px + env(safe-area-inset-bottom));
    right: 18px;
    z-index: 10;
}

.lista_veiculos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn_selecionar_veiculo {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #000000;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.card_veiculo {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.veiculo_header {
    display: flex;
    justify-content: space-between;
}

.veiculo_nome {
    font-weight: 600;
    font-size: 16px;
}

.veiculo_info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
}

.div_categorias_carro {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.img_carro_cadastrado {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.btn_excluir_veiculo_detalhes {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #ff3b3b;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.status_veiculo {
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    bottom: 10px;
    right: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.status_veiculo.analise {
    background: #f2a007;
}

.status_veiculo.aprovado {
    background: #27ae60;
}

.status_veiculo.ativo {
    background: #2D3798;
}

.div_foto_veiculo_cadastrado {
    position: relative;
    display: flex;
}

.div_acoes_veiculos_cadastrados {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* VEÍCULOS */

/* CADASTRO VEICULO */
.form_container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input_cadastro_veiculo {
    width: 100%;
    padding: 8px 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: white;
    box-sizing: border-box;
}

.input_cadastro_veiculo:focus {
    outline: none;
}

.btn_salvar_cadastro_veiculo {
    padding: 8px;
    border-radius: 12px;
    font-size: 14px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn_voltar_cadastro_veiculo {
    background: transparent;
    font-size: 14px;
    color: #000;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload_box {
    border: 2px dashed #ccc;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 2 / 1.5;
    box-sizing: border-box;
    justify-content: center;
    overflow: hidden;
    object-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload_box i {
    font-size: 24px;
    margin-bottom: 5px;
}

.preview_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: none;
}

.lista_selecionadas {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
}

.item_selecionado {
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.item_selecionado i {
    cursor: pointer;
}

/* CADASTRO VEICULO */

/* CORRIDA AGENDADA */
#map_agendada {
    width: 100%;
    height: 100vh;
}

.overlay_agendada {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
    z-index: 999;
    padding: 16px;
    max-height: 50vh;
    overflow: auto;
    scrollbar-width: none;
}

.msg_agendada {
    text-align: center;
    font-size: 14px;
    background: #f7f7f7;
    border: 1px solid #80808021;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.card_motorista {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #80808021;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.div_motorista_pedido {
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar_motorista_big {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid #80808042;
}

.info_motorista_big {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info_motorista_big strong {
    font-size: 14px;
    font-weight: 600;
}

.info_motorista_big span {
    font-size: 12px;
    color: #668;
}

.avaliacao_motorista {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.avaliacao_motorista i {
    color: #ffc107;
    font-size: 12px;
}

.avaliacao_motorista span {
    font-size: 12px;
    color: #668;
}

.card_corrida {
    background: #fff;
    border: 1px solid #80808021;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.linha_info {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}

.linha_info strong {
    color: #111;
    font-weight: 600;
}

.bloco_endereco {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ededed;
}

.bloco_endereco span {
    font-size: 13px;
    color: #668;
}

.bloco_endereco strong {
    font-size: 14px;
    color: #111;
    font-weight: 600;
}

.img_produto_frete {
    width: 50%;
    border-radius: 8px;
}

.btn_voltar_corrida {
    background: #000;
    color: #fff;
    border: none;
    margin-top: 12px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* CORRIDA AGENDADA */


/* FINANCEIRO */
.saldos_container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 1rem;
}

.card_saldo {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.info_saldo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.label_saldo {
    font-size: 13px;
    color: #668;
    font-weight: 500;
}

.valor_saldo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.valor_saldo_disponivel {
    color: #2e7d32;
}

.valor_saldo_pendente {
    color: #ed6c02;
}

.icone_saldo {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
}

.card_comissao {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 4px;
}

.info_comissao {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.label_comissao {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.valor_comissao {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.btn_detalhes_comissao {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.btn_saque {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: calc(18px + env(safe-area-inset-bottom));
    right: 18px;
}

.header_historico {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.titulo_historico {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.lista_repasses {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card_repasse {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f0f0f0;
}

.info_repasse {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.repasse_descricao {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.repasse_data {
    font-size: 12px;
    color: #999;
}

.repasse_valor {
    text-align: right;
}

.repasse_valor_positivo {
    font-size: 16px;
    font-weight: 600;
    color: #2e7d32;
}

.repasse_valor_pendente {
    font-size: 16px;
    font-weight: 600;
    color: #ed6c02;
}

.repasse_valor_negativo {
    font-size: 16px;
    font-weight: 600;
    color: #d32f2f;
}

.repasse_status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    width: fit-content;
}

.status_pendente {
    background: #fff3e0;
    color: #ed6c02;
}

.modal_saque {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal_saque_content {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    width: 90%;
    max-width: 400px;
    max-height: 85vh;
    overflow-y: auto;
    animation: fadeInUp 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
}

.div_deitada_saque {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal_close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.valor_disponivel_saque {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid #80808021;
}

.valor_disponivel_saque .label {
    font-size: 14px;
    color: rgb(0, 0, 0);
    margin-bottom: 8px;
}

.valor_disponivel_saque .valor {
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
}

.input_saque label {
    font-size: 14px;
    color: #000;
    display: block;
    margin-bottom: 0.2rem;
}

.input_saque input {
    width: 100%;
    padding: 8px 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: white;
    box-sizing: border-box;
}

.input_saque input:focus {
    outline: none;
}

.btn_confirmar_saque {
    width: 100%;
    padding: 8px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.modal_comissao {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal_comissao_content {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    padding: 1rem;
    max-height: 85vh;
    overflow-y: auto;
    animation: fadeInUp 0.3s ease;
    box-sizing: border-box;
}

.lista_comissao {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card_comissao_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.card_comissao_item:last-child {
    border-bottom: none;
}

.comissao_info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comissao_descricao {
    font-size: 14px;
    font-weight: 500;
}

.comissao_data {
    font-size: 12px;
    color: #999;
}

.comissao_valor {
    font-size: 16px;
    font-weight: 600;
    color: #d32f2f;
}

.div_deitada_comissao {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.container_financeiro {
    padding: 1rem;
    padding-bottom: 5rem;
    min-height: 100vh;
}

.titulo_comissao_financeiro {
    font-weight: 600;
    font-size: 16px;
}

/* FINANCEIRO */