
@import url('https://fonts.googleapis.com/css?family=Modern+Antiqua'); /*--fuente para todo el body--*/
@import url(menu.css); /*--- importa todos los estilos del archivo menu--*/
/*--@import	url(banner.css);--*/


/*--declracion de fuente--*/
*{
margin: 0; /*--configuracion de bordes y margen--*/
padding:0;
box-sizing: border-box;

}

body{ /*--fuente para todo el body--*/
	font-family: 'Modern Antiqua', cursive;
}
header {
	width:100%;
	height: 80px;
	background: white;/*--color de fondo--*/
	color: black; /*--color de texto--*/
	position: fixed;/*--posicion de menu, estatica, queda pegado al scrooling--*/
	top: 0;
	left: 0;
	z-index: 100; /*--para q header tapa a los demas elementos al hacer scrooling--*/
	}
.contenedor {
	width: 100%; /*--conf de contenedores para cuando sea responsive--*/
	margin: auto;

}
h1 {
	float: left; /*--icono del menu flotante--*/
}
header .contenedor {
	display: table; /*--limpiar los float--*/
}
main {
	margin: auto;
	top: 30px;
}



/*--index--*/
.contenedor-portada { /*--portada de index--*/
    display: flex;
	width:100%;
	height: 400px;
	background-image: url(../Nuevasfotos/DJI_0032.JPG);
	background-size: 200%;
	background-repeat: no-repeat;
	animation: movimiento 15s infinite linear alternate;
	position: absolute;
	
}


@keyframes movimiento { /*--animacion de portada--*/
	from {
		background-position: bottom left;
		
	}
	to {
		background-position: top right;
	}
}
/*--animacion de portada--*/

.contenedor-detalle { /*--animacion de portada--*/
	width: 100%;
	max-width: 1200px;
	position: relative;
	margin: auto;
    
}
.detalle { /*--animacion de portada--*/
	
	width: 100%;
	left: 30px;
	max-width: 500px;
	position: relative;
	top: 20px;
	color: white;
	
}
.detalle h2 { /*--animacion de portada--*/
	font-size: 40px;
	font-weight: 100;
	text-align: center;

}
.detalle p { /*--animacion de portada--*/
	margin-top: 15px;
	font-size: 30px; 
	text-align: center;
}

.detalle button { /*--animacion de portada--*/
	padding: 10px 20px;
	font-size: 20px;
	background: rgba(255,255,255,0.1);
	border-bottom-style: groove;
	color: black;
	margin-top: 20px;
	transition: background 300ms;
	cursor: pointer;
}

.detalle button:hover{
	background: red;
	color: black;
}


#presentacion { /*--texto dela presentacion index--*/
	margin-top: 60px;
	display: flex;
	text-align: center;
	color: black;
	font-size: 25px;
	

	
}
#presentacion .contenedor {
    padding-top: 450px;
	border-bottom-style: groove;
	border-bottom-color: black;
	border-bottom-width: thick;
	display: flex;
	flex-wrap: wrap;
	
	
	
}

/*--galeria de imagenes inico--*/
#galeria-index{
	
	display: flex;
	flex-wrap: wrap;
}
.contenedor-all {
	margin: auto;
	padding: 10px;
	
}
.contenedor-img {
	width: 400px;
	height: 200px;
	margin: auto;
	margin-top: 30px;
	position: relative;
	overflow: hidden;


/*
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
*/
}
.contenedor-img img{
	width: 100%;
	height: 200px;
	-webkit-transition: all 300ms;
	transition: all 300ms;
} 
.conten-1 {
	width: 9px;
	height: 200px;
	position: absolute;
	top: 0;
	background: rgba(0,255,195,0.4);
	-webkit-transform: rotate (-30deg);
	transform: rotate(-30deg);
	margin-left: -70px;
	-webkit- transition: all 300ms;
	transition: all 300ms;
	
}
.conten-2 {
	width: 0px;
	height: 200px;
	position: absolute;
	top: 0;
	background: rgba(0,255,195,0.4);
	-webkit-transform: rotate (-30deg);
	transform: rotate(-30deg);
	margin-left: -30px;
	-webkit- transition: all 500ms;
	transition: all 500ms;
	
}
.conten-3 {
	width: 0px;
	height: 245px;
	position: absolute;
	top: 0;
	background: rgba(0,255,195,0.4);
	-webkit-transform: rotate (30deg);
	transform: rotate(30deg);
	margin-left: -1px;
	margin-top: -2px;
	-webkit- transition: all 900ms;
	transition: all 900ms;
	-webkit-box-shadow: 0px 1px 20px -5px black;
	box-shadow: 0px 1px 20px -5px black; /*sombrA*/

}
.conten-4 {
	width: 10px;
	height: 300px;
	position: absolute;
	top: 0;
background: rgba(0,255,195,0.4);
	-webkit-transform: rotate (30deg);
	transform: rotate(30deg);
	margin-left: -80px;
	margin-top: -80px;
	-webkit- transition: all 700ms;
	transition: all 700ms;
	-webkit-box-shadow: 0px 1px 20px -5px black;
	box-shadow: 0px 1px 20px -5px black;
}
.contenedor-img:hover .conten-1{
	width: 224%;
	-webkit-transition: all 900ms;
	transition: all 900ms;
}
.contenedor-img:hover .conten-2{
	width: 224%;
	-webkit-transition: all 300ms;
	transition: all 300ms;
}
.contenedor-img:hover .conten-3{
	width: 224%;
	-webkit-transition: all 500ms;
	transition: all 500ms;
}
.contenedor-img:hover .conten-4{
	width: 224%;
	-webkit-transition: all 700ms;
	transition: all 700ms;
}
.contenedor-img:hover {
	-webkit-transform: scale (1.1);
	transform: scale(1.1);
	-webkit-transition: all 300ms;
	transition: all 300ms;
	opacity: 0.8;
}

