#camada_carregamento {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ponto_carregador {
    width: 14px;
    height: 14px;
    margin: 0 4px;
    background-color: #0d6efd;
    border-radius: 50%;
    display: inline-block;
    animation: salto_pontos 1.4s infinite ease-in-out both;
}

.ponto_carregador:nth-child(1) {
    animation-delay: -0.32s;
}

.ponto_carregador:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes salto_pontos {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.texto_carregando {
    margin-top: 15px;
    color: #495057;
    font-weight: 500;
}