/* --- ESTRUTURA E LAYOUT DAS SEÇÕES --- */
#sinopse-espetaculo,
#ficha-espetaculo {
    padding: 80px 20px;
}

.titulo-espetaculo {
    font-family: 'BaksoSapi', sans-serif;
    font-size: 3.5em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.sinopse-texto {
    font-family: 'Neue Machina', sans-serif;
    font-weight: 400;
    font-size: 1.3em;
    line-height: 1.8;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.ficha-lista {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.2em;
    line-height: 2.4;
}

.ficha-lista li strong {
    font-family: 'BaksoSapi', sans-serif;
    font-weight: normal;
    margin-right: 15px;
}

.ficha-lista li {
    font-family: 'Neue Machina', sans-serif;
    font-weight: 300;
}


/* --- PALETA DE TEMAS DE CORES PARA OS ESPETÁCULOS (COM TEXTO PRETO ONDE SOLICITADO) --- */

/* TEMA 1: BRINCA BRASIL / BICICLETA POETA / CONTADORES DE CAUSOS */
.fundo-verde { background-color: #8CC63F; }
.texto-vermelho, .fundo-verde .titulo-espetaculo, .fundo-verde .sinopse-texto, .fundo-verde .ficha-lista { 
    color: var(--cor-texto-escuro); /* MUDANÇA: de vermelho para preto */
}
.fundo-vermelho { background-color: #EF4338; }
.texto-verde, .fundo-vermelho .titulo-espetaculo, .fundo-vermelho .sinopse-texto, .fundo-vermelho .ficha-lista { 
    color: var(--cor-texto-escuro); /* MUDANÇA: de verde para preto */
}

/* TEMA 2: SANTO DE CASA (Já estava com bom contraste, mantido) */
.fundo-roxo { background-color: #662D91; }
.texto-laranja, .fundo-roxo .titulo-espetaculo, .fundo-roxo .sinopse-texto, .fundo-roxo .ficha-lista { color: #F7931E; }
.fundo-laranja { background-color: #F7931E; }
.texto-roxo, .fundo-laranja .titulo-espetaculo, .fundo-laranja .sinopse-texto, .fundo-laranja .ficha-lista { color: #662D91; }

/* TEMA 3: O VALE ENCANTADO / CANOA MINHA CANOA (Já estava com bom contraste, mantido) */
.fundo-amarelo-laranja { background-color: #FBB040; }
.texto-magenta, .fundo-amarelo-laranja .titulo-espetaculo, .fundo-amarelo-laranja .sinopse-texto, .fundo-amarelo-laranja .ficha-lista { color: #9E1F63; }
.fundo-magenta { background-color: #9E1F63; }
.texto-amarelo-laranja, .fundo-magenta .titulo-espetaculo, .fundo-magenta .sinopse-texto, .fundo-magenta .ficha-lista { color: #FBB040; }

/* TEMA 4: RODAS E BRINCADEIRAS CANTADAS (Já estava com bom contraste, mantido) */
.fundo-amarelo-esverdeado { background-color: #D7DF23; }
.texto-purpura, .fundo-amarelo-esverdeado .titulo-espetaculo, .fundo-amarelo-esverdeado .sinopse-texto, .fundo-amarelo-esverdeado .ficha-lista { color: #91278F; }
.fundo-purpura { background-color: #91278F; }
.texto-amarelo-esverdeado, .fundo-purpura .titulo-espetaculo, .fundo-purpura .sinopse-texto, .fundo-purpura .ficha-lista { color: #D7DF23; }

/* TEMA FOLIA DE REIS */
.fundo-verde-escuro { background-color: var(--cor-verde-cia); }
.texto-branco, .fundo-verde-escuro .titulo-espetaculo, .fundo-verde-escuro .sinopse-texto { color: var(--cor-texto-claro); }

/* TEMA CIRANDA DE POESIA */
.fundo-ciranda {
    background-color: #EF4338; /* Fundo vermelho/laranja */
}
.texto-ciranda,
.fundo-ciranda .titulo-espetaculo,
.fundo-ciranda .sinopse-texto {
    color: var(--cor-texto-escuro); /* MUDANÇA: de verde para preto */
}


/* --- ESTILOS PARA O SLIDE DE VÍDEO COM CAPA --- */
.video-poster-container { position: relative; width: 100%; height: 100%; cursor: pointer; background-color: #000; overflow: hidden; }
.video-poster-container .video-poster-img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
.video-poster-container .play-button-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.3); transition: background-color 0.3s ease; }
.video-poster-container:hover .play-button-overlay { background-color: rgba(0, 0, 0, 0.5); }
.video-poster-container .play-icon { width: 80px; height: 80px; background-color: rgba(255, 255, 255, 0.9); border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 0 30px rgba(0,0,0,0.5); transition: transform 0.2s ease; }
.video-poster-container:hover .play-icon { transform: scale(1.1); }
.video-poster-container .play-icon::after { content: ''; display: block; width: 0; height: 0; border-style: solid; border-width: 15px 0 15px 26px; border-color: transparent transparent transparent #333; margin-left: 5px; }
.video-poster-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: none; }
.video-poster-container.video-playing .video-poster-img,
.video-poster-container.video-playing .play-button-overlay { display: none; }
.video-poster-container.video-playing video { display: block; }

/* Ajuste específico da página Ciranda de Poesia (removido do style.css) */
.pagina-ciranda #hero .slide img {
    object-fit: contain; 
}