.contenedor-txt {
	position: absolute;
	top: 0px;
	width: 400px;
	padding: 10px;
	z-index: 10; /*TEXTO VIENE AL FRENTE*/
	color: white;
	text-align: center;
	margin-top: 10px;
}
.contenedor-txt h2{
	border: none;
	font-size: 30px;
	opacity: 0;
	-webkit-transform: scale(0.2);
	transform: scale(0.2);
	-webkit-transition: all 300ms;
	transition: all 300ms;
}
.contenedor-txt p{
	font-size: 20px;
	margin-top: 10px;
	opacity: 0;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: all 300ms;
	transition: all 300ms;
}
.contenedor-img:hover h2{
	opacity: 1;
	-webkit-transition: all 300ms;
	transition: all 300ms;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.contenedor-img:hover p{
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1)
	-webkit-transition: all 500ms;
	transition: all 500ms;

}
/*-----------------------------------------------------------*/



/*-- presente--*/
.ubicacion {
	width: 100%;
	padding:10px;
	display: flex;
	margin-top: 50px;
	border-bottom-style: double
}
.ubicacion h2{
	text-align: center;


}
.ubicacion p{
		margin: 20px;
	text-align: center;
	padding: 10px;
	font-size: 20px;
	background: rgba(0,0,0,0.4);
	border-radius: 50px;
	box-sizing: border-box;
}
/*-- capacidad--*/
.capacidad {
	width: 100%;
	padding:10px;
	display: flex;
	margin-top: 50px;
	border-bottom-style: double
}
.capacidad h2{
	text-align: center;
}
.capacidad p{
	margin: 20px;
	text-align: center;
	padding: 10px;
	font-size: 20px;
	background: rgba(0,0,0,0.4);
	border-radius: 50px;
	box-sizing: border-box;
}
/*-- transporte--*/
.transporte {
	width: 100%;
	padding:10px;
	display: flex;
	margin-top: 50px;
	border-bottom-style: double
}
.transporte h2{
	text-align: center;
}
.transporte p{
	margin: 20px;
	text-align: center;
	padding: 10px;
	font-size: 20px;
	background: rgba(0,0,0,0.4);
	border-radius: 50px;
	box-sizing: border-box;
}
/*-- forestacion--*/

.forestacion {
	width: 100%;
	padding:10px;
	display: flex;
	margin-top: 50px;
	border-bottom-style: double
}
.forestacion h2{
	text-align: center;
}
.forestacion p{
	margin: 20px;
	text-align: center;
	padding: 10px;
	font-size: 20px;
	background: rgba(0,0,0,0.4);
	border-radius: 50px;
	box-sizing: border-box;
}

.descripcion-presente {
	
	padding: 10px;
	color: white;
	background-image: url(../fotos/fondos/piedra.jpg);
	
	
}
/*estilo footer*/

footer .contenedor {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 25px;
}
.copy { /*-cuando pasa el mouse por el menu se pinta--*/
	font-size:20px;
}
.sociales {
	width: 100%;
	text-align: center;
	font-size: 28px;
}

.sociales a {
	color: blue;
	text-decoration: none;
}
@media (min-width:76px) { /*-para version tablet--*/
	.sociales {
		width: auto;
	}
	footer .contenedor {
		justify-content: space-between;
	}
}

@media (min-width:1024px) { /*-para version escritorio--*/
	.contenedor {
		width: 1000px;
	}
	
@media (min-width:1024px) { /*-para version escritorio--*/
	.contenedor-galeria {
		width: 1000px;
	}
}