/*-----===MAIN===-----*/
main {
    height: 75em;
}

/*-----===ARTICLE===-----*/
article {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    justify-content: space-evenly;
}

/*---==Carousel Categorias==---*/
/*--=Categorias=--*/
.carousel-categorias-container {
    position: relative;
    min-height: 15em;
    height: 20%;
    width: 90%;
    overflow: hidden;
}

.carousel-cabecalho {
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.prvItem,
.nxtItem {
    height: 2em;
    width: 2em;
    border: solid 2px lightgray;
    border-radius: 1.5em;
    color: dodgerblue;
    font-size: 18px;
    font-weight: bolder;
    background-color: white;
    cursor: pointer;
}

.prvItem.disabled,
.nxtItem.disabled {
    opacity: 0.5;
    cursor: default;
}

.carousel-visible{
    height: 80%;
}
.carousel {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-item {
    flex: 0 0 20%;
    /* Defina a largura do item do carrossel aqui */
    height: 100%;
    width: 100%;
}

.categoria {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: .3s;
    cursor: pointer;
}

.categoria-img {
    height: 80%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.categoria-img div{
    height: 150px;
    width: 150px;
    border-radius: 75px;
    background-color: cyan;
}
.categoria-descricao{
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(120, 120, 120);
}



/*---==Card Destaque==---*/
.eventos-destaque {
    min-height: 35em;
    height: 30%;
    min-width: 60em;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
}

.eventos-destaque h2:first-child {
    height: 10%;
    width: 95%;
}

.card-destaque {
    box-shadow: 0px 0px 20px lightgray;
    height: 90%;
    width: 100%;
    border-radius: 1.5em;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.card-img {
    background-color: turquoise;
    height: 100%;
    width: 68%;
    border-radius: 1.5em;
    overflow: hidden;
    cursor: pointer;
}

.card-descricao {
    height: 100%;
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/*--=Card Descrição=--*/
.descricao-cabecalho {
    height: 35%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/*-Cabeçalho-*/
.cabecalho-data-hora,
.cabecalho-titulo,
.cabecalho-local {
    min-height: 3em;
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cabecalho-data-hora {
    color: dodgerblue;
    font-weight: bolder;
    align-items: end;
}

.cabecalho-titulo {
    font-size: 28px;
}

.cabecalho-local {
    align-items: start;
    color: darkgrey;
    font-size: 16px;
}

/*-Botão-*/
.descricao-btn-container {
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-btn {
    cursor: pointer;
    color: dodgerblue;
    font-weight: bolder;
    font-size: 18px;

    background: white;
    border: solid 1px dodgerblue;
    border-radius: .5em;
    min-height: 3.5em;
    min-width: 10.5em;

    transition: .3s;
}

/*---==Eventos da Semana==---*/
.eventos-semana {
    min-height: 20em;
    height: 25%;
    min-width: 60em;
    width: 90%;
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-wrap: wrap;
}

.eventos-semana-cabecalho{
    height: 20%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.eventos-semana-cabecalho h2{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.eventos-semana-conteudo{
    height: 80%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.card-semana {
    height: 100%;
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
    border-radius: .75em;
    overflow: hidden;
    transition: .3s;
}

.semana-img {
    background-color: cyan;
    height: 65%;
    width: 100%;
    border-radius: .75em;
    overflow: hidden;
    transition: .3s;
}

.semana-descricao {
    height: 35%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}

.semana-data-hora,
.semana-titulo,
.semana-local {
    width: 95%;
}

/*-------====EFEITOS====-------*/
.categoria:hover {
    transform: scale(1.05);
}

.card-destaque:hover {
    box-shadow: 0px 0px 20px lightslategrey;
}

.card-btn:hover {
    color: white;
    background-color: dodgerblue;
}

.card-semana:hover {
    cursor: pointer;
    box-shadow: 0px 0px 15px lightgray;
}

.card-semana:has(:hover) .semana-img {
    border-radius: 0;
}

/*----------=====MEDIA QUERY=====----------*/
@media (max-width: 1024px) {
    
}