<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#popup-entrada {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}
#popup-entrada .underlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
}
#popup-entrada .modal {
	max-width: 750px;
	height: 400px;
	overflow: hidden;
	background-color: #ffffff;
	z-index: 1;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 0px;
	-webkit-box-shadow: 0px 0px 12px 5px rgba(0, 0, 0, 0.32);
	-moz-box-shadow: 0px 0px 12px 5px rgba(0, 0, 0, 0.32);
	box-shadow: 0px 0px 12px 5px rgba(0, 0, 0, 0.32);
}
#popup-entrada .modal .modal-saida {
	position: absolute;
	right: 0;
	margin-top: 5px;
	margin-right: 5px;
	width: 23px;
	height: 23px;
	cursor: pointer;
	border-radius: 100%;
	z-index: 9;
	background: #ffffff;
}
#popup-entrada .modal .modal-saida i {
	font-size: 23px;
	opacity: 0.6;
}
#popup-entrada .modal .modal-saida i:hover {
	opacity: 1;
}
#popup-entrada .modal .modal-image {
	float: left;
	width: 50%;
	display: inline-block;
	position: absolute;
}
#popup-entrada .modal .modal-body {
	float: right;
	width: 50%;
	display: inline-block;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
}
#popup-entrada .modal .modal-body .popup-titulo {
	font-size: 31px;
	line-height: 32px;
	margin-top: 30px;
	margin-bottom: 30px;
	color: #2b2726;
	text-transform: uppercase;
}
#popup-entrada .modal .modal-body .popup-texto {
	height: 42px;
	margin-bottom: 25px;
}
#popup-entrada .modal .modal-body .subscribe input {
	margin-bottom: 10px;
	height: 42px;
	text-align: center;
}
#popup-entrada .modal .modal-body .action.primary {
	padding: 12px;
	width: 100%;
}
 @media all and (max-width: 768px) {
 #popup-entrada .modal {
 max-width: 90%;
 height: 400px;
}
 #popup-entrada .modal .modal-image {
 display: none;
}
 #popup-entrada .modal .modal-body {
 float: left;
 width: 100%;
}
}
</pre></body></html>