/*-----===MAIN===-----*/
main {
    flex-direction: column;
    flex-grow: 1;
    background-color: white;
}

/*-----===MODAL===-----*/
.modal{
    position: absolute;
    transform: translateX(-100%);
    transition: all .3s ease;
}
.modal.show{
    height: 80%;
    width: 90%;
    top: 10%;
    left: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    border-radius: 1em;
    background: rgb(100, 100, 100);
    z-index: 999;
    overflow: hidden;
    transform: translate(0%);
    transition: all .3s ease;
}

.close-button {
    top: 0;
    right: 0;
    border-bottom-left-radius: 1em;
    position: absolute;
    height: 50px;
    width: 50px;
    background-color: slateblue;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-button ion-icon{
    width: 90%;
    height: 90%;
    filter: invert(1);
}

.modal-conteudo-container{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
}

.modal-conteudo-descricao{
    height: 100%;
    width: 55%;
    background-color: rgb(25, 53, 53);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal-conteudo-descricao-titulo{
    height: 25%;
    width: 90%;
    margin-bottom: 5%;
    display: flex;
    justify-content: center;
}
.modal-conteudo-descricao-titulo > .cabecalho{
    height: 90%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-weight: 900;
    color: white;
}
.modal-conteudo-descricao-titulo > .cabecalho > h1{
    font-size: 46px;
}
.modal-conteudo-descricao-titulo > .cabecalho > span{
    font-size: 24px;
}

.modal-conteudo-descricao-descricao{
    height: 50%;
    width: 80%;
    font-size: 18px;
    font-weight: bolder;
    color: white;
}

.modal-conteudo-ingressos{
    height: 100%;
    width: 45%;
    background-color: darkcyan;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: start;
    overflow: auto;
}
.modal-conteudo-ingressos > h1{
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.modal-conteudo-ingressos > div{
    margin-top: 30px;
    width: 90%;
    min-height: 40px;
    background-color: white;
    border-radius: .75em;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.modal-conteudo-ingressos > div > div{
    height: 40px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.modal-conteudo-ingressos > div > ul{
    display: none;
}
.modal-conteudo-ingressos > div > ul.show{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: solid 1px lightgray;
}
.modal-conteudo-ingressos > div > ul > li{
    display: none;
}
.modal-conteudo-ingressos > div > ul > li.show{
    height: 40px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*-----===ASIDE===-----*/
.banner {
    min-height: 450px;
    height: 45vh;
    width: 100%;
    background: url(../img/bannerFesta2.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-descricao {
    height: 100%;
    width: 100%;
    background: linear-gradient(0, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.05) 70%);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
}

.banner-descricao h1 {
    margin-left: 6%;
    height: 20%;
    width: 60%;
    font-size: 48px;
    font-weight: 900;
    color: white;
}

.banner-descricao span {
    margin-left: 5%;
    height: 25%;
    width: 60%;
    font-size: 18px;
    color: lightgray;
}

/*-----===ARTICLE===-----*/
article,
.carousel-container,
.carousel-cabecalho,
.item-descricao {
    display: flex;
    align-items: center;
    justify-content: center;
}

article {
    transform: translateY(-1em);
    height: 460vh;
    width: 100%;
    background-color: white;
    border-radius: 1em;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 0 80px 0;
}

.carousel-container {
    background-color: white;
    height: 9%;
    width: 95%;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
}

.carousel-cabecalho {
    height: 15%;
    width: 95%;
    font-size: 18px;
    justify-content: space-between;
}

.carousel-cabecalho h2 {
    height: 100%;
    width: 25%;
}

.cabecalho-btn {
    height: 100%;
    min-width: 100px;
    width: 5%;
}

.cabecalho-btn button {
    height: 2em;
    width: 2em;
    border: solid 2px dodgerblue;
    border-radius: 1.5em;
    color: dodgerblue;
    font-size: 18px;
    font-weight: bolder;
    background-color: white;
    cursor: pointer;
}

.prevBtn.desativado {
    border: solid 2px black;
    color: black;
    opacity: .3;
}

.nxtBtn.desativado {
    border: solid 2px black;
    color: black;
    opacity: .3;
}

.carousel-visible {
    height: 85%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    overflow: hidden;
}

.carousel {
    height: 95%;
    width: 100%;
    display: flex;
    transition: transform .3s ease;
}

.carousel-item {
    flex: 0 0 23%;
    height: 100%;
    margin: 0 .5%;
    border-radius: .75em;
    transition: all .3s ease;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.item-img {
    width: 100%;
    height: 65%;
    border-radius: .75em;
    box-shadow: 0 0 5px lightgray;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.item-descricao {
    height: 35%;
    width: 90%;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;
}

/*-----===EFEITOS===-----*/
.carousel-item:hover {
    box-shadow: 0 0 15px lightgray;
}

.carousel-item:has(:hover) .item-img {
    border-radius: 0;
}