

.contenedor {
	width: 90%;
	max-width: 1000px;
	
}

.contenedor article {
	line-height: 28px;
}

.contenedor article h1 {
	font-size: 30px;
	text-align: left;
	padding: 50px 0;
}

.contenedor article p {
	margin-bottom: 20px;
}
.contenedor article .btn-abrir-popup{
			background-color:#202617;
		    font-size:12pt;
		    color:white;
		    border-radius: 10px;
			cursor:pointer;
			box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.4);
			transition: box-shadow 0.5s ease;
			vertical-align: middle;
		}
.contenedor article .btn-abrir-popup:hover{
			box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.4);
		}
		
.contenedor article .btn-abrir-popup span{
			font-size:15pt;
			line-height:20pt;
		}
/* .contenedor article .btn-abrir-popup { */
/* 	padding: 0 20px; */
/* 	margin-bottom: 20px; */
/* 	height: 40px; */
/* 	line-height: 40px; */
/* 	border: none; */
/* 	color: #fff; */
/* 	background: #5E7DE3; */
/* 	border-radius: 3px; */
/* 	font-family: 'Montserrat', sans-serif; */
/* 	font-size: 16px; */
/* 	cursor: pointer; */
/* 	transition: .3s ease all; */
/* 	cursor: pointer; */
/* } */

/* .contenedor article .btn-abrir-popup:hover { */
/* 	background: rgba(94,125,227, .9); */
/* } */

/* ------------------------- */
/* POPUP */
/* ------------------------- */

.overlay {
	background: rgba(0,0,0,.3);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	justify-content: center;
	display: flex;
	visibility: hidden;
	z-index:10000;
}

.overlay.active {
	visibility: visible;
}

.popup {
	position: fixed;
	background-color: #B8BFAC;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	padding: 20px;
	text-align: center;
	width: 40%;
	max-height:100%;
	z-index:10000;
	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup .btn-cerrar-popup {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	transition: .3s ease all;
	color: #FFFFFF;
}

.popup .btn-cerrar-popup:hover {
	color: #000;
}



/* ------------------------- */
/* ANIMACIONES */
/* ------------------------- */
.popup.active {	transform: scale(1); opacity: 1; }
.popup.active h3 { animation: entradaTitulo .8s ease .5s forwards; }
.popup.active h4 { animation: entradaSubtitulo .8s ease .5s forwards; }
.popup.active .contenedor-inputs { animation: entradaInputs 1s linear 1s forwards; }

@keyframes entradaTitulo {
	from {
		opacity: 0;
		transform: translateY(-25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaSubtitulo {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaInputs {
	from { opacity: 0; }
	to { opacity: 1; }
}