.banner-section {
    width: 100%;
    height: 800px;
    /* background: url(../imagens/nossos-jogos/bg.png); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    margin-top: -120px;
    overflow: hidden;
    background-attachment: fixed;
}
.banner-section .img-container {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-60%);
    width: 800px;
}
.banner-section .img-container img{
    transition: all 1s ease;
    pointer-events: none;
}


.games-section {
    width: 100%;
    /* background: url(../imagens/home/bg-2.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    margin-top: -50px;
    z-index: 5;
    padding: 200px 0px;
}

.games-section::before{
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../imagens/peixes-final.png);
    background-size: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.games-section .top {
    width: 100%;
    height: 180px;
    background-color: #fff;
    mask-image: url(../imagens/top.png);
    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../imagens/top.png);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    overflow: visible;
    -webkit-mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    background-image: url(../imagens/peixes-final.png);
    background-size: auto;
    z-index: -1;
}
.games-section .bottom {
    width: 100%;
    height: 180px;
    background-color: #fff;
    mask-image: url(../imagens/bottom.png);
    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../imagens/bottom.png);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    overflow: visible;
    -webkit-mask-repeat: no-repeat;
    position: absolute;
    bottom: -35px;
    background-image: url(../imagens/peixes-final.png);
    z-index: -1;
    background-size: auto;
}


.games-section .container > .text-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}
.games-section .container .text-container h2{
    font-size: clamp(38px, 3.5vw, 55px);
    width: fit-content;
    color: var(--color-primary);
}
.games-section .container .cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    gap: 40px;
}



.games-section .container .cards-container .card-game{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    gap: 10px;
    position: relative;
}

.games-section .container .cards-container .card-game .img-container{
    height: 300px;
    width: 100%;
    overflow: hidden;
}
.games-section .container .cards-container .card-game .img-container img{
    height: 100%;
    transition: transform .4s ease-in-out;
}

.games-section .container .cards-container .card-game .text-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.games-section .container .cards-container .card-game .text-container > span{
    font-size: 36px;
    width: 100%;
    font-weight: 400;
}
.games-section .container .cards-container .card-game .text-container .icones{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
}

.games-section .container .cards-container .card-game .text-container .icones a{
    width: 40px;
    height: 40px;
}
.games-section .container .cards-container .card-game .text-container .icones a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter .2s ease-in-out;
}

.games-section .container .cards-container .card-game .text-container .icones a:hover img{
    filter: invert(1);
}

.games-section .container .cards-container .card-game:hover .img-container img{
    transform: scale(1.05);
}
.games-section .container > a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: var(--text-color-secondary);
    background-color: var(--color-primary);
    transition: background .3s ease-in-out;
    width: fit-content;
    border-radius: 10px;
    margin: 50px auto;
}
.games-section .container > a:hover{
    background-color: var(--color-primary-light);
}

.img-section {
    width: 100%;
    min-height: 1000px;
    background: url(../imagens/nossos-jogos/bg-bottom.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 4;
    position: relative;
    margin-top: -50px;
    background-attachment: fixed;
}



/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

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

}

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

}

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

}

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

}

/* MOBILE */
@media screen and (max-width: 1000px){
    .games-section .container .cards-container {
        gap: 50px;
        grid-template-columns: 1fr;
    }
    .banner-section{
        height: 700px;
    }
    .banner-section .img-container {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-60%);
        width: 690px;
    }
    .info-section .container .text-container p{
        text-align: center;
    }
    .img-section {
        min-height: 800px;
        background-size: cover;
        background-position: left;
    }
    .games-section {
        background-size: contain;
        background-position: top;
        background-repeat: repeat-y;
    }
}

@media screen and (max-width: 800px){
    .slick-dots {
        bottom: -15% !important;
    }
}

@media screen and (max-width: 700px){
    .slick-dots {
        bottom: -20% !important;
    }
}

@media screen and (max-width: 600px){
    .banner-section .img-container {
        width: 600px;
    }
}

@media screen and (max-width: 500px){
    .banner-section .img-container {
        transform: translateX(-55%);
        width: 500px;
    }
    .slick-dots {
        bottom: -30% !important;
    }
}

@media screen and (max-width: 375px){
    .banner-section .img-container {
        transform: translateX(-60%);
        width: 450px;
    }
}