/* ——————————————————————————————————————————————————————————————
   Temas via CSS Variables
————————————————————————————————————————————————————————————— */
html.light, body.light {
  background-color: #f4f4fa;
}
html.all-black, body.all-black {
  background-color: #000000;
}
html.dark-blue, body.dark-blue {
  background-color: #000a22;
}

/* ——————————————————————————————————————————————————————————————
   Header responsivo ao tema
————————————————————————————————————————————————————————————— */
/* Declaração de variáveis padrão */
:root {
  --header-bg-light:    #007bff;
  --header-text-light:  #ffffff;

  --header-bg-dark-blue:   #001a40;
  --header-text-dark-blue: #ffffff;

  --header-bg-all-black:   #000000;
  --header-text-all-black: #ffffff;
  
  /* variáveis de cores para gráficos e textos */
  --chart-bg-light:       #f4f4fa;
  --chart-bg-dark-blue:   #000a22;
  --chart-bg-all-black:   #000000;

  --chart-text-light:     #333333;
  --chart-text-dark-blue: #e0e0e0;
  --chart-text-all-black: #e0e0e0;

  --button-bg-light:      #FFAD4E;
  --button-bg-dark-blue:  #27476e;
  --button-bg-all-black:  #1a1a1a;

  --button-text-light:    #000000;
  --button-text-dark-blue:#ffffff;
  --button-text-all-black:#ffffff;
  
  --card-bg-light:    #ffffff;
  --card-bg-dark-blue:   #050D26;
  --card-bg-all-black:   #00010a;

  --text-primary-light: #333333;
  --text-primary-dark: #ffffff;
}

/* Tema Light - Mantém o estilo original */
html.light .bg-header,
body.light .bg-header {
  background: var(--header-bg-light) !important;
  color: var(--header-text-light) !important;
}

html.light .bg-subheader,
body.light .bg-subheader {
  background-color: rgb(255, 173, 78) !important;
  color: var(--header-text-light) !important;
}

html.light .text-theme {
  color: #007bff !important;
}

html.light .bg-theme {
  background-color: #007bff !important;
}

html.light .bg-everest {
  background-color: #f4f4fa !important;
}

/* Tema Dark-Blue */
html.dark-blue .bg-header,
body.dark-blue .bg-header {
  background: var(--header-bg-dark-blue) !important;
  color: var(--header-text-dark-blue) !important;
}

html.dark-blue .bg-subheader,
body.dark-blue .bg-subheader {
  background-color: #27476e !important;
  color: var(--header-text-dark-blue) !important;
}

/* Tema All-Black */
html.all-black .bg-header,
body.all-black .bg-header {
  background: var(--header-bg-all-black) !important;
  color: var(--header-text-all-black) !important;
}

html.all-black .bg-subheader,
body.all-black .bg-subheader {
  background-color: #1a1a1a !important;
  color: var(--header-text-all-black) !important;
}

/* Ajustes para temas escuros */
html.dark-blue .text-theme,
html.all-black .text-theme {
  color: #4dabff !important;
}

html.dark-blue .bg-theme {
  background-color: #000A22 !important;
}
html.all-black .bg-theme {
  background-color: #000000 !important;
}

/* Ajustes para o footer em temas escuros */
html.dark-blue footer,
html.all-black footer {
  background-color: #000a22 !important;
  color: #ffffff !important;
}

html.dark-blue footer .text-dark,
html.all-black footer .text-dark {
  color: #ffffff !important;
}

html.dark-blue footer .text-bold,
html.all-black footer .text-bold {
  color: #ffffff !important;
  font-weight: 500 !important;
}

/* Ajustes para as perguntas frequentes em temas escuros */
html.dark-blue .accordion,
html.all-black .accordion {
  background-color: transparent !important;
}

html.dark-blue .accordion-item,
html.all-black .accordion-item {
  background-color: transparent !important;
  border-color: #333333 !important;
  border-radius: 15px !important;
}

html.dark-blue .accordion-button,
html.all-black .accordion-button {
  background-color: transparent !important;
  color: #ffffff !important;
}

html.dark-blue .accordion-button:not(.collapsed),
html.all-black .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: #ffffff !important;
}

html.dark-blue .accordion-body,
html.all-black .accordion-body {
  background-color: transparent !important;
  color: #e0e0e0 !important;
}

/* Ajustes para os cards de plano em temas escuros */
html.dark-blue .pricing-card,
html.all-black .pricing-card {
  background-color: transparent !important;
  border-color: #333333 !important;
  border-radius: 15px !important;
}

html.dark-blue .pricing-card .card-body,
html.all-black .pricing-card .card-body {
  background-color: transparent !important;
  color: #ffffff !important;
}

/* Ajuste para o card de plano avançado no tema light */
html.light .pricing-card.bg-dark {
  border-radius: 15px !important;
}

html.light .pricing-card.bg-dark .card-body {
  background-color: #0F172A !important;
  color: #ffffff !important;
  border-radius: 15px !important;
}

html.light .pricing-card.bg-dark .card-title {
  font-weight: 500 !important;
}

/* Ajuste para os cards de ativos no tema light */
html.light .bg-card-init {
  background-color: #0F172A !important;
  border-radius: 15px !important;
  border: none !important;
}

html.light .bg-card-init .card-body {
  background-color: #0F172A !important;
  border-radius: 15px !important;
}

html.light .bg-card-init .text-muted {
  color: #a0aec0 !important;
}

html.light .bg-card-init .text-white {
  color: #ffffff !important;
}

/* Ajuste para a imagem everest.png em temas escuros */
html.dark-blue .bg-everest,
html.all-black .bg-everest {
  filter: none !important;
}

/* Aplicar filtro invertido apenas no <img> dentro da .bg-everest nos temas escuros */
html.dark-blue .bg-everest > img,
html.all-black .bg-everest > img {
  filter: invert(1) hue-rotate(180deg) !important;
}

/* Garantir que o texto não seja afetado por filtro */
html.dark-blue .bg-everest > *:not(img),
html.all-black .bg-everest > *:not(img) {
  filter: none !important;
}

html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login,
html.dark-blue .bg-everest .title_login + span,
html.all-black .bg-everest .title_login + span {
  color: #fff !important;
}

html.dark-blue .bg-everest .text-muted,
html.all-black .bg-everest .text-muted {
  color: #ffffff !important;
}

html.dark-blue .bg-everest .btn,
html.all-black .bg-everest .btn {
  background-color: #0056b3 !important;
  color: #ffffff !important;
  border: none !important;
}

html.dark-blue .bg-everest .btn.border-secondary,
html.all-black .bg-everest .btn.border-secondary {
  background-color: transparent !important;
  border: 1px solid #4dabff !important;
  color: #4dabff !important;
}

/* Ajustes para o modal de login em temas escuros */
html.dark-blue .custom_card_modal,
html.all-black .custom_card_modal {
  background-color: #050D26 !important;
  color: #ffffff !important;
}

html.dark-blue .email_login,
html.dark-blue .senha_login,
html.all-black .email_login,
html.all-black .senha_login {
  border-color: #172644 !important;
  color: #ffffff !important;
}

html.dark-blue .float-label,
html.all-black .float-label {
  color: #ffffff !important;
}

html.dark-blue .float-label.active,
html.all-black .float-label.active {
  background-color: #050D26 !important;
}

/* ——————————————————————————————————————————————————————————————
   Cards de cotações responsivos ao tema (sem interferir cores dinâmicas)
————————————————————————————————————————————————————————————— */
/* Tema Light (sem mudanças, mantém o padrão atual) */
html.light .card_indices,
body.light .card_indices {
  background-color: #ffffff;
}
html.light .card_indices .card-header {
  background-color: #ffffff !important;
}

/* Tema Dark-Blue */
html.dark-blue .card_indices,
body.dark-blue .card_indices {
  background-color: #050D26 !important;
}
html.dark-blue .card_indices .card-header {
  background-color: #091333 !important;
}
/* só estiliza bordas, mas não força cor de texto */
html.dark-blue .card_indices .table,
html.dark-blue .card_indices .table td,
html.dark-blue .card_indices .table th {
  border-color: #333333 !important;
}

/* Tema All-Black */
html.all-black .card_indices,
body.all-black .card_indices {
  background-color: #00010a !important;
}
html.all-black .card_indices .card-header {
  background-color: #000000 !important;
}
html.all-black .card_indices .table,
html.all-black .card_indices .table td,
html.all-black .card_indices .table th {
  border-color: #333333 !important;
}

/* ——————————————————————————————————————————————————————————————
   Ajuste de cor de texto padrão nos cards (Dark-Blue / All-Black)
————————————————————————————————————————————————————————————— */
/* Dark-Blue – texto padrão mais claro */
html.dark-blue .card_indices,
body.dark-blue .card_indices {
  color: #ffffff !important;
}

