:root {
    --brsub-blue: #1e2949;
    --brsub-gold: #dca434;
    --brsub-white: #ffffff;
    --brsub-ink: #101521;
}

.fundo_telas{
    background:
        radial-gradient(circle at 15% 20%, rgba(220, 164, 52, 0.18), transparent 45%),
        radial-gradient(circle at 85% 10%, rgba(30, 41, 73, 0.18), transparent 40%),
        linear-gradient(135deg, #f7f8fb 0%, #edf1f7 45%, #fdfdfd 100%);
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--brsub-ink);
}

.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 48px;
}

.auth-stack {
    width: 100%;
    max-width: 460px;
}

.auth-flash-stack {
    margin-bottom: 12px;
}

.auth-flash-alert {
    margin-bottom: 8px;
}

.auth-flash-alert:last-child {
    margin-bottom: 0;
}

.login-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 470px;
    background: var(--brsub-white);
    border-radius: 22px;
    padding: 20px 36px 10px;
    box-shadow: 0 18px 45px rgba(16, 21, 33, 0.12);
    border: 1px solid rgba(30, 41, 73, 0.08);
    overflow: hidden;
}

.login-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 0;
}

.login-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    border-radius: 22px 22px 0 0;
    
}

.login-brand {
    margin-bottom: 28px;
}

.logo-mark {
    max-width: 315px;
    height: auto;
}

.login-title {
    margin: 18px 0 6px;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--brsub-blue);
}

.login-subtitle {
    margin: 0;
    font-size: 14px;
    color: rgba(16, 21, 33, 0.7);
}

.login-input {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(30, 41, 73, 0.16);
}

.login-input:focus {
    border-color: var(--brsub-blue);
    box-shadow: 0 0 0 3px rgba(30, 41, 73, 0.15);
}

.login-link {
    display: inline-flex;
    font-size: 13px;
    color: rgba(16, 21, 33, 0.7);
    text-decoration: none;
}

.login-link:hover {
    color: var(--brsub-blue);
    text-decoration: underline;
}

.btn-login {
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: var(--brsub-blue);
    border-color: var(--brsub-blue);
}

.btn-login:hover,
.btn-login:focus {
    background: #16203a;
    border-color: #16203a;
    box-shadow: 0 10px 18px rgba(30, 41, 73, 0.22);
}

.auth-actions {
    margin-top: auto;
    padding-top: 22px;
    margin-bottom: 0;
}

.login-alert {
    text-align: center;
}

.login-flash-slot {
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-flash-slot .alert {
    margin-bottom: 0;
    max-height: 72px;
    overflow: hidden;
}

.recaptcha-box {
    display: flex;
    justify-content: center;
}

#alterarSenha .modal-content {
    border-radius: 22px;
    border: 1px solid rgba(30, 41, 73, 0.08);
    box-shadow: 0 18px 45px rgba(16, 21, 33, 0.12);
}

#alterarSenha .modal-header {
    border-bottom: 1px solid rgba(30, 41, 73, 0.08);
    background: rgba(30, 41, 73, 0.04);
    padding: 18px 24px;
}

#alterarSenha .modal-title {
    font-family: "arial";
    font-weight: 700;
    color: var(--brsub-blue);
    font-size: 18px;
}

#alterarSenha .modal-body {
    padding: 22px 24px 8px;
}

#alterarSenha .modal-footer {
    border-top: 1px solid rgba(30, 41, 73, 0.08);
    padding: 16px 24px 22px;
    gap: 8px;
}

#alterarSenha .form-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(16, 21, 33, 0.7);
}

#alterarSenha .form-control {
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(30, 41, 73, 0.16);
    font-size: 14px;
}

#alterarSenha .form-control:focus {
    border-color: var(--brsub-blue);
    box-shadow: 0 0 0 3px rgba(30, 41, 73, 0.15);
}

#alterarSenha .btn-secondary {
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: var(--brsub-blue);
    border-color: var(--brsub-blue);
    font-size: 12px;
    padding: 10px 16px;
}

#alterarSenha .btn-secondary:hover,
#alterarSenha .btn-secondary:focus {
    background: #16203a;
    border-color: #16203a;
    box-shadow: 0 10px 18px rgba(30, 41, 73, 0.22);
}

@media (max-width: 575px) {
    .login-card {
        height: auto;
        min-height: 470px;
        padding: 32px 24px;
    }

    .login-title {
        font-size: 22px;
    }
}

.logo{
    background-image: url('images/diveHubLogo.png') no-repeat center fixed;
}

.login{
    padding: 10px;
    margin-top: 10%;
    margin-right: 30%;
    margin-left: 30%;
    margin-bottom: 10%;
}
.link{
    text-decoration: none;
    font-family: "Segoe UI";
}
.thumbnail {
    border: 0;
}
.navstyle{
    background-color: #1e2949;
}

