/* Reset de margens e preenchimentos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Configuração do corpo */
body {
    margin: 0;
    padding: 0;
    min-height: 200vh;
    background-color: #000; /* Cor de fundo alternativa */
    position: relative;
    overflow-x: hidden; /* Impede o deslocamento horizontal */
}

/* Pseudo-elemento para as imagens de fundo */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top; /* Garante que a imagem comece a partir do topo */
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1; /* Mantém a imagem de fundo atrás de todos os elementos */
}

/* Imagem de fundo para Desktop e Tablet Paisagem */
@media only screen and (min-width: 1025px) {
    body::before {
        background-image: url('images/fdo-dk-tbpai-1920x1800.webp');
    }
}

/* Imagem de fundo para Celular Paisagem e Tablet Retrato */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body::before {
        background-image: url('images/fdo-celpai-tbret-1280x1200.webp');
    }
}

/* Imagem de fundo para Celular Retrato */
@media only screen and (max-width: 767px) {
    body::before {
        background-image: url('images/fdo-celret-768x2922.webp');
    }
}

/* Estilo do Popup de Cookies */
.cookie-popup {
    max-width: 600px;
    width: 100%;
    text-align: center;
    z-index: 1000;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cookie-popup img {
    width: 100%;
    height: auto;
}