/* All-Black – texto padrão mais claro */
html.all-black .card_indices,
body.all-black .card_indices {
  color: #ffffff !important;
}

/* ——————————————————————————————————————————————————————————————
   Legibilidade das tabelas dos cards em temas escuros
————————————————————————————————————————————————————————————— */
/* Define cor clara como padrão para todo texto dentro de .card_indices .table */
html.dark-blue .card_indices .table,
body.dark-blue .card_indices .table,
html.all-black .card_indices .table,
body.all-black .card_indices .table {
  color: #e0e0e0 !important;
}

/* mantém só as bordas mais suaves */
html.dark-blue .card_indices .table th,
html.dark-blue .card_indices .table td {
  border-color: #172644 !important;
}

/* mantém só as bordas mais suaves */
html.all-black .card_indices .table th,
html.all-black .card_indices .table td {
  border-color: #333333 !important;
}

/* (Opcional) Se por acaso alguma cor dinâmica ainda for afetada,
   reforce aqui suas classes de percentuais/verdes/vermelhos: */
html.dark-blue .card_indices .table .text-success-alt,
body.dark-blue  .card_indices .table .text-success-alt,
html.all-black  .card_indices .table .text-success-alt,
body.all-black  .card_indices .table .text-success-alt {
  color: #28a745 !important;
}
html.dark-blue .card_indices .table .text-danger,
body.dark-blue  .card_indices .table .text-danger,
html.all-black  .card_indices .table .text-danger,
body.all-black  .card_indices .table .text-danger {
  color: #dc3545 !important;
}

/* ——————————————————————————————————————————————————————————————
   Borda branca fina nos cards em temas escuros
————————————————————————————————————————————————————————————— */

html.dark-blue .card_indices,
body.dark-blue .card_indices {
  border-radius: 15px !important;
  border: 1px solid #172644 !important;
}

html.all-black .card_indices,
body.all-black .card_indices {
  border-radius: 15px !important;
  border: 1px solid #333333 !important;
}

html.dark-blue .investing-iframe,
body.dark-blue .investing-iframe,
html.all-black .investing-iframe,
body.all-black .investing-iframe {
  filter: invert(90%) hue-rotate(180deg);
}

/* containers de amCharts */
#chartdiv, #g20Chart {
  background-color: var(--chart-bg-light);
}
html.dark-blue #chartdiv,
body.dark-blue #chartdiv,
html.dark-blue #g20Chart,
body.dark-blue #g20Chart {
  background-color: var(--chart-bg-dark-blue) !important;
}
html.all-black #chartdiv,
body.all-black #chartdiv,
html.all-black #g20Chart,
body.all-black #g20Chart {
  background-color: var(--chart-bg-all-black) !important;
}

/* ——————————————————————————————————————————————————————————————
   Parte do Perfil
————————————————————————————————————————————————————————————— */

/* avatar */
.img_perfil {
  width: 125px;
  height: 125px;
  object-fit: cover;
  border-radius: 50%;
}

/* botão de preview de imagem */
.image-preview {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--button-bg-light);
  border-radius: .375rem;
  cursor: pointer;
  background: var(--button-bg-light);
  color: var(--button-text-light);
}
body.dark-blue .image-preview {
  background: var(--button-bg-dark-blue) !important;
  color: var(--button-text-dark-blue) !important;
  border-color: var(--button-bg-dark-blue) !important;
}
body.all-black .image-preview {
  background: var(--button-bg-all-black) !important;
  color: var(--button-text-all-black) !important;
  border-color: var(--button-bg-all-black) !important;
}

/* Tema Light (mantém o padrão branco) */
html.light .card,
body.light .card {
  background-color: var(--card-bg-light) !important;
}

/* Tema Dark-Blue */
html.dark-blue .card,
body.dark-blue .card {
  background-color: var(--card-bg-dark-blue) !important;
  border: 1px solid #172644;
  color: #e0e0e0;
}

/* Tema All-Black */
html.all-black .card,
body.all-black .card {
  background-color: var(--card-bg-all-black) !important;
  border: 1px solid #333;
  color: #e0e0e0;
}

/* — Overrides para inputs (DaisyUI) nos temas escuros — */
html.dark-blue .input_light,
body.dark-blue .input_light,
html.dark-blue .input_float,
body.dark-blue .input_float {
  background-color: var(--chart-bg-dark-blue) !important;
  border-color: #172644 !important;
  color: #007bff !important;
}
html.all-black .input_light,
body.all-black .input_light,
html.all-black .input_float,
body.all-black .input_float {
  background-color: var(--card-bg-all-black) !important;
  border-color: #333 !important;
  color: #ffffff !important;
}

/* Floating labels (DaisyUI) */
html.dark-blue .float-label,
body.dark-blue .float-label {
  background-color: var(--chart-bg-dark-blue) !important;
  color: #007bff !important;
}
html.all-black .float-label,
body.all-black .float-label {
  background-color: var(--card-bg-all-black) !important;
  color: #ffffff !important;
}

/* Garantir rótulos ativos também */
html.dark-blue .float-label.active,
body.dark-blue .float-label.active,
html.dark-blue .float-label.light,
body.dark-blue .float-label.light {
  background-color: var(--chart-bg-dark-blue) !important;
  color: #007bff !important;
}
html.all-black .float-label.active,
body.all-black .float-label.active,
html.all-black .float-label.light,
body.all-black .float-label.light {
  background-color: var(--card-bg-all-black) !important;
  color: #ffffff !important;
}


/* ——————————————————————————————————————————————————————————————
   Original CSS completo
   (sem alterações em cores, para não quebrar layout)
————————————————————————————————————————————————————————————— */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
 
/* Regular */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-It.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

/* Light */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Light Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-LightIt.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* Bold */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Bold Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-BoldIt.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Black */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Black Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-BlackIt.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* ExtraLight */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

/* ExtraLight Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-ExtraLightIt.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

/* SemiBold */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

/* SemiBold Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-SemiboldIt.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}
html {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 10px;
    max-height: 10px;
    background-color: #010304;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(0, 123, 255);
    box-shadow: inset 0 0 6px rgba(0, 161, 241, 0.5);
    border-radius: 5px;
}

*{
    margin: 0;
    padding:  0;
  
    box-sizing: border-box;
    font-family: 'SourceSansPro', sans-serif;
}
.card_indices{
    border-radius: 15px !important;
}

.font-popp{
    font-family: 'Poppins' !important;

}
.bg-theme-sec{
    background-color: #FFAD4E !important;
}
.text-theme-sec{
    color: #FFAD4E !important;
}
.text-right{
    text-align: right !important;
}

.text-success-alt{
    color: #28a745 !important
}
.title_login{
    font-weight: bold !important;
    font-family: "Open Sans", serif;
}
.text-sm{
    font-size: 13px !important;
}
.title-card{
    font-weight: 900 !important;
    font-family: 'SourceSansPro', sans-serif;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    background-color: #FFFFFF;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 15px;
}

.bg-theme{
    background: #007bff;
    color: white;
}
.text-theme{
    color: #007bff;
}
.title-action{
    font-weight: bold;
}

.bg-theme:hover{
    /* background: #0193db; */
    color: white;
    transition: 0.3s;
}

.bg-default{
    background-color: #ededed;
    border: 1px solid #ced4da;
}
.swal2-popup.swal2-modal.custom-swal-bg.swal2-icon-warning.swal2-show{
    background-color: rgba(0, 0, 0, 0.5) !important; /* Fundo com transparência */
    color: white !important; /* Cor do texto para contraste */
    border-radius: 23px !important; /* Arredondamento opcional */
}
.custom-swal-bg #swal2-title{
    color: white !important;
}

/* .swal2-success-circular-line-right,
.swal2-success-fix,
.swal2-success-circular-line-left{
    background-color: rgba(0, 0, 0, 0.5) !important;

} */


table tr:last-child td {
    border-bottom: none !important;
}


.bg-default:hover{
    background-color: #e6e3e3;
    transition: 0.3s;
}

body{
    background-color: #f4f4fa;
    overflow-x: hidden; 
}

.bg-header{
    color: white !important;
    background: #007bff;
    /* background: linear-gradient(142deg, rgba(0, 161, 241,1) 0%, rgba(7, 154, 227,1) 48%, rgba(28,149,193,1) 100%); */
}

.bg-subheader{
    background-color: rgb(255, 173, 78) !important;
    color: white;
}

/* .hover_menu{
    transition: 0.3s;
    color: azure;
} */

.tradingview-widget-copyright{
    display: none !important;
}

.js-copyright-label{
    color: red !important
}
.table td {
    font-size: 12px !important; 
}

