@charset "utf-8";
/* CSS Document */

/******************** FONTES ********************/
@font-face {
    font-family:'history_sans_pro';
    src:url('fontes/history_sans_pro.woff2') format('woff2'),
         url('fontes/history_sans_pro.woff') format('woff');
    font-weight:normal;
    font-style:normal;
}

@font-face {
    font-family:'history_sans_pro_bold';
    src:url('fontes/history_sans_pro_bold.woff2') format('woff2'),
         url('fontes/history_sans_pro_bold.woff') format('woff');
    font-weight:normal;
    font-style:normal;
}

@font-face {
    font-family:'history_sans_pro_medium';
    src:url('fontes/history_sans_pro_medium.woff2') format('woff2'),
         url('fontes/history_sans_pro_medium.woff') format('woff');
    font-weight:normal;
    font-style:normal;
}

@font-face {
    font-family:'historysansproblack';
    src:url('fontes/historysansproblack.woff2') format('woff2'),
         url('fontes/historysansproblack.woff') format('woff');
    font-weight:normal;
    font-style:normal;
}

@font-face {
    font-family:'historysansprolight';
    src:url('fontes/historysansprolight.woff2') format('woff2'),
         url('fontes/historysansprolight.woff') format('woff');
    font-weight:normal;
    font-style:normal;
}

@font-face {
    font-family:'historysansprothin';
    src:url('fontes/historysansprothin.woff2') format('woff2'),
         url('fontes/historysansprothin.woff') format('woff');
    font-weight:normal;
    font-style:normal;
}

/*
    font-family:'history_sans_pro';
    font-family:'history_sans_pro_bold';
	font-family:'history_sans_pro_medium';
    font-family:'historysansproblack';
    font-family:'historysansprolight';
    font-family:'historysansprothin';
*/

/******************** RESET ********************/

* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	border:none;
	outline:none;
}

/******************** JQUERY ********************/

.hide {
	display: none;
}

/******************** POPUP ASSISTIR ********************/

#popup-assistir {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 10000;
}

#popup-assistir > .close {
	width: 50px;
	height: 50px;
	margin: 0 auto;
	margin-top: 100px;
	background-color: rgb(255,2,195);  /* rosa choque */
	color: #FFF;
    font-family:'history_sans_pro_bold';
	border-radius: 50%;
	cursor: pointer;
	/* interno */
	display: flex;
	justify-content: center;
	align-items: center;
}

#popup-assistir > .close:hover {
	transition: all 0.2s linear;
	background-color: rgb(219,14,190);  /* rosa */
	color: #FFF;
}

#popup-assistir > .box {
	width: 700px;
	height: 300px;
	margin: 0 auto;
	margin-top: 50px;
	background-color: rgb(122,72,193); /* roxo */
	border-radius: 5px;
    font-family: 'history_sans_pro';
	font-size: 18px;	
	text-align: center;
	color: #FFF;
	/* interno */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 550px) {
	#popup-assistir > .box {
		width: 90%;
		margin-left: 5%;
	}
}

/* FORMULARIO */

#popup-assistir > .box > form {
	width:400px;
}
@media screen and (max-width: 550px) {
	#popup-assistir > .box > form {
		width:90%;
	}
}

#popup-assistir > .box > form > input[type="text"],
#popup-assistir > .box > form > input[type="email"] {
	width: 100%;
	height: 50px;
	margin-top: 15px;
	border-radius: 5px;
	color: #777;
	border: none;
}

#popup-assistir > .box > form > input[type="text"]:focus,
#popup-assistir > .box > form > input[type="text"]:focus {
	background-color: #F1F1F1;
}

#popup-assistir > .box > form > input[type="submit"] {
	width: 170px;
	min-height: 40px;
	margin: 0 auto;
	margin-top: 20px;
	background-color: rgb(255,2,195);  /* rosa choque */
	border-radius: 5px;
	color: #FFF;
	cursor: pointer;
	border: none;
	/* interno */
	display: flex;
	justify-content: center;
	align-items: center;
}

#popup-assistir > .box > form > input[type="submit"]:hover {
	transition: 0.3s ease; /* animação suave */
	background-color: rgb(186,31,165);  /* rosa escuro */
}

/********** Botão subir para topo **********/
.jquery-up {
	display:none;
	width:50px;
	height:50px;
	position:fixed;
	bottom:15px;
	right:10px;
	cursor:pointer;
	background-image:url(img/up.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:50px;
	z-index:100;
}


/********************** POPUP INSCRIÇÃO **********************/

#popup_inscricao {
	position:fixed;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.8);
	z-index:150;
	/* interno */
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}

#popup_inscricao > .mensagem {
	width:400px;
	height:200px;
	/* FONTE */
    font-family:'history_sans_pro_medium';
	font-size:25px;	
	text-align:center;
	color:#FFF;
	background-color: rgb(219,14,190);  /* rosa */
	border-radius:10px;
	/* interno */
	display:flex;
	justify-content:center;
	align-items:center;
}

#popup_inscricao > .close {
	width:50px;
	height:50px;
	margin-top:20px;
	background-color:rgb(12,95,163);  /* azul */
	/* FONTE */
    font-family:'history_sans_pro_medium';
	color:#FFF;
	border-radius:50%;
	cursor:pointer;
	/* interno */
	display:flex;
	justify-content:center;
	align-items:center;
	transition:all ease 0.2s;
}

#popup_inscricao > .close:hover {
	background-color:rgb(122,72,193); /* roxo */
	color:#FFF;
}