﻿html {
  font-size: var(--tamanho-fonte-base);
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  html {
    font-size: calc(var(--tamanho-fonte-base) * 0.9);
  }
}

body {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.3rem;
}

h3 {
  font-size: 1.1rem;
}

h4 {
  font-size: 1rem;
}

li,
dt,
dd {
  word-wrap: break-word;
}

/*Alteracao de configuracoes de terceiros*/
.form-control {
  background-color: #ffffff;
  border: 1px solid gray;
  color: #000000;
}

.control-label {
  color: #000000;
}

:focus-visible,
.btn-focus:hover,
.btn:focus-visible {
  outline: 2px solid var(--cor-foco);
  outline-offset: 1px;
}

li, dt, dd {
  word-wrap: break-word;
}

.container-sm, .container {
  max-width: none;
}

.tooltip-custom-bg .tooltip-inner {
  background-color: yellow;
  color: black;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--cor-primaria);
  border-radius: 10px;
  border: 2px solid var(--cor-primaria);
}

*::-webkit-scrollbar-track {
  background-color: #c0c0c0;
}

.popup-logout {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

    .popup-logout.oculto {
        display: none;
    }

.popup-logout-content {
    background: #fff;
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-confirmar, .btn-cancelar {
    margin: 8px 16px;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-confirmar {
    background: #d32f2f;
    color: #fff;
}

.btn-cancelar {
    background: #eee;
    color: #333;
}