.btnSair{
    display: block;
  margin: 10px auto;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--btn-bg);
  color: white;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
font-size: 16px;
max-width: 231px;
max-height: 44px;
}


.modal{
    position: fixed;
    top: 50%;
    left: 50%;
      background-color: var(--card-bg);
    color: black;
    padding: 30px;
    border-radius: 15px;
    width: 400px;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.5s ease;
    z-index: 20;
}


.modal.active{
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


.fundo{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-fundo);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s;
    z-index: 10;
}

.fundo.active{
    opacity: 1;
    pointer-events: all;
    backdrop-filter: blur(3px);
}

.fechar{
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--btn-fechar);
}

.titulo{
    color: var(--title-cor);
}

.subTitulo{
    color: var(--title-cor);

}