﻿:root {
    --rosa: #FF6CF7;
    --verde: #9fff57;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Aestetico Regular';
    src: url('/fonts/Aestetico-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Aestetico Medium';
    src: url('/fonts/Aestetico-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

.container-fluid-corpo {
    max-width: 1500px;
}

.container-fluid,
.container-fluid-corpo {
    font-family: 'Aestetico Regular', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Aestetico Medium', sans-serif;
}

.banner-fullscreen {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fce300;
    margin-top: 50px;
}

    .banner-fullscreen img {
        width: 100%;
        height: auto;
        display: block;
    }

.texto-festival {
    margin: 40px auto;
    font-size: 18px;
    line-height: 1.6;
    color: #fff; /* cor clara, conforme o fundo escuro da imagem */
    text-align: center;
    max-width: 1000px;
}

@media (max-width: 961px) {
    .texto-festival {
        text-align: center;
        font-size: 16px;
    }
}

.box-mostra {
    background-color: #000;
    border-radius: 40px;
    padding: 20px 10px 20px 10px;
    margin: 20px auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza verticalmente */
    font-size: 14px;
}

.box-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-titulo {
    font-size: 21px;
}



    .box-titulo strong {
        font-weight: bold;
        display: block;
    }

    .box-titulo.rosa strong {
        color:var(--rosa)
    }

    .box-titulo.verde strong {
        color: var(--verde)
    }

.box-texto {
    font-size: 18px;
    line-height: 1.5;
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 0 40px 0 40px;
}

.btn-mostra {
    margin-top: auto;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    align-self: center;
    margin-top: 10px;
}

    .btn-mostra.verde {
        background-color: var(--verde);
        color: #000;
    }

    .btn-mostra.rosa {
        background-color: var(--rosa);
        color: #000;
    }

@media (max-width: 961px) {
    .box-mostra {
        height: 100% !important;
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .box-titulo,
    .box-texto {
        width: 100%;
    }

    .container-carrossel .box-titulo {
        margin-left: 39px;
    }

    .container-carrossel .btn-mostra {
        margin-left: 39px;
    }

    .container-carrossel .assistir-box {        
        margin-left: 27px;
    }
    .box-texto {
        margin-top: 10px;
        padding: 0 20px 0 20px;
    }
}

.como-votar {
    margin-top: 40px;
    background-color: #f6e92e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 49px;
}

}

@media (max-width: 961px) {
    .como-votar {
        padding: 35px !important;
    }
}

.row.como-votar {
    margin-right: 0px !important;
}

.como-votar-titulo,
.como-votar-texto {
    color: #000;
}

.como-votar-titulo {
    font-size: 35px;
}

.como-votar-texto {
    font-size: 18px;
}

@media (max-width: 961px) {
    .como-votar-titulo {
        font-size: 25px;
    }
}

.assistir-box {
    margin-bottom: 10px;
    line-height: 1.2;
}

.assistir-titulo,
.assistir-sub-titulo {
    color: #fff;
    font-size: 35px;
}

@media (max-width: 961px) {
    .assistir-titulo,
    .assistir-sub-titulo {
        font-size: 25px;
        margin-left: 25px
    }
}

.assistir-titulo {
    color: #fff;
}

.assistir-sub-titulo {
    color: #a0ff56;
    font-weight: 600;
}

.carousel-header,
.owl-dots {
    display: none !important;
}

.thumb-html {
    position: relative;
}

.carousel-skeleton-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0;
}

.carousel-skeleton {
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.card-skeleton {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    height: 140px;
    border-radius: 12px;
    background: linear-gradient( 90deg, #2b2b2b 25%, #3a3a3a 50%, #2b2b2b 75% );
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.arrow {
    background: #111;
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 8px;
}

    .arrow.left {
        margin-right: 10px;
    }

    .arrow.right {
        margin-left: 10px;
    }

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@media (max-width: 961px) {
    .carousel-skeleton {
        overflow: hidden;
        justify-content: center;
    }

    .card-skeleton {
        flex: 0 0 100%; /* ou 100% se quiser ocupar toda a largura */
    }

    .carousel-skeleton > .card-skeleton:not(:first-child) {
        display: none;
    }
}

.ultimas-noticias {
    border-radius: 25px;
    background-color: #1f2124;
    padding: 40px;
    color: #fff;
}

    .ultimas-noticias h1 {
        color: #fff !important;
    }

.btn-leia-mais {
    background-color: #f1c83d;
    color: #000 !important;
}

.espaco-1 {
    margin-top: 20px;
}

.font-branca {
    color: #fff !important;
}

.data-publicacao {
    color: #f1c83d;
    font-size: 16px;
    font-style: italic;
}

.img-noticia-destaque {
    border-radius: 24px;
}

.titulo-destaque {
    color: #fff !important;
}

.row-flex {
    display: flex;
    flex-wrap: nowrap;
}

.coluna-esquerda,
.caixa-direita {
    height: 100%;
}

.coluna-esquerda {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.caixa-direita {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
}

    .caixa-direita {
        color: #fff;
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 8px;        
    }

        .caixa-direita .outras-noticias a {
            color: #fff;
            text-decoration: none;
        }

            .caixa-direita .outras-noticias a:hover {
                text-decoration: underline;
            }

    .caixa-direita .data-publicacao {
        margin-bottom: 10px;
    }

.linha-noticia {
    padding-bottom: 15px;
    border-bottom: 2px solid #fff !important;
}

.outras-noticias {
    color: #fff;
    padding-bottom: 15px;    
}    

.coluna-esquerda {
    border-right: 2px solid #ccc;
}

@media (max-width: 961px) {
    .ultimas-noticias h1 {
        font-size: 22px;
    }

    .leia-mais {
        text-align: center;
    }

    .titulo-destaque {
        font-size: 18px;
    }

    .coluna-esquerda {
        border-right: none;
        border-bottom: 2px solid #ccc;
        padding-bottom: 14px;
    }

    .row-flex {
        flex-direction: column;
        text-align: center;
    }
}

.font-branca {
    font-size: 18px;
}

.como-votar-div {
    margin-left: -33px;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px; /* Espaço entre os cards */
    padding: 10px 0;
}

    .carousel::-webkit-scrollbar {
        display: none; /* Opcional: esconde a barra de rolagem */
    }

.carousel-item {
    min-width: 250px;
    max-width: 250px;
    background-color: #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .carousel-item img {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

.item-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.item-title {
    font-weight: bold;
    font-size: 14px;
    color: white;
}

.item-meta {
    font-size: 12px;
    color: #aaa;
}

.stars {
    color: gold;
    font-size: 14px;
    margin-bottom: 5px;
}


.carousel.dragging {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.carousel {
    cursor: grab;
    padding: 10px 0;
}

.row-equal {
    display: flex;
    flex-wrap: wrap;
}

    .row-equal > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }

.skeleton {
    background: #333;
    border-radius: 8px;
    animation: pulse 1.5s infinite;
    margin-bottom: 15px;
}

.skeleton-img {
    width: 100%;
    height: 200px;
}

.skeleton-title {
    width: 70%;
    height: 24px;
}

.skeleton-date {
    width: 40%;
    height: 16px;
}

.skeleton-line {
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.ultimas-noticias-titulo{
    text-align: center;
}

@media (max-width: 481px) {
    .leia-mais,
    .ultimas-noticias-titulo {
        text-align: left;
    }

    .titulo-destaque {
        font-size: 22px;
    }

    .row-flex {        
        text-align: left;
    }
}

.texto-voto,
.texto-voto a,
.texto-voto a:hover{
    font-weight: bold;
    color: #f5df4d;
}


.img-catalogo{
    max-width: 400px;
    width: 100%;
}

@media (max-width: 481px) {
    .img-catalogo {        
        width: 80%;
    }
}

.publicacao-bottom{
    margin-left: 15px;
}

.premios{
    text-align: center;
}

.premios h1{
    color: #fff !important;
}

.premios span{
    color: #fff;
    font-size: 18px;
}

.parceiros-premios img{
    padding: 20px;
}

#quanta:hover,
#start:hover {
    cursor: pointer;
}

.bodylogin-premiacao{
    margin-bottom: 20px;
    color: #fff !important;
    font-size: 20px;
}

.modal-premiacao {    
    top: 20%;
}