.conteudo{
    width: 100%;
    height: 100%;
}

.centroExibicao{
    position: relative;
    margin: auto;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 70px;
    max-width: 70%;
    z-index: 1;
}


@media screen and (max-width: 1200px) {

    .centroExibicao{
        max-width: 100%;
    }
  
}

.CarregamentoLocal {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 500; /* Fica na frente */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.CarregamentoLocal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


.CarregamentoLocal img {
    width: 50%;
    max-width: 250px;
    max-height: 100px;
    animation: pulse 1.5s infinite ease-in-out;
}


.Carregamento {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.Carregamento img {
    width: 60%;
    max-width: 300px;
    max-height: 100px;
    animation: pulse 1.5s infinite ease-in-out;
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.hidden {
    opacity: 0;
    visibility: hidden;
}