.btn-outline-primary{
    color: var(--brsub-blue);
    border-color: var(--brsub-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus{
    background: var(--brsub-blue);
    border-color: var(--brsub-blue);
    color: #ffffff;
}
.style-image{
    padding-top: 2px;
    padding-left: 10px;
    max-width:120px;
    max-height:170px;
    width: auto;
    height: auto;
}

li{
    font-family: "arial";
    font-size: 10px;
    text-transform: uppercase;
    padding-left: 1px;
    padding-right: 1px;
    list-style-type: none;

}

.menu-link{
    color: #ffffff;
}

.menu-link:hover,
.menu-link:focus{
    color: #ffffff;
}

/* Mantem os textos do navbar em branco com o seletor do Bootstrap mais especifico */
.navstyle .navbar-nav .nav-link.menu-link,
.navstyle .navbar-brand,
.navstyle .navbar-toggler{
    color: #ffffff !important;
}

.t-formatado{
    text-transform: capitalize;
    font-family: "arial";
    color: #1e2949;
    font-size: 12px;
    text-align: match-parent;
}
.t-formatado:hover{
    background-color: #1e2949;
    font-weight: bold;
    color: white;
    
}

.page-title{
    margin-top: 0;
    margin-bottom: 8px;
}

.telas{
    margin-top: 0px;
    margin-bottom: 0px;
}

.content-shell{
    padding-top: 72px;
    padding-bottom: 24px;
}

.content-card{
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(16, 21, 33, 0.16);
}

/* DataTables - visual moderno alinhado ao padrão */
.dataTables_wrapper{
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--brsub-ink);
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select{
    border-radius: 10px;
    border: 1px solid rgba(30, 41, 73, 0.18);
    padding: 6px 10px;
    font-size: 13px;
}

.dataTables_wrapper .dataTables_filter input:focus,
.dataTables_wrapper .dataTables_length select:focus{
    outline: none;
    border-color: var(--brsub-blue);
    box-shadow: 0 0 0 3px rgba(30, 41, 73, 0.12);
}

.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_info{
    font-size: 12px;
    color: rgba(16, 21, 33, 0.7);
}

.dataTables_wrapper .dataTables_paginate{
    margin-top: 8px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button{
    border: 1px solid rgba(30, 41, 73, 0.18) !important;
    border-radius: 10px !important;
    padding: 5px 10px !important;
    margin: 0 3px !important;
    color: var(--brsub-blue) !important;
    background: #ffffff !important;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-transform: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background: rgba(30, 41, 73, 0.06) !important;
    border-color: rgba(30, 41, 73, 0.3) !important;
    color: var(--brsub-blue) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current{
    background: var(--brsub-blue) !important;
    color: #ffffff !important;
    border-color: var(--brsub-blue) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:focus,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:active,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:visited,
.dataTables_wrapper .dataTables_paginate a.paginate_button.current{
    background: var(--brsub-blue) !important;
    color: #ffffff !important;
    border-color: var(--brsub-blue) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled{
    opacity: 0.4;
    cursor: not-allowed !important;
}

table.dataTable{
    border: 1px solid rgba(30, 41, 73, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

table.dataTable thead th{
    background: var(--brsub-blue);
    color: #ffffff;
    border-bottom: none;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

table.dataTable tbody tr:hover{
    background: rgba(30, 41, 73, 0.06) !important;
}

.table-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.table-footer .table-actions{
    margin-bottom: 0;
}

.oculta-col{
    display:none;
}
#tabela_filter{
    padding-bottom: 15px;
    
}
#tabela2_filter{
    padding-bottom: 15px;
    
}
.dataTables_info{
    display: none;
}

.bt_save{
    display: none;
}

.bt_processar{
    display: none;
    
}

.bt_reativar{
    display: none;  
}

.v_modo{
    display: none;
}

.change_pass{
    display: none;
}

.esconde{
    display: none
}

.show_hospedagem{
    display: none;
}

.required {
    color: red;
}

.foto {
    width: 260px;
    height: 260px;
    object-fit: cover;
    object-position: center;
}

.font-texto {
    font-size: small;
}

.total_orcamento{
    font-weight: bold;
    font-size: 14px;
    text-align: right;
  
}

.total_comissao{
    font-weight: bold;
    font-size: 14px;
  
}


.no-border {
    border: 0;
}

.no-border[readonly]{
    background-color: white;
}

.fundo{
    background-color: #084d6e;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: left;
    border-radius: 6px;
}

.valor_total{
    font-weight: bold;
    text-align: right;
    font-size: large;
}

.v_t_apresentacao{
    font-weight: bold;
    text-align: right;
    font-size: 16px;
    color: red;
    background-color: yellow;
}

.situacao_loc_error{
    font-weight: bold;
    text-align: center;
    color: red;
}

.situacao_loc_warn{
    font-weight: bold;
    text-align: center;
    color: goldenrod;
}

.situacao_loc_ok{
    font-weight: bold;
    text-align: center;
    color: green;
}

.situacao_loc_finalizado{
    font-weight: bold;
    text-align: center;
    color: green;
}

.situacao_loc_ativo{
    font-weight: bold;
    text-align: center;
    color: #b8860b;
}

.situacao_loc_reservado{
    font-weight: bold;
    text-align: center;
    color: red;
}

.estoque_ok{
    font-weight: bold;
    text-align: center;
    color: green;
}

.estoque_nao_ok{
    font-weight: bold;
    text-align: center;
    color: red;
}

.v_t_final{
    font-weight: bold;
    text-align: right;
    font-size: 22px;
    color: red;
    background-color: yellow;
}

.show_tab_orcamento{
    display: none;
}

.v_total_g_cliente{
    font-weight: bold;
    font-size: 16px;
}

.v_estorno{
    color: red;
}



td{
    word-wrap:break-word;
 }





 .highcharts-figure, .highcharts-data-table table {
    min-width: 310px; 
    max-width: 800px;
    margin: 1em auto;
  }
  
  #container {
    height: 400px;
  }
  
  .highcharts-data-table table {
      font-family: Verdana, sans-serif;
      border-collapse: collapse;
      border: 1px solid #EBEBEB;
      margin: 10px auto;
      text-align: center;
      width: 100%;
      max-width: 500px;
  }
  .highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
  }
  .highcharts-data-table th {
      font-weight: 600;
    padding: 0.5em;
  }
  .highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
    padding: 0.5em;
  }
  .highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
  }
  .highcharts-data-table tr:hover {
    background: #f1f7ff;
  }
.flash-shell{
    padding-top: 76px;
    padding-bottom: 4px;
}

.mensagem .alert{
    margin-bottom: 8px;
}
