* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
}

img {
    display: block;
    /*width: 100%;*/
}

header {
    background-color: white;
}

header ul li a {
    transition: 0.5s;

    &::after {
        content: "";
        top: 100%;
        left: 0;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s;
    }

    &:hover {
        color: #cecece;
    }

    &:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

nav#mobile ul {
    list-style-type: none;
}

.menu_g {
    display: flex;
    width: 80%;
    max-width: 1400px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

#logo {
    max-width: 75px;
    margin-top: 10px;
    margin-bottom: 20px;
}

nav {
    width: 50%;
}

nav#desktop ul#menu {
    display: flex;
    list-style-type: none;
    font-size: 18px;
    justify-content: space-between;
}

nav#desktop ul#menu>li {
    position: relative;
    padding: 20px 0;
}

a {
    text-decoration: none;
    color: black;
}

nav#desktop .submenu {
    z-index: 9999;
}

nav#desktop ul.submenu {
    display: none;
    position: absolute;
}

ul.submenu li {
    display: block;
    background-color: white;
    padding: 20px 25px 25px 20px;
    border: 1px solid white;
}

#desktop li:hover ul.submenu {
    display: block;
    margin-top: 20px;
}

.h {
    font-size: 14px;
}

#bilhetes {
    width: 150px;
    padding: 15px 0px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background-color: black;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: -10px;
}

#bilhetes:hover {
    background-color: #db6a4c;
    transition: all 0.3s ease;
}


#bigmac {
    display: none;
    width: 40px;
    height: 28px;
    position: relative;
    z-index: 30;
    cursor: pointer;
}

#bigmac .linha {
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
}

#bigmac .linha:nth-child(1) {
    top: 0px;
}

#bigmac .linha:nth-child(2) {
    top: 12px;
}

#bigmac .linha:nth-child(3) {
    top: 12px;
}

#bigmac .linha:nth-child(4) {
    top: 24px;
}

#bigmac.open .linha:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#bigmac.open .linha:nth-child(2) {
    transform: rotate(45deg);
}

#bigmac.open .linha:nth-child(3) {
    transform: rotate(-45deg);
}

#bigmac.open .linha:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

nav#mobile {
    display: none;
}


#identidade {
    width: 100%;
    object-fit: cover;
}

#Prog {
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    margin-top: 8%;
    margin-bottom: 8%;
}

.cards-grid {
    display: grid;
    /* grid-template-col/umns: auto auto auto; */
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
    align-content: space-around;
    max-width: 1300px;
    margin: 0 auto;

}

.vl {
    border-right: 1px solid black;
}

.movie-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 20px 0px 20px;
}

.movie-data {
    font-size: 40px;
    color: #000;
    text-align: right;
    margin-bottom: -5px;
}

.filme {
    width: 100%;
    height: 245px;
    object-fit: cover;
    border-radius: 30px;
}

.movie-titulo {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.flex_comprar {
    display: flex;
    justify-content: space-between;

}

.comprar {
    width: 100px;
    padding: 8px 0;
    color: #fff;
    border-radius: 30px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    background-color: #db6a4c;
    border: none;
    cursor: pointer;
    text-decoration: none;
}


.comprar span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.comprar span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.comprar:hover span {
    padding-right: 25px;
}

.comprar:hover span:after {
    opacity: 1;
    right: 0;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 30px;
}

.tag-prt {
    padding: 7px 11px;
    border-radius: 50px;
    border: 1px solid black;
    font-size: 10px;
    color: black;
    background: transparent;
}

.tag-prt:hover {
    background-color: black;
    color: white;
    transition: all 0.3s ease;
}

.tag {
    padding: 7px 11px;
    border-radius: 50px;
    border: 1px solid #d9d9d9;
    font-size: 10px;
    color: #d9d9d9;
    background: transparent;
}

#multidao {
    align-items: flex-start;
    margin-top: 60px;
}

#galeria {
    padding: 40px 0;
    background-color: #000;
}

#galeria_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 145px;
}

.galeria_img {
    width: 100%;
    height: 398px;
    object-fit: cover;
    border-radius: 50px;
}

.footer {
    padding: 40px 0;
    color: #fff;
    background-color: #000;
}

#linha-decorativa {
    width: 90%;
    height: 0.5px;
    background-color: #fff;
    margin: 0 auto;
}

.container {
    max-width: 1400px;
    width: 80%;
    margin: 0 auto;
    padding-top: 60px;
}

#logo2 {
    width: 71px;
    height: 71px;
    margin-bottom: 45px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.TIL {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-content {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
}

.link {
    color: #fff;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    margin-top: 40px;
}

/*SEGUNDA PÁGINA*/

#preto_body {
    background-color: #000;
}


#intro_bilhetes {
    height: 700px;
    background-image: url(Imagens/Finais/batalha.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 100px;

}

#batalha_fundo {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
}

#batalha_conteudo {
    padding-top: 10%;
}

#batalha_titulo {
    color: #F0EBEB;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 50px;
}

#batalha_texto {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    max-width: 350px;
    line-height: 24px;
}

.precos {
    margin-top: 8%;
    margin-bottom: 10%;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.precos-card {
    padding: 30px 70px 30px 70px;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 40px;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    background-color: transparent;
}

.tipo {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    width: 300px;
}

.des {
    color: #fff;
    font-size: 16px;
    width: 300px;
}

.preco {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    width: 300px;
}

.comprar2 {
    padding: 15px 30px;
    color: #fff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background-color: #db6a4c;
    border: none;
}

.comprar2:hover {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.comprar2:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

#packs-info {
    margin: 80px;
}

#packs-til {
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 40px;
}

