@import url('https://fonts.googleapis.com/css2?family=Dongle&display=swap');

.page-content-galerry {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 130%;
}

.Galery-Text {

    display: flex;
    align-items: center;
    justify-content: space-around;
}

.Galery-Text_h1 {

    display: flex;
    width: 30%;
    align-items: center;
    font-family: "Grey Qo", cursive;
    font-size: 3rem;
    font-weight: 400;
    font-style: normal;
    justify-content: space-around;
}

._gallery-container {
    border: 1px solid #8C2819;
    display: flex;
    height: 130%;
    justify-content: space-around;
    flex-direction: column;
}

.g-Container {
    border: 1px solid #bd7772;
    height: 100%;
    width: 100px;
    opacity: 0;
    display: inline-block;
    margin-right: 10px;
    transform: translateY(30px) scale(0.8);
    animation: fadeInUp 1s ease forwards;
}

.dark-mode .g-Container {
    background-color: black !important;
    border: 1px solid #bd7772;
    height: 100%;
    width: 100px;
    opacity: 0;
    display: inline-block;
    margin-right: 10px;
    transform: translateY(30px) scale(0.8);
    animation: fadeInUp 1s ease forwards;
}

/* Atrasos de animação para cada container */
.g-Container:nth-child(1) {
    animation-delay: 0.5s;
}

.g-Container:nth-child(2) {
    animation-delay: 1s;
}

.g-Container:nth-child(3) {
    animation-delay: 1.5s;
}

.g-Container:nth-child(4) {
    animation-delay: 2s;
}

.g-Container:nth-child(5) {
    animation-delay: 2.5s;
}

.g-Container:nth-child(6) {
    animation-delay: 3s;
}

.g-Container:nth-child(7) {
    animation-delay: 3.5s;
}

.g-Container:nth-child(8) {
    animation-delay: 4s;
}

.g-Container:nth-child(9) {
    animation-delay: 4.5s;
}

.g-Container:nth-child(10) {
    animation-delay: 5s;
}

.g-Container:nth-child(11) {
    animation-delay: 5.5s;
}

.g-Container:nth-child(12) {
    animation-delay: 6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
        background-color: #f0e4e3;
    }

    50% {
        opacity: 0.5;
        transform: translateY(10px) scale(1.05);
        background-color: #f7b7a8;
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        background-color: #ffffff;
    }
}

/* Esconde o container por padrão se a animação já foi exibida */
.g-Container.no-animation {
    opacity: 1;
    /* Mostra o container */
    transform: none;
    /* Remove o deslocamento */
    animation: none;
    /* Remove a animação */
}



#column1,
#column2,
#column3,
#column4 {
    margin-top: 10px;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-around;
}



.img_inter_unique {

    width: 50px;
    height: 40px;
    background-image: url('/Assets/Imagens/Estrutural/application/faq.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}






.__overlay_alert_gallery {
    position: absolute;
    left: 50%;
    top: 50%;
    display: none;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 200px;
    z-index: 9;
}


.__envolve_alert_gallery {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: white;
    border-radius: 10px;

    /* animação */
    opacity: 0;
    transform:
        translateY(40px) scale(0.92) rotateX(12deg);



    animation: __galleryReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;

    transform-origin: center bottom;
    will-change: transform, opacity, filter;
}


@keyframes __galleryReveal {

    0% {
        opacity: 0;

        transform:
            translateY(40px) scale(0.60) rotateX(12deg);

    }

    60% {
        opacity: 1;

        transform:
            translateY(-6px) scale(1.02) rotateX(0deg);

    }
 
    100% {
        opacity: 1;

        transform:
            translateY(0px) scale(1) rotateX(0deg);

        filter: blur(0px);
    }
}

.__text_alert_view_gallery {
    height: 50%;
    width: 80%;
    display: flex;
    align-items: center;
    font-family: "Dongle", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    text-align: center;
    color: black;
    justify-content: center;
}


.__button_container_gallery {
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.styled-close-overlay{
    width: 120px;
    height: 50px;
    background-color: #202020;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.__playlist_container_algiment{
  
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}