.nav-link.dropdown-toggle::after {
    content: none;
}


.dropdown-toggle::after {
    content: none;
}

.btn_partner{
    text-decoration: none;
    color: #303030;
    font-weight: bold;
    border-radius: 10px;
    border: 1px solid black;
    padding: 10px 20px;
    background-color: white;
    -webkit-box-shadow: 7px 14px 17px -7px rgba(0,0,0,0.75);
-moz-box-shadow: 7px 14px 17px -7px rgba(0,0,0,0.75);
box-shadow: 7px 14px 17px -7px rgba(0,0,0,0.75);
}

.status-bubble {
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    border: 3px solid #ccc; /* Borda cinza clara por padrão */
    background-color: #ccc; 
    transition:  border-color 0.3s, border 0.3s;
    opacity: 0.6; /* Fica um pouco transparente por padrão */
    background-color: #00bf63 !important;
  }
  
  /* Efeito quando o status for 'ativo' (verde) */
  .status-bubble.active {
    border-color:  #00bf63 !important;
   
    opacity: 1; /* Retorna a opacidade ao normal quando está ativo */
  }

  .status-bubble.close {
     border-color: #64748b; 
  }

  .status-bubble.after-hours {
     border-color: #002aff; 
  }

  .status-bubble.pre-market {
    border-color: #f4b840; 
 }



.font11{
    font-size: 11px !important;
}
.btn_assinatura{
    animation: pulse 1.8s infinite; 
}

.btn_partner:hover {
    transition: 0.5s;
    transform: scale(1.03);
    /* animation: pulse 1.8s infinite; */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

.backcover_mobile{
    background-color: rgba(0,0,0,0.65);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
   
}


.menu_mobile_sidebar{
    background-color: #fafafa;
    width: 0;
    height: 100vh;
   
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: width 0.2s ease-in-out;
}
.menu_mobile_sidebar.open{
    width: 80%;
    
}

.btn-soft-info {
  background-color: var(--button-bg-light);
  color: var(--button-text-light);
}
html.dark-blue .btn-soft-info,
body.dark-blue .btn-soft-info {
  background-color: var(--button-bg-dark-blue) !important;
  color: var(--button-text-dark-blue) !important;
}
html.all-black .btn-soft-info,
body.all-black .btn-soft-info {
  background-color: var(--button-bg-all-black) !important;
  color: var(--button-text-all-black) !important;
}
/* botões ativos */
.btn-soft-info.btn-active {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.2);
}

#indicatorButtons {
  margin-bottom: 3rem; /* ajusta a distância abaixo dos botões */
}

/* Legenda do mapa: texto claro em temas escuros */
html.dark-blue #legend span.text-black,
body.dark-blue #legend span.text-black,
html.all-black #legend span.text-black,
body.all-black #legend span.text-black {
  color: var(--chart-text-dark-blue) !important;
}

.btn_close_mobile_sidebar{
    width:  20%;
    padding: 20px 10px;
    cursor: pointer;
    height: 100vh;
}

@media screen and (max-width: 1090px){
    #header_desktop{
        display: none !important;
    }
    #header_mobile{
        display: block !important;
    }
}
.tooltip-target,
.tooltip-target-left{
    position: relative;
    cursor: pointer;
}

.bg-card-init {
    background-color: #0f172a;
}



.text-dark-init{
    color: #0F172A;
}

.text-dark-init:hover{
    color: #131e38;
    animation: pulse 1.8s infinite;
}

.text-bold{
    font-family: 'SourceSansPro';
    font-weight: 700;
}

.tooltip-target:hover::after {
    content: attr(data-tooltip); /* Conteúdo do tooltip */
    position: absolute;
    bottom: 100%; /* Coloca o tooltip acima do elemento */
    left: 30%;
    transform: translateX(0%); /* Centraliza o tooltip */
    background-color: rgba(204, 204, 204, 0.9);
    color: attr(data-tooltip-color color, black);
    padding: 5px 10px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    font-weight: 900 !important;
    transition: opacity 0.3s ease;
    z-index: 100; /* Garante que o tooltip fique visível */
    /* max-width: 600px !important; */
}

/* Estilo do tooltip para tema dark-blue */
html.dark-blue .tooltip-target:hover::after,
html.dark-blue .tooltip-target-left:hover::after {
    background-color: rgba(0, 26, 64, 0.9) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Estilo do tooltip para tema all-black */
html.all-black .tooltip-target:hover::after,
html.all-black .tooltip-target-left:hover::after {
    background-color: rgba(40, 40, 40, 0.9) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tooltip-target-left:hover::after {
    content: attr(data-tooltip); /* Conteúdo do tooltip */
    position: absolute;
    bottom: 100%; /* Coloca o tooltip acima do elemento */
    right: 30%;
    transform: translateX(0%); /* Centraliza o tooltip */
    background-color: rgba(204, 204, 204, 0.9);
    color: attr(data-tooltip-color color, black);
    padding: 5px 10px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    font-weight: 900 !important;
    transition: opacity 0.3s ease;
    z-index: 100; /* Garante que o tooltip fique visível */
    /* max-width: 1550px !important; */
}
  
  /* Inicialmente o tooltip fica invisível */
  .tooltip-target::after,
  .tooltip-target-left::after {
    visibility: hidden;
    opacity: 0;
    content: "";
    transition: visibility 0s 0.3s, opacity 0.3s linear;
  }

  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;

  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
  }

  .bg-everest {
    width: 100%;
    height: 180px;
    background: none !important;
    position: relative;
    overflow: hidden;
  }

  .bg-everest > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }

  .bg-everest > *:not(img) {
    position: relative;
    z-index: 1;
  }

  .bg-overlay{
    background-color: rgba(0, 0, 0, 0.7) !important;
    padding: 4px 8px;
  }

  .form-check-input:checked {
    background-color: #007bff !important; /* Verde */
    border-color: #007bff !important;
}

.area_relogio_login{
    width: 100%;
    height: 100%;
    max-width: 509px; 
    max-height: 509px;
}

.area_relogio_dash{
    width: 100%;
    height: 100%;
    max-width: 379px; 
    max-height: 379px;
}

.custom_modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}
.cursor{
    cursor: pointer;
}

.custom_card_modal{
    max-width: 768px;
    min-height: 450px;
    width: 100%;
    padding: 23px;
    color: #f5f5f5;
    background-color: #0F172A;
    border-radius: 25px;
    -webkit-box-shadow: 2px -1px 19px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px -1px 19px 0px rgba(0,0,0,0.75);
    box-shadow: 2px -1px 19px 0px rgba(0,0,0,0.75);
   
}

.email_login,
.senha_login,
.email_login:-webkit-autofill{
    width: 100%;
    height: 46px;
    border-radius: 9px;
    border: 1px solid #f5f5f5;
    padding-left: 8px;
    caret-color: #f5f5f5;
    color: #f5f5f5;
    background-color: transparent;
}
.email_login:focus{
    outline: 0;
}

.input_light{
    border: 1px solid #adadad;
    caret-color: gray;
    color: gray;
}

.input_light:focus{
    border: 1px solid rgb(0, 123, 255) !important;
    outline: 0;
}
.float-label{
    position: relative;
    left: 12px;
    top: 34px;
    pointer-events: none;
    transition: 0.3s;
    
    padding-left: 8px;
    padding-right: 5px;
    font-size: 16px;
    border-radius: 5px;
}
.float-label.light{
    color:#6C75A5
}

.float-label.active{
    background-color: #0F172A;
    font-size: 13px;
    top: 12px;
}

.float-label.light.active{
    background-color: #FFFFFF;
    font-size: 13px;
    top: 12px;
}

a.text-theme:hover{
    color: #0070a3;
}
.eye_input{
    position: relative;
    left: 92%;
    bottom: 34px;
    cursor: pointer;
}

.area_toast{
    position: fixed;
    pointer-events: none;
    transition: 0.6s;
    bottom: 10%;
    right: 25px;
    z-index: 1000;
    max-width: 100%;
    overflow: hidden;
    display: none;
    border-radius: 6px;
    -webkit-box-shadow: 3px 14px 39px 17px rgba(0,0,0,0.19);
    -moz-box-shadow: 3px 14px 39px 17px rgba(0,0,0,0.19);
    box-shadow: 3px 14px 39px 17px rgba(0,0,0,0.19);
        
}
 
.custom_toast{
    color: white;
    background-color: red;
    padding: 8px 9px;
    border-radius: 6px;
    min-width: 180px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
}
.slide-in {
    right: -100%; 
    animation: slideRightToLeft 3s ease-out forwards; 
}



/* Definindo a animação */
@keyframes slideRightToLeft {
    0% {
        right: -50%; 
    }
 
    50%{
        right: 10%;
    }
    80%{
        right: 9%;
    }
    85%{
        right: 10%;
    }
    100% {
       
        right: -100%; 
    }
}

