/* FOLHA DE ESTILO SEMANA DO PROFESSOR CARIOCA */
/* Constantes */

:root {
    /* Cor 1: Clara; Cor 2: Escura */
    --c-amarelo1: #FFF3E3;
    --c-amarelo2: #FCE1B4;
    --c-azul1: #0C6FAA;
    --c-azul2: #0C5194;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    padding: 0;
    margin: 0;
    font-family: Montserrat;
    font-weight: 500;
    overflow-x: hidden;
}
.segment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}
.container {
    width: 100%;
    max-width: 1200px;
}


/* Estilo */
.btnProgramacao {
    padding: 10px;
    font-size: 32px;
    color: white;
    border-radius: 5px;
    font-weight: 900;
    text-decoration: none;
}

.indexContainer1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: url('bg-intro.jpg');
	background-size: 1200px;
	background-repeat-y: no-repeat;
}

.indexContainer1 .containerConteudo {
	font-size: 20px;
	padding: 0 225px 50px 225px;
	color: var(--c-azul1);
	font-weight: 900;
	line-height: 27px;
}

.indexcontainer2 {
	font-size: 20px;
	display: flex;
	flex-direction: column;
	align-items: center; 
	background-image: url('bg-infos.jpg'); 
	background-size: 1200px;
	background-repeat-y: no-repeat;
}
.logos_footer{
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	gap: 50px;
}
.bloco_apoiadores{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.bloco_apoiadores img{
	max-width: 95%;
}

@media (max-width: 900px){
	.logos_footer{
		flex-direction: column;
	}
	.indexContainer1 {
		background-image: none;
	}
		
	.indexContainer1 .containerConteudo {
		padding: 0 0 50px 0;
		width: 75%;
		color: var(--c-azul1);
		font-weight: 900;
		line-height: 27px
	}

	.indexcontainer2 {
		display: flex;
		flex-direction: column;
		align-items: center;
		background-image: none;
	}
}