.contenedor {
	width: 90%;
	max-width: 1250px;
	padding: 0;
	margin: 0;
	box-sizing:border-box;
	background: transparent;
	font-family: 'Open Sans', sans-serif;
	border: 5px solid transparent;
}

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

.btn-leer-mas {
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #1cb12c;
	color: #fff;
	padding: 10px 10px;
	text-decoration: none;
	border-radius: 5px;
	opacity: 0.9;
}

.btn-leer-mas:hover {
	opacity: 1;
}


.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: 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: 800px;
	
	transition: .3s ease all;
	transform: scale(1);
	opacity: 1;
}

.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 img {
	width: 100%;
	height: auto;
	animation: entradaTitulo .8s ease .5s forwards;
}

/* ------------------------- */
/* ANIMACIONES */
/* ------------------------- */

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

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