.bg-success-toast{
    background-color: #166db4;
    
}
.bg-error-toast{
    background-color: #F53D3D;
  
}
.bg-warning-toast{
    background-color:  #FFAD4E;
   
}

.bg-info-toast{
    background-color: #17a2b8;
}

.fi:before{
    color: transparent !important;
}


.pill-notice{
    border-radius: 50%;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img_perfil {
   
    object-fit: cover;  /* Garante que a imagem preencha sem distorcer */
    object-position: center; /* Centraliza a imagem */
    border-radius: 50%; /* Mantém a borda arredondada */
}


@media screen and (max-width: 1200px){
    .area_relogio_login{
        max-width: 489px; 
        max-height: 489px;
    }
}

@media screen and (max-width: 1310px){

    .area_relogio_dash{
        max-width: 349px; 
        max-height: 349px;
    }
}

/* Ajuste para o plano básico em temas escuros */
html.dark-blue .pricing-card:not(.bg-dark) .text-secondary,
html.all-black .pricing-card:not(.bg-dark) .text-secondary {
  color: #e0e0e0 !important;
}

html.dark-blue .pricing-card:not(.bg-dark) .text-muted,
html.all-black .pricing-card:not(.bg-dark) .text-muted {
  color: #cccccc !important;
}

/* Ajustes para a seção "Escale para o próximo nível" em temas escuros */
html.dark-blue .bg-everest,
html.all-black .bg-everest {
  filter: none !important;
}

html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login {
  color: #ffffff !important;
  font-weight: 600 !important;
}

html.dark-blue .bg-everest .text-muted,
html.all-black .bg-everest .text-muted {
  color: #ffffff !important;
}

/* Ajustes para o footer em temas escuros */
html.dark-blue footer,
html.all-black footer {
  background-color: #000a22 !important;
  color: #ffffff !important;
}

html.dark-blue footer .text-dark,
html.all-black footer .text-dark {
  color: #ffffff !important;
}

html.dark-blue footer .text-bold,
html.all-black footer .text-bold {
  color: #ffffff !important;
  font-weight: 500 !important;
}

/* Ajustes para o plano básico em temas escuros */
html.dark-blue .pricing-card:not(.bg-dark) .text-secondary,
html.all-black .pricing-card:not(.bg-dark) .text-secondary {
  color: #e0e0e0 !important;
}

html.dark-blue .pricing-card:not(.bg-dark) .text-muted,
html.all-black .pricing-card:not(.bg-dark) .text-muted {
  color: #cccccc !important;
}

/* Ajustes para as seções de perguntas e planos */
html.dark-blue #perguntas,
html.all-black #perguntas {
  border-radius: 15px !important;
  overflow: unset !important;
}

html.dark-blue #assinar,
html.all-black #assinar {
  border-radius: 15px !important;
  overflow: unset !important;
}

html.dark-blue .accordion-item,
html.all-black .accordion-item {
  border-radius: 15px !important;
  margin-bottom: 0 !important;
}

html.dark-blue .accordion-button,
html.all-black .accordion-button {
  border-radius: 15px !important;
}

html.dark-blue .accordion-button:not(.collapsed),
html.all-black .accordion-button:not(.collapsed) {
  border-radius: 15px 15px 0 0 !important;
}

html.dark-blue .accordion-body,
html.all-black .accordion-body {
  border-radius: 0 0 15px 15px !important;
}

/* Plano Básico mais claro nos temas escuros */
html.dark-blue .pricing-card:not(.bg-dark) .card-title,
html.all-black .pricing-card:not(.bg-dark) .card-title {
  color: #f2f2f2 !important;
}
html.dark-blue .pricing-card:not(.bg-dark) h1,
html.all-black .pricing-card:not(.bg-dark) h1 {
  color: #f2f2f2 !important;
}
html.dark-blue .pricing-card:not(.bg-dark) .feature-list li,
html.all-black .pricing-card:not(.bg-dark) .feature-list li {
  color: #e0e0e0 !important;
}

/* Footer texto branco puro nos temas escuros */
html.dark-blue footer,
html.all-black footer {
  color: #fff !important;
}
html.dark-blue footer .text-dark,
html.all-black footer .text-dark,
html.dark-blue footer .text-bold,
html.all-black footer .text-bold {
  color: #fff !important;
}

/* Seção 'Escale para o próximo nível' texto branco nos temas escuros */
html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login,
html.dark-blue .bg-everest .text-muted,
html.all-black .bg-everest .text-muted {
  color: #fff !important;
}

/* Forçar arredondamento dos cards dos planos nos temas escuros */
html.dark-blue .pricing-card,
html.all-black .pricing-card {
  border-radius: 20px !important;
}

html.dark-blue .pricing-card .card-body .btn{
  background-color: rgb(230, 230, 230) !important;
  color: black !important;
}

/* Remover arredondamento das perguntas nos temas escuros */
/* html.dark-blue #perguntas,
html.all-black #perguntas,
html.dark-blue .accordion-item,
html.all-black .accordion-item,
html.dark-blue .accordion-button,
html.all-black .accordion-button,
html.dark-blue .accordion-body,
html.all-black .accordion-body {
  border-radius: 15px !important;; */
/* } */

/* Texto branco puro na seção 'Escale para o próximo nível' nos temas escuros */
html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login,
html.dark-blue .bg-everest .text-muted,
html.all-black .bg-everest .text-muted {
  color: #fff !important;
}

/* Forçar texto branco puro na seção 'Escale para o próximo nível' nos temas escuros */
html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login {
  color: #fff !important;
}
html.dark-blue .bg-everest span,
html.all-black .bg-everest span {
  color: #fff !important;
}

html.dark-blue .footer-social img,
html.all-black .footer-social img {
  filter: brightness(0) invert(1) !important;
}

#theme-icon {
  position: fixed;
  top: 20px;
  left: 0;
  font-size: 2.2rem;
  z-index: 9999;
  padding-left: 10px;
}
html.dark-blue #theme-icon i,
html.all-black #theme-icon i {
  color: #fff;
}

/* Estilos para o modal de sucesso nos diferentes temas */
html.light .swal2-popup {
    background-color: #fff !important;
    color: #000 !important;
}

html.dark-blue .swal2-popup {
    background-color: #001233 !important;
    color: #fff !important;
}

html.all-black .swal2-popup {
    background-color: #0a0a0a !important;
    color: #fff !important;
}

/* Ajustes para o título do modal */
html.light .swal2-title {
    color: #000 !important;
}

html.dark-blue .swal2-title,
html.all-black .swal2-title {
    color: #fff !important;
}

/* Ajustes para o texto do modal */
html.light .swal2-html-container {
    color: #000 !important;
}

html.dark-blue .swal2-html-container,
html.all-black .swal2-html-container {
    color: #fff !important;
}

/* Ajustes para os botões do modal */
html.light .swal2-confirm {
    background-color: #007bff !important;
    color: #fff !important;
}

html.dark-blue .swal2-confirm {
    background-color: #27476e !important;
    color: #fff !important;
}

html.all-black .swal2-confirm {
    background-color: #1a1a1a !important;
    color: #fff !important;
}

/* Ajustes para o botão de cancelar */
html.light .swal2-cancel {
    background-color: #6c757d !important;
    color: #fff !important;
}

html.dark-blue .swal2-cancel {
    background-color: #172644 !important;
    color: #fff !important;
}

html.all-black .swal2-cancel {
    background-color: #333333 !important;
    color: #fff !important;
}

/* Ajustes para o ícone de sucesso */
html.light .swal2-success-circular-line-left,
html.light .swal2-success-circular-line-right,
html.light .swal2-success-fix {
    background-color: #fff !important;
}

html.dark-blue .swal2-success-circular-line-left,
html.dark-blue .swal2-success-circular-line-right,
html.dark-blue .swal2-success-fix {
    background-color: #001233 !important;
}

html.all-black .swal2-success-circular-line-left,
html.all-black .swal2-success-circular-line-right,
html.all-black .swal2-success-fix {
    background-color: #0a0a0a !important;
}

html.dark-blue .pricing-card .card-body .btn{
  background-color: rgb(230, 230, 230) !important;
  color: black !important;
}

html.all-black .pricing-card .card-body .btn{
  background-color: rgb(231, 231, 231) !important;
  color: black !important;
}

html.all-black .modal-content {
  background-color: rgb(44, 44, 44) !important;
  border-radius: 15px !important;
  border: 1px solid #333333 !important;
}

