
.contenedorr {
	width: 90%;
	max-width: 1000px;
	margin: 20px auto;
        font-family: 'Open Sans', sans-serif;
}

.contenedorr article {
	line-height: 28px;
}

.contenedorr article h1 {
	font-size: 30px;
	text-align: left;
	padding: 50px 0;
}

.contenedorr article p {
	margin-bottom: 20px;
}

.contenedorr article .btn-abrir-popup {
	padding: 0 20px;
	margin-bottom: 20px;
	height: 40px;
	line-height: 40px;
	border: none;
	background: #7a7a7a;
	border-radius: 3px;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
        color: white;
	cursor: pointer;
	transition: .3s ease all;
	cursor: pointer;
}

.contenedorr article .btn-abrir-popup:hover {
	opacity: 0.8;
}
.contenedorr article .btn-abrir-popup-2{
        padding: 0 20px;
	margin-bottom: 20px;
	height: 40px;
	line-height: 40px;
	border: none;
        background: #4b277a;
	border-radius: 100px;
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
        color: white;
	cursor: pointer;
	transition: .3s ease all;
	cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: background .5s;
}
.contenedorr article .btn-abrir-popup-2:hover{
    background-color: rgba(75,39,122,.85);
    cursor: pointer;
}

/* ------------------------- */
/* 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;
}

.overlay.active {
	visibility: visible;
}

.popup {
	background: #F8F8F8;
	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: 600px;
	
	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: #BBBBBB;
}

.popup .btn-cerrar-popup:hover {
	color: #000;
}

.popup h3 {
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 10px;
	opacity: 0;
}

.popup h4 {
	font-size: 20px;
	font-weight: 200;
	margin-bottom: 40px;
	opacity: 0;
}

.popup form .contenedorr-inputs {
	opacity: 0;
}

.popup form .contenedorr-inputs input {
	width: 100%;
	margin-bottom: 20px;
	height: 52px;
	font-size: 18px;
	line-height: 52px;
	text-align: center;
	border: 1px solid #BBBBBB;
}

.popup form .btn-submit {
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	border: none;
	background: #7a7a7a;
	color: white;
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	cursor: pointer;
	transition: .3s ease all;
}

.popup form .btn-submit:hover {
	opacity: 0.8;
}

/* ------------------------- */
/* 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 .contenedorr-inputs { animation: entradaInputs 1s linear 1s forwards; }

.popup2 {
	background: #c59bfb;
	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: 600px;
	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup2 .btn-cerrar-popup {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	transition: .3s ease all;
	color: #604c7a;
}

.popup2 .btn-cerrar-popup:hover {
	color: #4b277a;
}

.popup2 h3 {
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 10px;
	opacity: 0;
}

.popup2 h4 {
	font-size: 20px;
	font-weight: 200;
	margin-bottom: 40px;
	opacity: 0;
}

.popup2 form .contenedorr-inputs {
	opacity: 0;
}

.popup2 form .contenedorr-inputs input {
	width: 100%;
	margin-bottom: 20px;
	height: 52px;
	font-size: 18px;
	line-height: 52px;
	text-align: center;
	border: 1px solid #604c7a;
}

.popup2 form .btn-submit {
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	border: none;
	background: #4b277a;
	color: white;
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	cursor: pointer;
	transition: .3s ease all;
}

.popup2 form .btn-submit:hover {
	opacity: 0.8;
}

/* ------------------------- */
/* ANIMACIONES */
/* ------------------------- */
.popup2.active {	transform: scale(1); opacity: 1; }
.popup2.active h3 { animation: entradaTitulo .8s ease .5s forwards; }
.popup2.active h4 { animation: entradaSubtitulo .8s ease .5s forwards; }
.popup2.active .contenedorr-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; }
}