@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'FuracaoFont';
    src: url('assets/Furacao-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


html {
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
}

.nav {
    background-color: #CD181E;
    padding: 20px 150px;
    display: flex;
    position: sticky;
    z-index: 9999;
    top: 0;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    img {
        height: 60px;
    }
}

.nav__links {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    display: flex;
    align-items: center;

    a {
        text-decoration: none;
        color: white;
        text-transform: uppercase;
        padding: 0 10px;
    }

    .nav__links__button {
        font-family: "Inter", sans-serif;
        background-color: white;
        color: #CD181E;
        padding: 10px;
        font-weight: 600;
        width: 100px;
        text-align: center;
        margin-left: 10px;
    }
}

.banner {
    display: flex;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.splide .splide__pagination__page {
    background: transparent;
    border: 2px solid white !important;
    border-radius: 50%;
    display: inline-block;
    height: 12px !important;
    margin: 3px;
    margin-inline: 6px !important;
    opacity: .7;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 12px !important;
}

.splide .splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex
;
    height: 2em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .9;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1;
}
.splide .splide__arrow svg {
    fill: white;
}

.reservas {
    padding: 150px;
    overflow-x: hidden;
    background: 
        linear-gradient(
        rgb(17, 17, 17, .96), 
        rgba(17, 17, 17, .96)
        ),
        url("assets/arena.png");
    background-position: bottom;

    .reservas__text {
        color: #CD181E;
        display: flex;
        flex-direction: column;

        .reservas__text__border {
            color: transparent;
            -webkit-text-stroke-width: .5px;
            -webkit-text-stroke-color: #CD181E;
        }

        span {
            font-family: 'FuracaoFont';
            font-style: normal;
            font-weight: 700;
            font-size: 52px;
            line-height: 56px;
        }
    }

    .reservas__image {
        position: relative;

        img {
            position: absolute;
            transform: rotate(90deg);
            right: -250px;
            top: -240px;
        }
    }

    .reservas__button {
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;   
        flex: 1;

        a {
            position: relative;

            svg {
                height: 80px;
            }

            span {
                position: absolute;
                left: 45px;
                top: 20px;
                font-size: 32px;
                font-family: 'FuracaoFont';
                font-style: normal;
                font-weight: 600;
                font-size: 32px;
                line-height: 32px;
            }
        }
    }
}

.endereco {
    background: linear-gradient(180deg, #CD181E 0%, #670C0F 100%);
    padding-bottom: 100px;

    .endereco__titles {
        padding: 90px 150px;
    }

    .endereco__title {
        flex: 1;
        padding: 0 15px;

        h3 {
            font-family: 'FuracaoFont';
            font-style: normal;
            font-weight: 700;
            font-size: 46px;
            line-height: 50px;
            color: white;
            text-align: center;
            margin: 0 0 15px 0;
        }

        h5 {
            font-family: 'FuracaoFont';
            font-style: normal;
            font-weight: 400;
            font-size: 20px;
            line-height: 24px;
            color: white;
            text-align: center;
            margin: 0;
        }
    }

    .endereco__logo {
        display: flex;
        justify-content: center;

        img {
            height: 80px;
        }
    }

    .endereco__maps {
        padding: 0 150px;

        img {
            border: 1px solid black;
            width: 100%;
            object-fit: contain;
            filter: grayscale(100%);
        }
    }
}

.images {
    grid-template-columns: repeat(10, minmax(0, 1fr));

    :nth-child(3n + 1) {
        grid-column: span 3;
    }
    :nth-child(3n + 2) {
        grid-column: span 4;
    }
    :nth-child(3n + 3) {
        grid-column: span 3;
    }


    :nth-child(3n + 4) {
        grid-column: span 5;
    }
    :nth-child(3n + 5) {
        grid-column: span 3;
    }
    :nth-child(3n + 6) {
        grid-column: span 2;
    }


    :nth-child(3n + 7) {
        grid-column: span 2;
    }
    :nth-child(3n + 8) {
        grid-column: span 5;
    }
    :nth-child(3n + 9) {
        grid-column: span 3;
    }

}

footer {
    padding: 90px 15%;
    background: #000;
    font-family: "Inter", sans-serif;
    
    .footer__title {
        color: #FF0000;
        font-weight: 600;
        margin-bottom: 30px;
    }

    a {
        color: rgb(206 206 206);
        display: block;
        margin-bottom: 10px;
    }
}


@media (max-width: 1200px) {
    .nav, .reservas, .endereco .endereco__titles, .endereco .endereco__maps, footer {
        padding-left: 75px;
        padding-right: 75px;
    }   

    .images {
        :nth-child(n) {
            grid-column: span 5;
        }
        :nth-child(n + 9) {
            grid-column: span 10;
        }
    }
}

@media (max-width: 600px) {
    .nav, .reservas, .endereco .endereco__titles, .endereco .endereco__maps, footer {
        padding-left: 5%;
        padding-right: 5%;
    }   
}

@media (max-width: 374px) {
    footer {
        .grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

    .images {
        :nth-child(n) {
            grid-column: span 10;
        }
    }
}