html.all-black .custom_card_modal {
  background-color: rgb(44, 44, 44) !important;
}
/* ——————————————————————————————————————————————————————————————
   Temas via CSS Variables
————————————————————————————————————————————————————————————— */
html.light, body.light {
  background-color: #f4f4fa;
}
html.all-black, body.all-black {
  background-color: #000000;
}
html.dark-blue, body.dark-blue {
  background-color: #000a22;
}

/* ——————————————————————————————————————————————————————————————
   Header responsivo ao tema
————————————————————————————————————————————————————————————— */
/* Declaração de variáveis padrão */
:root {
  --header-bg-light:    #007bff;
  --header-text-light:  #ffffff;

  --header-bg-dark-blue:   #001a40;
  --header-text-dark-blue: #ffffff;

  --header-bg-all-black:   #000000;
  --header-text-all-black: #ffffff;
  
  /* variáveis de cores para gráficos e textos */
  --chart-bg-light:       #f4f4fa;
  --chart-bg-dark-blue:   #000a22;
  --chart-bg-all-black:   #000000;

  --chart-text-light:     #333333;
  --chart-text-dark-blue: #e0e0e0;
  --chart-text-all-black: #e0e0e0;

  --button-bg-light:      #FFAD4E;
  --button-bg-dark-blue:  #27476e;
  --button-bg-all-black:  #1a1a1a;

  --button-text-light:    #000000;
  --button-text-dark-blue:#ffffff;
  --button-text-all-black:#ffffff;
  
  --card-bg-light:    #ffffff;
  --card-bg-dark-blue:   #050D26;
  --card-bg-all-black:   #00010a;

  --text-primary-light: #333333;
  --text-primary-dark: #ffffff;
}

/* Tema Light - Mantém o estilo original */
html.light .bg-header,
body.light .bg-header {
  background: var(--header-bg-light) !important;
  color: var(--header-text-light) !important;
}

html.light .bg-subheader,
body.light .bg-subheader {
  background-color: rgb(255, 173, 78) !important;
  color: var(--header-text-light) !important;
}

html.light .text-theme {
  color: #007bff !important;
}

html.light .bg-theme {
  background-color: #007bff !important;
}

html.light .bg-everest {
  background-color: #f4f4fa !important;
}

/* Tema Dark-Blue */
html.dark-blue .bg-header,
body.dark-blue .bg-header {
  background: var(--header-bg-dark-blue) !important;
  color: var(--header-text-dark-blue) !important;
}

html.dark-blue .bg-subheader,
body.dark-blue .bg-subheader {
  background-color: #27476e !important;
  color: var(--header-text-dark-blue) !important;
}

/* Tema All-Black */
html.all-black .bg-header,
body.all-black .bg-header {
  background: var(--header-bg-all-black) !important;
  color: var(--header-text-all-black) !important;
}

html.all-black .bg-subheader,
body.all-black .bg-subheader {
  background-color: #1a1a1a !important;
  color: var(--header-text-all-black) !important;
}

/* Ajustes para temas escuros */
html.dark-blue .text-theme,
html.all-black .text-theme {
  color: #4dabff !important;
}

html.dark-blue .bg-theme {
  background-color: #000A22 !important;
}
html.all-black .bg-theme {
  background-color: #000000 !important;
}

/* Ajustes para o footer em temas escuros */
html.dark-blue footer,
html.all-black footer {
  background-color: #000a22 !important;
  color: #ffffff !important;
}

html.dark-blue footer .text-dark,
html.all-black footer .text-dark {
  color: #ffffff !important;
}

html.dark-blue footer .text-bold,
html.all-black footer .text-bold {
  color: #ffffff !important;
  font-weight: 500 !important;
}

/* Ajustes para as perguntas frequentes em temas escuros */
html.dark-blue .accordion,
html.all-black .accordion {
  background-color: transparent !important;
}

html.dark-blue .accordion-item,
html.all-black .accordion-item {
  background-color: transparent !important;
  border-color: #333333 !important;
  border-radius: 15px !important;
}

html.dark-blue .accordion-button,
html.all-black .accordion-button {
  background-color: transparent !important;
  color: #ffffff !important;
}

html.dark-blue .accordion-button:not(.collapsed),
html.all-black .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: #ffffff !important;
}

html.dark-blue .accordion-body,
html.all-black .accordion-body {
  background-color: transparent !important;
  color: #e0e0e0 !important;
}

/* Ajustes para os cards de plano em temas escuros */
html.dark-blue .pricing-card,
html.all-black .pricing-card {
  background-color: transparent !important;
  border-color: #333333 !important;
  border-radius: 15px !important;
}

html.dark-blue .pricing-card .card-body,
html.all-black .pricing-card .card-body {
  background-color: transparent !important;
  color: #ffffff !important;
}

/* Ajuste para o card de plano avançado no tema light */
html.light .pricing-card.bg-dark {
  border-radius: 15px !important;
}

html.light .pricing-card.bg-dark .card-body {
  background-color: #0F172A !important;
  color: #ffffff !important;
  border-radius: 15px !important;
}

html.light .pricing-card.bg-dark .card-title {
  font-weight: 500 !important;
}

/* Ajuste para os cards de ativos no tema light */
html.light .bg-card-init {
  background-color: #0F172A !important;
  border-radius: 15px !important;
  border: none !important;
}

html.light .bg-card-init .card-body {
  background-color: #0F172A !important;
  border-radius: 15px !important;
}

html.light .bg-card-init .text-muted {
  color: #a0aec0 !important;
}

html.light .bg-card-init .text-white {
  color: #ffffff !important;
}

/* Ajuste para a imagem everest.png em temas escuros */
html.dark-blue .bg-everest,
html.all-black .bg-everest {
  filter: none !important;
}

/* Aplicar filtro invertido apenas no <img> dentro da .bg-everest nos temas escuros */
html.dark-blue .bg-everest > img,
html.all-black .bg-everest > img {
  filter: invert(1) hue-rotate(180deg) !important;
}

/* Garantir que o texto não seja afetado por filtro */
html.dark-blue .bg-everest > *:not(img),
html.all-black .bg-everest > *:not(img) {
  filter: none !important;
}

html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login,
html.dark-blue .bg-everest .title_login + span,
html.all-black .bg-everest .title_login + span {
  color: #fff !important;
}

html.dark-blue .bg-everest .text-muted,
html.all-black .bg-everest .text-muted {
  color: #ffffff !important;
}

html.dark-blue .bg-everest .btn,
html.all-black .bg-everest .btn {
  background-color: #0056b3 !important;
  color: #ffffff !important;
  border: none !important;
}

html.dark-blue .bg-everest .btn.border-secondary,
html.all-black .bg-everest .btn.border-secondary {
  background-color: transparent !important;
  border: 1px solid #4dabff !important;
  color: #4dabff !important;
}

/* Ajustes para o modal de login em temas escuros */
html.dark-blue .custom_card_modal,
html.all-black .custom_card_modal {
  background-color: #050D26 !important;
  color: #ffffff !important;
}

html.dark-blue .email_login,
html.dark-blue .senha_login,
html.all-black .email_login,
html.all-black .senha_login {
  border-color: #172644 !important;
  color: #ffffff !important;
}

html.dark-blue .float-label,
html.all-black .float-label {
  color: #ffffff !important;
}

html.dark-blue .float-label.active,
html.all-black .float-label.active {
  background-color: #050D26 !important;
}

/* ——————————————————————————————————————————————————————————————
   Cards de cotações responsivos ao tema (sem interferir cores dinâmicas)
————————————————————————————————————————————————————————————— */
/* Tema Light (sem mudanças, mantém o padrão atual) */
html.light .card_indices,
body.light .card_indices {
  background-color: #ffffff;
}
html.light .card_indices .card-header {
  background-color: #ffffff !important;
}

/* Tema Dark-Blue */
html.dark-blue .card_indices,
body.dark-blue .card_indices {
  background-color: #050D26 !important;
}
html.dark-blue .card_indices .card-header {
  background-color: #091333 !important;
}
/* só estiliza bordas, mas não força cor de texto */
html.dark-blue .card_indices .table,
html.dark-blue .card_indices .table td,
html.dark-blue .card_indices .table th {
  border-color: #333333 !important;
}

/* Tema All-Black */
html.all-black .card_indices,
body.all-black .card_indices {
  background-color: #00010a !important;
}
html.all-black .card_indices .card-header {
  background-color: #000000 !important;
}
html.all-black .card_indices .table,
html.all-black .card_indices .table td,
html.all-black .card_indices .table th {
  border-color: #333333 !important;
}

/* ——————————————————————————————————————————————————————————————
   Ajuste de cor de texto padrão nos cards (Dark-Blue / All-Black)
————————————————————————————————————————————————————————————— */
/* Dark-Blue – texto padrão mais claro */
html.dark-blue .card_indices,
body.dark-blue .card_indices {
  color: #ffffff !important;
}

