.conteudo-principal-escrito-botao:hover {
    background-color: rgb(255, 255, 255);
    color: #000000;
}

.rodape-botao:hover {
    background-color: rgb(31, 31, 31);
    color: white;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes bluroncemore {
    from {
        -webkit-backdrop-filter: blur(0px);
        backdrop-filter: blur(0px);
    }
    to {
        -webkit-backdrop-filter: blur(100px);
        backdrop-filter: blur(100px);
    }
}

@keyframes bluronceagain {
    from {
        -webkit-backdrop-filter: blur(100px);
        backdrop-filter: blur(100px);
    }
    to {
        -webkit-backdrop-filter: blur(0px);
        backdrop-filter: blur(0px);
    }
}

@keyframes blurin {
    from {
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
    to {
        -webkit-filter: blur(100px);
        filter: blur(100px);
    }
}

@keyframes blurout {
    from {
        -webkit-filter: blur(100px);
        filter: blur(100px);
    }
    to {
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

html {
    opacity: 1;
    -webkit-animation: fadein 1.5s ease-in-out, blurout 1s ease-in-out;
    animation: fadein 1.5s ease-in-out, blurout 1s ease-in-out;
}

@media screen and (max-width: 1300px) {

    .cabecalho {
        opacity: 0;
    }

    .conteudo {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 10vw;
    }

    .conteudo-principal {
        -webkit-backdrop-filter: blur(0);
        backdrop-filter: blur(0);
        border: 0;
    }

    .gallery {
        width: 80%;
        --num-cols: 4;
    }

    .corpo {
        height: 100%;
        width: 100%;
        -webkit-backdrop-filter: blur(100px);
        backdrop-filter: blur(100px);
    }

    .conteudo-principal-escrito-titulo {
      font-size: 6vw;
    }

    .conteudo-principal-escrito-texto {
        font-weight: 300;
        font-size: 4vw;
    }

    .botao-menu {
        font-size: 4vw;
    }

    #botao-linguagem {
        font-family: 'Jost', sans-serif;
        display: inline-block;
        padding: 1vh 2vh;
        margin: 2%;
        height: fit-content;
        top: 0%;
        position: absolute;
        font-size: 4vw;
    }

    .galeria-nome {
        font-weight: 300;
        font-size: 4vw;
    }

    #gallerybody {
        height: 100vh;
    }
  }

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.gallery__item {
    position: relative;
    display: flex; /* Configura o contêiner como flexível */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    overflow: hidden;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px 0 black;
    border-radius: 0.5vw;
}

.gallery__item:hover {
    box-shadow: 0 0 15px 0 rgb(255, 142, 66),
    0 0 3px 0 rgb(255, 233, 161);
    transform: scale(105%);
}

.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    -webkit-animation: bluroncemore 0.5s ease-in-out;
    animation: bluroncemore 0.5s ease-in-out;
}

.modal img {
    border-radius: 1vw;
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
    -webkit-animation: fadein 0.2s ease-in-out, blurout 0.4s ease-in-out;
    animation: fadein 0.2s ease-in-out, blurout 0.4s ease-in-out;
    box-shadow: 0 0 5px 0 black;
}
