/*********************************************************************************/
/*********************************************************************************/
/* Pagina index - Notícias                                                       */
/*********************************************************************************/
/*********************************************************************************/

/*********************************************************************************/
/* Uteis estilizações gerais                                                     */
/*********************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Redressed&display=swap');

*{
	padding: 0px;
	margin: 0px;
}

.container{
	background-color: #DCDCDC;
}

.centraliza-conteudo{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.conteudo{
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
}

.em{
	margin-bottom: 0.5em; 
}

.em2{
	margin-top: 1em;
}

.b2{ border-top: 2px solid gray; }

.mob-txt{
	display: none;
	order: 3;
}

.desk{
	display: block;
}

.l100{ width: 100%; }

.lnk{
	text-decoration: none;
	cursor: pointer;
	color: darkmagenta;
}

.lnk:hover{
	text-decoration: underline;
}


.contem-slider{
	width: 100%;
	max-width: 800px;
	max-height: 200px;
	height: auto;
	margin-top: 100px; 
	margin-bottom: 20px;
}

/*********************************************************************************/
/* Cabeçalho                                                                     */
/*********************************************************************************/

.cabecalho{
	width: 100%;
	height: 85px;
	/*padding: 1em;*/
	background-image: linear-gradient(to bottom right, darkmagenta, gold);
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	top: 0;
	position: fixed;
	z-index: 2;
}

.menu{
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	z-index: 4;
}

.menu-txt{
	font-size: 2em;
	color: white;
	display: inline-block;
}

.menu-btn{
	width: 30px;
	padding: 0 1em;
	cursor: pointer;
	position: relative;
}

.menu-btn:after{
	content: "";
	position: absolute;
}

.logo-menu{
	width: 100%;
	display: block;
	position: absolute;
	text-align: center;
	z-index: -1;
}

.logo-menu img{
	width: 13%;
}

.cabecalho p{
	color: white;
	font-size: 2.5em;
	font-family: 'Playfair Display', serif;
	float: right;
	padding-right: 1.5em; 
}

.cabecalho p a{
	color: white;
	text-decoration: none;
}

/*Nav*/
.nav{
	background-image: linear-gradient(to bottom right, darkmagenta, gold);
	width: 100%;
	max-width: 300px;
	height: 100vh;
	position: fixed;
	z-index: 3;
	top: 85px;
	left: 0;
	transition: all .5s;
}

.nav a{
	display: block;
	padding: 25px 5px; 
	color: white;
	text-align: center;
	font-size: 1.2em;
	text-decoration: none;
	transition: all .2s;
}

.nav a:hover{
	background-color: darkmagenta;
}

.nav.active{
	left: -300px;
}

.list-menu{
	list-style: none;
	width: 100%;
}

/*********************************************************************************/
/* Meu slider                                                                    */
/*********************************************************************************/
.slider{
	width: 800px;
	height: 200px;
	/*border-radius: 10px;*/
	overflow: hidden;
}

.slides{
	width: 800px;
	height: 200px;
	display: flex;
}

.slides input{
	display: none;
}

.slide{
	width: 100%;
	transition: 2s;
}

.slide img{
	width: 800px;
	height: 200px;
}

/*Navegação manual*/
.navigation-manual{
	position: absolute;
	width: 800px;
	margin-top: -40px;
	display: flex;
	justify-content: center;
}

.manual-btn{
	border: 3px solid white;
	padding: 5px;
	border-radius: 10px;
	cursor: pointer;
	transition: .5s;
}

.manual-btn:not(:last-child){
	margin-right: 40px;
}

.manual-btn:hover{
	background: white;
}

#radio1:checked ~ .first{
	margin-left: 0;
}

#radio2:checked ~ .first{
	margin-left: -100%;
}

#radio3:checked ~ .first{
	margin-left: -200%;
}

/*Navegação automática*/
.navigation-auto{
	position: absolute;
	display: flex;
	width: 800px;
	justify-content: center;
	margin-top: 160px;
}

.navigation-auto div{
	border: 3px solid white;
	padding: 5px;
	border-radius: 10px;
	transition: .5s;
}

.navigation-auto div:not(:last-child){
	margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
	background: white;
}

#radio2:checked ~ .navigation-auto .auto-btn2{
	background: white;
}

#radio3:checked ~ .navigation-auto .auto-btn3{
	background: white;
}


/*********************************************************************************/
/* Redes sociais                                                                 */
/*********************************************************************************/
.fix-flex{
	width: auto;
	height: 100vh;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 0;
}

.redes-sociais{
	padding: 10px;
	margin-right: 10px;
	background-color: white;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.soc{
	width: 50px;
	cursor: pointer;
}

.pad-flex{
	padding-bottom: 40px;
}


/*********************************************************************************/
/* Notícias                                                                      */
/*********************************************************************************/
.noticia{
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	padding: 3% 2% 3% 2%;
	border-bottom: 2px solid gray; 
	background-color: white;
	margin-bottom: 1em;
	border-radius: 5px;
	width: 90%;
}

.noticia .img-noticia{
	/*background-image: url('sarau.jpg');*/
	/*background: no-repeat center cover;*/
	width: 40%;
}

.img-noticia img{
	width: 100%;
}

.bloco-desc-not{
	padding-top: 1em;
	width: 58%;
}

.tema-not{ 
	font-size: 1.2em; 
	color: gray;
	font-weight: bold;
}

.titulo-not{ 
	font-size: 2em; 
	color: indigo;
}

.desc-not{
	color: #000;
	font-size: 1.2em;
	text-align: justify;
}

.cont-noticias{
	display: flex;
	flex-direction: column;
	align-items: center;
}


/*********************************************************************************/
/* Rodapé                                                                        */
/*********************************************************************************/
.rodape-pag{
	padding: 1.5%;
	background-image: linear-gradient(to bottom right, darkmagenta, gold);
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
}

.baixo-rodape{ 
	text-align: center; 
	color: white;
	font-size: 1.2em;
	padding: 2em 0em;
}

.logo-rodape{
	width: 15%; 		
}



/*********************************************************************************/
/*********************************************************************************/
/* Pagina index - Notícia                                                        */
/*********************************************************************************/
/*********************************************************************************/

.seta-volt{
	width: 60px;
	height: 60px;
	border-radius: 50px;
	background-image: linear-gradient(to bottom right, darkmagenta, gold);
	font-size: 2em;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	top: 100px;
	left: 30px;
	position: fixed;
}

.seta-volt a{
	color: white;
	text-decoration: none;
	margin: 0;
	padding: 0;
	padding-bottom: 4px;
}

.not{
	background-color: #fff;
}

.container-noticias{
	margin-top: 130px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	width: 60%;
}

.container-noticias h1{
	width: 100%;
	font-size: 3.5em;
	line-height: 1em;
}

.container-noticias h2{
	color: gray;
	font-size: 1.3em;
}

.box1{
	width: 100%;
	max-width: 600px;	
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.box1 p{
	text-indent: 2em;
	text-align: justify;
	color: #000;
	font-size: 1.3em;
	padding-bottom: 1em;
}

.box1 img{
	width: 100%;
	margin-bottom: 3em;
}

.box1 .ass{
	display: block;
	width: 100%;
	text-align: right;
	font-family: 'Dancing Script', cursive;
	font-size: 1.8em;
	font-weight: bold;
}

.grade-img-noticia{
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 1em;
}

.grade-img-noticia .imgg{
	width: 45%;
}

.complemento-not{
	display: flex;
	width: 100%;
	flex-direction: column;
	font-size: 1.3em;
}

.complemento-not a{ margin-bottom: 1em; }


