/* All-Black – texto padrão mais claro */
html.all-black .card_indices,
body.all-black .card_indices {
  color: #ffffff !important;
}

/* ——————————————————————————————————————————————————————————————
   Legibilidade das tabelas dos cards em temas escuros
————————————————————————————————————————————————————————————— */
/* Define cor clara como padrão para todo texto dentro de .card_indices .table */
html.dark-blue .card_indices .table,
body.dark-blue .card_indices .table,
html.all-black .card_indices .table,
body.all-black .card_indices .table {
  color: #e0e0e0 !important;
}

/* mantém só as bordas mais suaves */
html.dark-blue .card_indices .table th,
html.dark-blue .card_indices .table td {
  border-color: #172644 !important;
}

/* mantém só as bordas mais suaves */
html.all-black .card_indices .table th,
html.all-black .card_indices .table td {
  border-color: #333333 !important;
}

/* (Opcional) Se por acaso alguma cor dinâmica ainda for afetada,
   reforce aqui suas classes de percentuais/verdes/vermelhos: */
html.dark-blue .card_indices .table .text-success-alt,
body.dark-blue  .card_indices .table .text-success-alt,
html.all-black  .card_indices .table .text-success-alt,
body.all-black  .card_indices .table .text-success-alt {
  color: #28a745 !important;
}
html.dark-blue .card_indices .table .text-danger,
body.dark-blue  .card_indices .table .text-danger,
html.all-black  .card_indices .table .text-danger,
body.all-black  .card_indices .table .text-danger {
  color: #dc3545 !important;
}

/* ——————————————————————————————————————————————————————————————
   Borda branca fina nos cards em temas escuros
————————————————————————————————————————————————————————————— */

html.dark-blue .card_indices,
body.dark-blue .card_indices {
  border-radius: 15px !important;
  border: 1px solid #172644 !important;
}

html.all-black .card_indices,
body.all-black .card_indices {
  border-radius: 15px !important;
  border: 1px solid #333333 !important;
}

html.dark-blue .investing-iframe,
body.dark-blue .investing-iframe,
html.all-black .investing-iframe,
body.all-black .investing-iframe {
  filter: invert(90%) hue-rotate(180deg);
}

/* containers de amCharts */
#chartdiv, #g20Chart {
  background-color: var(--chart-bg-light);
}
html.dark-blue #chartdiv,
body.dark-blue #chartdiv,
html.dark-blue #g20Chart,
body.dark-blue #g20Chart {
  background-color: var(--chart-bg-dark-blue) !important;
}
html.all-black #chartdiv,
body.all-black #chartdiv,
html.all-black #g20Chart,
body.all-black #g20Chart {
  background-color: var(--chart-bg-all-black) !important;
}

/* ——————————————————————————————————————————————————————————————
   Parte do Perfil
————————————————————————————————————————————————————————————— */

/* avatar */
.img_perfil {
  width: 125px;
  height: 125px;
  object-fit: cover;
  border-radius: 50%;
}

/* botão de preview de imagem */
.image-preview {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--button-bg-light);
  border-radius: .375rem;
  cursor: pointer;
  background: var(--button-bg-light);
  color: var(--button-text-light);
}
body.dark-blue .image-preview {
  background: var(--button-bg-dark-blue) !important;
  color: var(--button-text-dark-blue) !important;
  border-color: var(--button-bg-dark-blue) !important;
}
body.all-black .image-preview {
  background: var(--button-bg-all-black) !important;
  color: var(--button-text-all-black) !important;
  border-color: var(--button-bg-all-black) !important;
}

/* Tema Light (mantém o padrão branco) */
html.light .card,
body.light .card {
  background-color: var(--card-bg-light) !important;
}

/* Tema Dark-Blue */
html.dark-blue .card,
body.dark-blue .card {
  background-color: var(--card-bg-dark-blue) !important;
  border: 1px solid #172644;
  color: #e0e0e0;
}

/* Tema All-Black */
html.all-black .card,
body.all-black .card {
  background-color: var(--card-bg-all-black) !important;
  border: 1px solid #333;
  color: #e0e0e0;
}

/* — Overrides para inputs (DaisyUI) nos temas escuros — */
html.dark-blue .input_light,
body.dark-blue .input_light,
html.dark-blue .input_float,
body.dark-blue .input_float {
  background-color: var(--chart-bg-dark-blue) !important;
  border-color: #172644 !important;
  color: #007bff !important;
}
html.all-black .input_light,
body.all-black .input_light,
html.all-black .input_float,
body.all-black .input_float {
  background-color: var(--card-bg-all-black) !important;
  border-color: #333 !important;
  color: #ffffff !important;
}

/* Floating labels (DaisyUI) */
html.dark-blue .float-label,
body.dark-blue .float-label {
  background-color: var(--chart-bg-dark-blue) !important;
  color: #007bff !important;
}
html.all-black .float-label,
body.all-black .float-label {
  background-color: var(--card-bg-all-black) !important;
  color: #ffffff !important;
}

/* Garantir rótulos ativos também */
html.dark-blue .float-label.active,
body.dark-blue .float-label.active,
html.dark-blue .float-label.light,
body.dark-blue .float-label.light {
  background-color: var(--chart-bg-dark-blue) !important;
  color: #007bff !important;
}
html.all-black .float-label.active,
body.all-black .float-label.active,
html.all-black .float-label.light,
body.all-black .float-label.light {
  background-color: var(--card-bg-all-black) !important;
  color: #ffffff !important;
}


/* ——————————————————————————————————————————————————————————————
   Original CSS completo
   (sem alterações em cores, para não quebrar layout)
————————————————————————————————————————————————————————————— */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
 
/* Regular */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-It.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

/* Light */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Light Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-LightIt.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* Bold */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Bold Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-BoldIt.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Black */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Black Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-BlackIt.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* ExtraLight */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

/* ExtraLight Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-ExtraLightIt.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

/* SemiBold */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

/* SemiBold Italic */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-SemiboldIt.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}
html {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 10px;
    max-height: 10px;
    background-color: #010304;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(0, 123, 255);
    box-shadow: inset 0 0 6px rgba(0, 161, 241, 0.5);
    border-radius: 5px;
}

*{
    margin: 0;
    padding:  0;
  
    box-sizing: border-box;
    font-family: 'SourceSansPro', sans-serif;
}
.card_indices{
    border-radius: 15px !important;
}

.font-popp{
    font-family: 'Poppins' !important;

}
.bg-theme-sec{
    background-color: #FFAD4E !important;
}
.text-theme-sec{
    color: #FFAD4E !important;
}
.text-right{
    text-align: right !important;
}

.text-success-alt{
    color: #28a745 !important
}
.title_login{
    font-weight: bold !important;
    font-family: "Open Sans", serif;
}
.text-sm{
    font-size: 13px !important;
}
.title-card{
    font-weight: 900 !important;
    font-family: 'SourceSansPro', sans-serif;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    background-color: #FFFFFF;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 15px;
}

.bg-theme{
    background: #007bff;
    color: white;
}
.text-theme{
    color: #007bff;
}
.title-action{
    font-weight: bold;
}

.bg-theme:hover{
    /* background: #0193db; */
    color: white;
    transition: 0.3s;
}

.bg-default{
    background-color: #ededed;
    border: 1px solid #ced4da;
}
.swal2-popup.swal2-modal.custom-swal-bg.swal2-icon-warning.swal2-show{
    background-color: rgba(0, 0, 0, 0.5) !important; /* Fundo com transparência */
    color: white !important; /* Cor do texto para contraste */
    border-radius: 23px !important; /* Arredondamento opcional */
}
.custom-swal-bg #swal2-title{
    color: white !important;
}

/* .swal2-success-circular-line-right,
.swal2-success-fix,
.swal2-success-circular-line-left{
    background-color: rgba(0, 0, 0, 0.5) !important;

} */


table tr:last-child td {
    border-bottom: none !important;
}


.bg-default:hover{
    background-color: #e6e3e3;
    transition: 0.3s;
}

body{
    background-color: #f4f4fa;
    overflow-x: hidden; 
}

.bg-header{
    color: white !important;
    background: #007bff;
    /* background: linear-gradient(142deg, rgba(0, 161, 241,1) 0%, rgba(7, 154, 227,1) 48%, rgba(28,149,193,1) 100%); */
}

.bg-subheader{
    background-color: rgb(255, 173, 78) !important;
    color: white;
}

/* .hover_menu{
    transition: 0.3s;
    color: azure;
} */

.tradingview-widget-copyright{
    display: none !important;
}

.js-copyright-label{
    color: red !important
}
.table td {
    font-size: 12px !important; 
}

.nav-link.dropdown-toggle::after {
    content: none;
}


