﻿:root {
    --verde: #2fb09a;
}

@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;
}

#content {
    position: relative;
    width: 100%;
    background: /* Gradiente lateral esquerda */
    linear-gradient(to right, rgba(22, 24, 30, 1) 15%, rgba(22, 24, 30, 0) 40%),
    /* Gradiente lateral direita */
    linear-gradient(to left, rgba(22, 24, 30, 1) 15%, rgba(22, 24, 30, 0) 40%),
    /* Gradiente vertical de cima para baixo */
    linear-gradient(to bottom, rgba(22, 24, 30, 0) 0%, #16181e 30%),
    /* Imagem de fundo */
    url(/assets/img/ceara/fundo.png) no-repeat center top;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}

@media (max-width: 481px) {
    #content {
        background: /* Gradiente lateral esquerda */
        linear-gradient(to right, rgba(22, 24, 30, 1) 15%, rgba(22, 24, 30, 0) 40%),
        /* Gradiente lateral direita */
        linear-gradient(to left, rgba(22, 24, 30, 1) 15%, rgba(22, 24, 30, 0) 40%),
        /* Gradiente vertical de cima para baixo */
        linear-gradient(to bottom, rgba(22, 24, 30, 0) 0%, rgba(22, 24, 30, 1) 200px),
        /* Imagem de fundo */
        url(/assets/img/ceara/fundo.png) no-repeat center top;
        background-size: contain; /* imagem de fundo */
    }        
}

.box-wrapper {
    position: relative;
    display: inline-block;
}

.box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--botao);
    border-radius: 27px;
    transform: translate(0px, 0px) rotate(-4deg);
    z-index: 0;
}

.box-content {
    position: relative;
    background-color: var(--verde);
    border-radius: 30px;
    padding: 30px 40px;
    color: #000;
    z-index: 1;
    max-width: 700px;
}

.fotos {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

    .fotos img {
        width: 50%;
        height: auto;
    }

@media (max-width: 481px) {
    .box-content {
        max-width: 350px;
    }

    .fotos {
        flex-direction: column;
        align-items: center;
    }

        .fotos img {
            width: 80%;
        }
}

.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;
    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;
    margin-top: 60px !important;
    text-transform: uppercase;
}



    .box-titulo strong {
        font-weight: bold;
        display: block;
        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 .btn-assistidos,
    .container-carrossel .box-titulo,
    .btn-skeleton {
        margin-left: 36px;
    }



    .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;
    }

.skeleton-box {
    display: block;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 37%, #2a2a2a 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 8px;
}

/* Título "MAIS ASSISTIDOS" */
.titulo-skeleton {
    width: 100px;
    height: 20px;
    margin-bottom: 20px;
    margin-top: 30px;
}

/* Botão */
.btn-skeleton {
    width: 100px;
    height: 38px;
    border-radius: 50px;
}

@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;
    position: relative;
    z-index: 1;
}

    .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;
}

.publicacao-bottom {
    margin-left: 15px;
}

@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;
    }

    .caixa-direita {
        margin-left: 0px;
    }

    .publicacao-bottom {
        margin-left: 0px !important;
        padding-left: 15px;
    }

    .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;
}

    .ultimas-noticias-titulo h1 {
        color: var(--verde) !important
    }

@media (max-width: 1024px) {
    .leia-mais, .ultimas-noticias-titulo {
        text-align: center;
    }

    .titulo-destaque {
        font-size: 22px;
    }

    .row-flex {
        text-align: left;
    }
}

.texto-voto {
    font-weight: bold;
    color: #f5df4d;
}

.img-informativos-sobre {
    max-width: 120px;
}

.img-informativos {
    max-width: 300px;
}

.img-informativos-1 {
    max-width: 150px;
}

.form-faca-parte {
    border: 1px solid var(--verde) !important;
    -webkit-box-shadow: 0 0 0 2px var(--verde) !important;
    box-shadow: 0 0 0 2px var(--verde) !important;
    max-width: 400px;
    width: 90%;
    height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #2b2b2b;
    background-color: #dad7d7;
    border: 2px solid var(--verde);
    border-radius: 30px;
}

    .form-faca-parte::placeholder {
        font-weight: 600;
    }

    .form-faca-parte:focus-visible {
        border: 1px solid var(--verde) !important;
        color: #0b0b0b;
        font-weight: 500;
        background-color: #d2cdcd;
        outline: none;
    }

.btn-inscreva-se {
    background-color: var(--verde);
    color: #fff;
}


@media (max-width: 481px) {

    .mobile-br {
        display: none;
    }

    .ultimas-noticias {
        padding: 40px 15px 40px 15px;
    }
}

.instituicoes-responsaveis{
    margin-top: 60px;
}

.box-instrucoes {
    color: #000;
    height: 230px;
    margin: 10px auto;
    padding: 25px;
    text-align: center;
    font-weight: bold;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 22px;
    line-height: 1.3;
    cursor: pointer;
}


/* Alternar cores */
#box-instrucoes-1,
#box-instrucoes-3 {
    background-color: var(--verde);
}

#box-instrucoes-2,
#box-instrucoes-4 {
    background-color: var(--botao);
}

/* Estilo do "+" */
.box-instrucoes .mais {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
}

.detalhes-instituicao {
    display: none;
    color: #000;
    padding: 35px !important;
    font-size: 18px;
}

    .detalhes-instituicao span {
        font-weight: bold;
        font-size: 20px;
    }

    .detalhes-instituicao a {
        color: #000;
    }

.fechar-box {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #000 !important;
    padding: 5px 10px;
}


@media (max-width: 481px) {
    .box-instrucoes {
        background-color: #7AC6BC;        
        height: 165px;
        font-size: 18px;
        padding: 15px;
    }

    #box-instrucoes-1,
    #box-instrucoes-4,
    #box-instrucoes-5,
    #box-instrucoes-8 {
        background-color: var(--verde);
    }

    #box-instrucoes-2,
    #box-instrucoes-3,
    #box-instrucoes-6,
    #box-instrucoes-7 {
        background-color: var(--botao);
    }
}
