@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Gluten:wght@300&display=swap');port url('https://fonts.googleapis.com/css2?family=Gluten:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk&display=swap');

@font-face {
    font-family: 'Augie';
    src: url('../fonts/augie.ttf') format('truetype');
  }

:root{
    --cor-fundo: rgb(255, 255, 255);
    --cor-hover: rgb(118, 180, 145);
    --cor-primaria: rgb(0, 0, 0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


body.no-scroll {
    overflow: hidden;
}

 .conteudo {
    margin-bottom: 48px;
    border-top: 0.4px solid #FFF2E7;
    height: 100%;
    width: 100%;
}

.texto-titulo {
    font-family: 'Fredoka One', 'cursive';
    font-weight: 400;
    font-size: 75px;
    color: #C78EFC;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
    padding-bottom: 40px;
    text-align: center;
    margin-top: 60px;
}

.gallery-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    padding: 0 2vw;
}

.gallery-items{
    width: 610px;
    height: 800px;
    border: 10px solid #FFF;
    box-shadow: 5px 5px 5px 2px #0006;
    transition: transform .3s linear;
    margin-top: 10px;
    
}

.gallery-items:hover {
    transform: scale(1.1);
}

.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.small-img{
    height: 100%;
    cursor: pointer;
    transition: all linear 0.4s;
}
 
#modal_img{
    width: 65vw;
    transform: scale(0);
    transition: all linear .3s;

}

.modal_active #modal_img{
    transform: scale(1);
}
.modal{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    position: fixed;
    visibility: hidden;
    z-index: 1;
    opacity: 0;
    transition: visibility 0.8s linear, opacity 0.5s linear;
    overflow-y: auto;
    margin-top: -306px;
    overflow: auto;
    
    
}

.modal-content{
    position: absolute;
    width: $modal-width;
    height: $modal-height;
    padding: 2em;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.26), 0 26px 52px rgba(0, 0, 0, 0.26);
    text-align: center;
    margin-left: 220px;
 

}

 
@media only screen and (min-width: $modal-width) {
    .modal_content {
        left: 50%;
        margin-left: -#{$modal-width / 2};
    }
}

@media only screen and (min-height: $modal-height) {
    .modal_content {
        top: 50%;
        margin-top: -#{$modal-height / 2};
    }
}

.download-button {
    color:#fff;
    background-color: #000;
    position: absolute;
    top:10px;
    right: 55px;
    padding: 11px 10px;
    font-size: 15px;
    border:solid 1px #fff;
    transition: all ease-out .4s;
    cursor: pointer;
}

.download-button:hover{
    background-color: #f00;
}


#bt_close{
    color:#fff;
    background-color: #000;
    position: absolute;
    top:10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 25px;
    border:solid 1px #fff;
    transition: all ease-out .4s;
    cursor: pointer;
}
#bt_close:hover{
    background-color: #f00;
}

.modal_active{
    visibility: visible;
    opacity: 1;

}


@media (max-width: 1308px) {
    
    .modal {
        height: 116vh;
    }
    
    .modal-content {
        margin: 20% 12%;
        padding-bottom: 6em;
    }

    .gallery-items {
        width: 80%;
        height: 60%;
    }
}


@media (max-width: 830px) {

    .texto-titulo {
        font-size: 80px;
    }

    .modal-content {
        padding-bottom: 4em;
    }
    
}

@media (max-width: 600px) {

    .modal-content {
        padding-bottom: 2em;
        padding-top: 3em;
    }
    
}

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

    .texto-titulo {
      font-size: 70px;
      font-weight: 300;
    }

    .modal-content {
        padding-top: 2em;
        margin-top: 30%;
    }
    
}

@media screen and (max-width: 420px) {
    .texto-titulo {
      font-size: 55px;
      font-weight: 300;
    }

    .modal-content {
        margin-top: 60%;
    }

    .modal {
        height: 125vh;
    }
}

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

    .modal-content {
        margin: 80% 6%;
    }
}  

@media screen and (max-width: 310px) {
    .texto-titulo {
      font-size: 50px;
      font-weight: 300;
    }

}  