.dropdown-toggle::after {
    content: none;
}

.btn_partner{
    text-decoration: none;
    color: #303030;
    font-weight: bold;
    border-radius: 10px;
    border: 1px solid black;
    padding: 10px 20px;
    background-color: white;
    -webkit-box-shadow: 7px 14px 17px -7px rgba(0,0,0,0.75);
-moz-box-shadow: 7px 14px 17px -7px rgba(0,0,0,0.75);
box-shadow: 7px 14px 17px -7px rgba(0,0,0,0.75);
}

.status-bubble {
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    border: 3px solid #ccc; /* Borda cinza clara por padrão */
    background-color: #ccc; 
    transition:  border-color 0.3s, border 0.3s;
    opacity: 0.6; /* Fica um pouco transparente por padrão */
    background-color: #00bf63 !important;
  }
  
  /* Efeito quando o status for 'ativo' (verde) */
  .status-bubble.active {
    border-color:  #00bf63 !important;
   
    opacity: 1; /* Retorna a opacidade ao normal quando está ativo */
  }

  .status-bubble.close {
     border-color: #64748b; 
  }

  .status-bubble.after-hours {
     border-color: #002aff; 
  }

  .status-bubble.pre-market {
    border-color: #f4b840; 
 }



.font11{
    font-size: 11px !important;
}
.btn_assinatura{
    animation: pulse 1.8s infinite; 
}

.btn_partner:hover {
    transition: 0.5s;
    transform: scale(1.03);
    /* animation: pulse 1.8s infinite; */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

.backcover_mobile{
    background-color: rgba(0,0,0,0.65);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
   
}


.menu_mobile_sidebar{
    background-color: #fafafa;
    width: 0;
    height: 100vh;
   
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: width 0.2s ease-in-out;
}
.menu_mobile_sidebar.open{
    width: 80%;
    
}

.btn-soft-info {
  background-color: var(--button-bg-light);
  color: var(--button-text-light);
}
html.dark-blue .btn-soft-info,
body.dark-blue .btn-soft-info {
  background-color: var(--button-bg-dark-blue) !important;
  color: var(--button-text-dark-blue) !important;
}
html.all-black .btn-soft-info,
body.all-black .btn-soft-info {
  background-color: var(--button-bg-all-black) !important;
  color: var(--button-text-all-black) !important;
}
/* botões ativos */
.btn-soft-info.btn-active {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.2);
}

#indicatorButtons {
  margin-bottom: 3rem; /* ajusta a distância abaixo dos botões */
}

/* Legenda do mapa: texto claro em temas escuros */
html.dark-blue #legend span.text-black,
body.dark-blue #legend span.text-black,
html.all-black #legend span.text-black,
body.all-black #legend span.text-black {
  color: var(--chart-text-dark-blue) !important;
}

.btn_close_mobile_sidebar{
    width:  20%;
    padding: 20px 10px;
    cursor: pointer;
    height: 100vh;
}

@media screen and (max-width: 1090px){
    #header_desktop{
        display: none !important;
    }
    #header_mobile{
        display: block !important;
    }
}
.tooltip-target,
.tooltip-target-left{
    position: relative;
    cursor: pointer;
}

.bg-card-init {
    background-color: #0f172a;
}



.text-dark-init{
    color: #0F172A;
}

.text-dark-init:hover{
    color: #131e38;
    animation: pulse 1.8s infinite;
}

.text-bold{
    font-family: 'SourceSansPro';
    font-weight: 700;
}

.tooltip-target:hover::after {
    content: attr(data-tooltip); /* Conteúdo do tooltip */
    position: absolute;
    bottom: 100%; /* Coloca o tooltip acima do elemento */
    left: 30%;
    transform: translateX(0%); /* Centraliza o tooltip */
    background-color: rgba(204, 204, 204, 0.9);
    color: attr(data-tooltip-color color, black);
    padding: 5px 10px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    font-weight: 900 !important;
    transition: opacity 0.3s ease;
    z-index: 100; /* Garante que o tooltip fique visível */
    /* max-width: 600px !important; */
}

/* Estilo do tooltip para tema dark-blue */
html.dark-blue .tooltip-target:hover::after,
html.dark-blue .tooltip-target-left:hover::after {
    background-color: rgba(0, 26, 64, 0.9) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Estilo do tooltip para tema all-black */
html.all-black .tooltip-target:hover::after,
html.all-black .tooltip-target-left:hover::after {
    background-color: rgba(40, 40, 40, 0.9) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tooltip-target-left:hover::after {
    content: attr(data-tooltip); /* Conteúdo do tooltip */
    position: absolute;
    bottom: 100%; /* Coloca o tooltip acima do elemento */
    right: 30%;
    transform: translateX(0%); /* Centraliza o tooltip */
    background-color: rgba(204, 204, 204, 0.9);
    color: attr(data-tooltip-color color, black);
    padding: 5px 10px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    font-weight: 900 !important;
    transition: opacity 0.3s ease;
    z-index: 100; /* Garante que o tooltip fique visível */
    /* max-width: 1550px !important; */
}
  
  /* Inicialmente o tooltip fica invisível */
  .tooltip-target::after,
  .tooltip-target-left::after {
    visibility: hidden;
    opacity: 0;
    content: "";
    transition: visibility 0s 0.3s, opacity 0.3s linear;
  }

  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;

  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
  }

  .bg-everest {
    width: 100%;
    height: 180px;
    background: none !important;
    position: relative;
    overflow: hidden;
  }

  .bg-everest > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }

  .bg-everest > *:not(img) {
    position: relative;
    z-index: 1;
  }

  .bg-overlay{
    background-color: rgba(0, 0, 0, 0.7) !important;
    padding: 4px 8px;
  }

  .form-check-input:checked {
    background-color: #007bff !important; /* Verde */
    border-color: #007bff !important;
}

.area_relogio_login{
    width: 100%;
    height: 100%;
    max-width: 509px; 
    max-height: 509px;
}

.area_relogio_dash{
    width: 100%;
    height: 100%;
    max-width: 379px; 
    max-height: 379px;
}

.custom_modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}
.cursor{
    cursor: pointer;
}

.custom_card_modal{
    max-width: 768px;
    min-height: 450px;
    width: 100%;
    padding: 23px;
    color: #f5f5f5;
    background-color: #0F172A;
    border-radius: 25px;
    -webkit-box-shadow: 2px -1px 19px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px -1px 19px 0px rgba(0,0,0,0.75);
    box-shadow: 2px -1px 19px 0px rgba(0,0,0,0.75);
   
}

.email_login,
.senha_login,
.email_login:-webkit-autofill{
    width: 100%;
    height: 46px;
    border-radius: 9px;
    border: 1px solid #f5f5f5;
    padding-left: 8px;
    caret-color: #f5f5f5;
    color: #f5f5f5;
    background-color: transparent;
}
.email_login:focus{
    outline: 0;
}

.input_light{
    border: 1px solid #adadad;
    caret-color: gray;
    color: gray;
}

.input_light:focus{
    border: 1px solid rgb(0, 123, 255) !important;
    outline: 0;
}
.float-label{
    position: relative;
    left: 12px;
    top: 34px;
    pointer-events: none;
    transition: 0.3s;
    
    padding-left: 8px;
    padding-right: 5px;
    font-size: 16px;
    border-radius: 5px;
}
.float-label.light{
    color:#6C75A5
}

.float-label.active{
    background-color: #0F172A;
    font-size: 13px;
    top: 12px;
}

.float-label.light.active{
    background-color: #FFFFFF;
    font-size: 13px;
    top: 12px;
}

a.text-theme:hover{
    color: #0070a3;
}
.eye_input{
    position: relative;
    left: 92%;
    bottom: 34px;
    cursor: pointer;
}

.area_toast{
    position: fixed;
    pointer-events: none;
    transition: 0.6s;
    bottom: 10%;
    right: 25px;
    z-index: 1000;
    max-width: 100%;
    overflow: hidden;
    display: none;
    border-radius: 6px;
    -webkit-box-shadow: 3px 14px 39px 17px rgba(0,0,0,0.19);
    -moz-box-shadow: 3px 14px 39px 17px rgba(0,0,0,0.19);
    box-shadow: 3px 14px 39px 17px rgba(0,0,0,0.19);
        
}
 
.custom_toast{
    color: white;
    background-color: red;
    padding: 8px 9px;
    border-radius: 6px;
    min-width: 180px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
}
.slide-in {
    right: -100%; 
    animation: slideRightToLeft 3s ease-out forwards; 
}



/* Definindo a animação */
@keyframes slideRightToLeft {
    0% {
        right: -50%; 
    }
 
    50%{
        right: 10%;
    }
    80%{
        right: 9%;
    }
    85%{
        right: 10%;
    }
    100% {
       
        right: -100%; 
    }
}