#packs-txt {
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-right: 15%;
    margin-left: 15%;
}

#packs-section {
    display: flex;
    justify-content: center;
    gap: 76px;
    padding-bottom: 40px;
}

.packs {
    padding: 50px;
    border: 1px solid #fff;
    border-radius: 30px;
    text-align: left;
    width: 30%;
}

#packs-preco {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.limitado {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: normal;
    color: #fff;
}

.price {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.divider {
    margin: 30px 0;
    height: 1px;
    background-color: #fff;
}

.count {
    color: #db6a4c;
    font-size: 16px;
    margin-bottom: 30px;
}

.per-session {
    font-size: 14px;
    color: #fff;
}


.livre-card {
    padding: 64px;
    margin: 20px;
    border: 1px solid #4d56a3;
    border-radius: 30px;
    margin: 100px;
}

#livre-section {
    display: flex;
    justify-content: space-between;
}

.livre-til {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #fff;
}

.livre-prc {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.divider2 {
    margin: 30px 0;
    height: 1px;
    background-color: #fff;
    max-width: 420px;
}

.per-session2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.livre-des {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 420px;
    color: #fff;
}

#cta {
    padding: 13px 21px;
    color: #fff;
    border-radius: 30px;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background-color: #db6a4c;
    border: none;
}

#cta span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

#cta span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

#cta:hover span {
    padding-right: 25px;
}

#cta:hover span:after {
    opacity: 1;
    right: 0;
}

#sala {
    border-radius: 30px;
    align-items: flex-end;
}


/*TERCEIRA PÁGINA*/

#entrada_batalha {
    max-height: 700px;
    width: 100%;
    object-fit: cover;
}

#fundadores {
    color: #fff;
    display: flex;
    margin-top: 10%;
    margin-bottom: 10%;
    justify-content: center;
    max-width: 1300px;
    gap: 12%;
}

#fund_titulo {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 28px;
}

#fund_leg {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 50px;
}

.fund_texto {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 20px;
}

#fundadores_ft {
    border-radius: 30px;
    align-items: center;
}

#anos {
    display: flex;
    color: #fff;
    max-width: 1300px;
    justify-content: space-between;
    gap: 22%;
    padding-top: 3%;
    padding-bottom: 3%;
}

#anos_titulo {
    font-size: 40px;
    font-weight: 600;
}

#anos_leg {
    font-size: 16px;
    font-weight: 350;
    margin-top: 30px;
    line-height: 20px;
}

#anos_conteudo {
    justify-self: flex-end;
}

#anos_texto {
    font-size: 14px;
    font-weight: 300;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 20px;
}

#anos_extra {
    font-size: 27px;
}



@media (max-width: 960px) {

    header {
        position: fixed;
        top: 0;
        z-index: 9999;
        width: 100%;
    }


    nav#mobile {
        display: block;
        position: fixed;
        z-index: 99;
        width: 100%;
        top: 100px;
        right: -120vw;
        transition: right 0.3s linear;
        color: white;
        background-color: black;
    }

    nav#mobile.menu_abre {
        right: 0;
    }

    nav#mobile li:hover {
        cursor: pointer;
    }

    nav#mobile ul.submenu {
        display: none;
        width: 100%;
    }

    #bigmac {
        display: block;
    }

    i {
        transform: rotate(0deg);
        transition: transform 0.5s linear;
    }

    i.indicador_abre {
        transform: rotate(180deg);
        transition: transform 0.5s linear;
    }

    nav#desktop {
        display: none;
    }

    nav#mobile ul {
        list-style-type: none;
    }

    nav#mobile li {
        width: 100%;
        padding: 20px 0;
        text-align: center;
        font-size: 14px;
    }

    .h {
        color: #fff;
    }

    /*PRIMEIRA PÁGINA*/

#identidade{
    margin-top: 22%;
}

    #Prog {
        font-size: 30px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        width: 95%;
    }

    .vl {
        border: 0;
    }


    #multidao {
        width: 100%;
    }

    #galeria {
        display: none;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    /*SEGUNDA PÁGINA*/

#entrada_batalha {
    margin-top: 20%;
}

    #batalha_conteudo {
        padding-top: 30%;
    }

    #batalha_titulo {
        font-size: 32px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    #batalha_texto {
        font-size: 20px;
        line-height: 1.6;
        margin: 0 auto;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

    .precos {
        padding: 40px;
    }

    .precos-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;


        .tipo,
        .des,
        .preco {
            width: 100%;
        }

    }

    #packs-txt {
        text-align: center;
        margin: 0 auto;
    }

    #packs-section {
        flex-direction: column;
        align-items: center;
    }

    .packs {
        width: 95%;
        margin: 0 auto;
    }

    #sala {
        display: none;
    }

    .livre-card {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 12%;
    }

    /*TERCEIRA PÁGINA*/
    #fundadores {
        flex-direction: column;
        gap: 40px;

    }

    #fund_titulo {
        font-size: 32px;
    }

    #fundadores_ft {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    #anos {
        flex-direction: column;
        padding: 0 20px;
        margin: 8%;
    }

    #logo2 {
        display: none;
    }
}

@media (max-width: 640px) {

#identidade {
        margin-top: 28%;
    }

    #fundadores {
        padding: 0 20px;
    }

    #fund_titulo {
        font-size: 24px;
    }

    #anos_titulo {
        font-size: 30px;
    }

    #anos_extra {
        font-size: 20px;
    }

    .TIL {
        font-size: 18px;

    }

    .section-content {
        font-size: 16px;

    }

    .copyright {
        text-align: center;
        font-size: 10px;
        font-weight: 300;
        margin-top: 40px;
    }
}