.bg-success-toast{
    background-color: #166db4;
    
}
.bg-error-toast{
    background-color: #F53D3D;
  
}
.bg-warning-toast{
    background-color:  #FFAD4E;
   
}

.bg-info-toast{
    background-color: #17a2b8;
}

.fi:before{
    color: transparent !important;
}


.pill-notice{
    border-radius: 50%;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img_perfil {
   
    object-fit: cover;  /* Garante que a imagem preencha sem distorcer */
    object-position: center; /* Centraliza a imagem */
    border-radius: 50%; /* Mantém a borda arredondada */
}


@media screen and (max-width: 1200px){
    .area_relogio_login{
        max-width: 489px; 
        max-height: 489px;
    }
}

@media screen and (max-width: 1310px){

    .area_relogio_dash{
        max-width: 349px; 
        max-height: 349px;
    }
}

/* Ajuste para o plano básico em temas escuros */
html.dark-blue .pricing-card:not(.bg-dark) .text-secondary,
html.all-black .pricing-card:not(.bg-dark) .text-secondary {
  color: #e0e0e0 !important;
}

html.dark-blue .pricing-card:not(.bg-dark) .text-muted,
html.all-black .pricing-card:not(.bg-dark) .text-muted {
  color: #cccccc !important;
}

/* Ajustes para a seção "Escale para o próximo nível" em temas escuros */
html.dark-blue .bg-everest,
html.all-black .bg-everest {
  filter: none !important;
}

html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login {
  color: #ffffff !important;
  font-weight: 600 !important;
}

html.dark-blue .bg-everest .text-muted,
html.all-black .bg-everest .text-muted {
  color: #ffffff !important;
}

/* Ajustes para o footer em temas escuros */
html.dark-blue footer,
html.all-black footer {
  background-color: #000a22 !important;
  color: #ffffff !important;
}

html.dark-blue footer .text-dark,
html.all-black footer .text-dark {
  color: #ffffff !important;
}

html.dark-blue footer .text-bold,
html.all-black footer .text-bold {
  color: #ffffff !important;
  font-weight: 500 !important;
}

/* Ajustes para o plano básico em temas escuros */
html.dark-blue .pricing-card:not(.bg-dark) .text-secondary,
html.all-black .pricing-card:not(.bg-dark) .text-secondary {
  color: #e0e0e0 !important;
}

html.dark-blue .pricing-card:not(.bg-dark) .text-muted,
html.all-black .pricing-card:not(.bg-dark) .text-muted {
  color: #cccccc !important;
}

/* Ajustes para as seções de perguntas e planos */
html.dark-blue #perguntas,
html.all-black #perguntas {
  border-radius: 15px !important;
  overflow: unset !important;
}

html.dark-blue #assinar,
html.all-black #assinar {
  border-radius: 15px !important;
  overflow: unset !important;
}

html.dark-blue .accordion-item,
html.all-black .accordion-item {
  border-radius: 15px !important;
  margin-bottom: 0 !important;
}

html.dark-blue .accordion-button,
html.all-black .accordion-button {
  border-radius: 15px !important;
}

html.dark-blue .accordion-button:not(.collapsed),
html.all-black .accordion-button:not(.collapsed) {
  border-radius: 15px 15px 0 0 !important;
}

html.dark-blue .accordion-body,
html.all-black .accordion-body {
  border-radius: 0 0 15px 15px !important;
}

/* Plano Básico mais claro nos temas escuros */
html.dark-blue .pricing-card:not(.bg-dark) .card-title,
html.all-black .pricing-card:not(.bg-dark) .card-title {
  color: #f2f2f2 !important;
}
html.dark-blue .pricing-card:not(.bg-dark) h1,
html.all-black .pricing-card:not(.bg-dark) h1 {
  color: #f2f2f2 !important;
}
html.dark-blue .pricing-card:not(.bg-dark) .feature-list li,
html.all-black .pricing-card:not(.bg-dark) .feature-list li {
  color: #e0e0e0 !important;
}

/* Footer texto branco puro nos temas escuros */
html.dark-blue footer,
html.all-black footer {
  color: #fff !important;
}
html.dark-blue footer .text-dark,
html.all-black footer .text-dark,
html.dark-blue footer .text-bold,
html.all-black footer .text-bold {
  color: #fff !important;
}

/* Seção 'Escale para o próximo nível' texto branco nos temas escuros */
html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login,
html.dark-blue .bg-everest .text-muted,
html.all-black .bg-everest .text-muted {
  color: #fff !important;
}

/* Forçar arredondamento dos cards dos planos nos temas escuros */
html.dark-blue .pricing-card,
html.all-black .pricing-card {
  border-radius: 20px !important;
}

html.dark-blue .pricing-card .card-body .btn{
  background-color: rgb(230, 230, 230) !important;
  color: black !important;
}

/* Remover arredondamento das perguntas nos temas escuros */
/* html.dark-blue #perguntas,
html.all-black #perguntas,
html.dark-blue .accordion-item,
html.all-black .accordion-item,
html.dark-blue .accordion-button,
html.all-black .accordion-button,
html.dark-blue .accordion-body,
html.all-black .accordion-body {
  border-radius: 15px !important;; */
/* } */

/* Texto branco puro na seção 'Escale para o próximo nível' nos temas escuros */
html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login,
html.dark-blue .bg-everest .text-muted,
html.all-black .bg-everest .text-muted {
  color: #fff !important;
}

/* Forçar texto branco puro na seção 'Escale para o próximo nível' nos temas escuros */
html.dark-blue .bg-everest .title_login,
html.all-black .bg-everest .title_login {
  color: #fff !important;
}
html.dark-blue .bg-everest span,
html.all-black .bg-everest span {
  color: #fff !important;
}

html.dark-blue .footer-social img,
html.all-black .footer-social img {
  filter: brightness(0) invert(1) !important;
}

#theme-icon {
  position: fixed;
  top: 20px;
  left: 0;
  font-size: 2.2rem;
  z-index: 9999;
  padding-left: 10px;
}
html.dark-blue #theme-icon i,
html.all-black #theme-icon i {
  color: #fff;
}

/* Estilos para o modal de sucesso nos diferentes temas */
html.light .swal2-popup {
    background-color: #fff !important;
    color: #000 !important;
}

html.dark-blue .swal2-popup {
    background-color: #001233 !important;
    color: #fff !important;
}

html.all-black .swal2-popup {
    background-color: #0a0a0a !important;
    color: #fff !important;
}

/* Ajustes para o título do modal */
html.light .swal2-title {
    color: #000 !important;
}

html.dark-blue .swal2-title,
html.all-black .swal2-title {
    color: #fff !important;
}

/* Ajustes para o texto do modal */
html.light .swal2-html-container {
    color: #000 !important;
}

html.dark-blue .swal2-html-container,
html.all-black .swal2-html-container {
    color: #fff !important;
}

/* Ajustes para os botões do modal */
html.light .swal2-confirm {
    background-color: #007bff !important;
    color: #fff !important;
}

html.dark-blue .swal2-confirm {
    background-color: #27476e !important;
    color: #fff !important;
}

html.all-black .swal2-confirm {
    background-color: #1a1a1a !important;
    color: #fff !important;
}

/* Ajustes para o botão de cancelar */
html.light .swal2-cancel {
    background-color: #6c757d !important;
    color: #fff !important;
}

html.dark-blue .swal2-cancel {
    background-color: #172644 !important;
    color: #fff !important;
}

html.all-black .swal2-cancel {
    background-color: #333333 !important;
    color: #fff !important;
}

/* Ajustes para o ícone de sucesso */
html.light .swal2-success-circular-line-left,
html.light .swal2-success-circular-line-right,
html.light .swal2-success-fix {
    background-color: #fff !important;
}

html.dark-blue .swal2-success-circular-line-left,
html.dark-blue .swal2-success-circular-line-right,
html.dark-blue .swal2-success-fix {
    background-color: #001233 !important;
}

html.all-black .swal2-success-circular-line-left,
html.all-black .swal2-success-circular-line-right,
html.all-black .swal2-success-fix {
    background-color: #0a0a0a !important;
}

html.dark-blue .pricing-card .card-body .btn{
  background-color: rgb(230, 230, 230) !important;
  color: black !important;
}

html.all-black .pricing-card .card-body .btn{
  background-color: rgb(231, 231, 231) !important;
  color: black !important;
}

html.all-black .modal-content {
  background-color: rgb(44, 44, 44) !important;
  border-radius: 15px !important;
  border: 1px solid #333333 !important;
}

html.all-black .custom_card_modal {
  background-color: rgb(44, 44, 44) !important;
}
