/*@import url(css/menu.css); también se puede importar otros estilos como este*/
@import url(banner.css);
*{
	margin: 0;
	padding: 0;
	box-sizing:border-box; /*cuando se de padding  este dentro del modelo de caja y los tamaños encajen en responsive*/
}

body {
	font-family: Arial;
}

header {
	width: 100%;
	height: 50px;
	background: #41014F;
	color:#fff;
	position:fixed;/*para que el menú se quede pegado*/
	top: 0;
	left: 0;  /*para que empieze desde la esquina superior*/
	z-index: 100;  /*para que quede encima de los elementos*/
}

.contenedor {
	width: 98%;
	margin: auto;
}

h1{
	float: left;
}

header .contenedor {
	display: table; /*para limpiar los floats*/
}
section{
	width: 100%;
	margin-bottom: 25px; /*halla mas contenido abajo lo empuje con una separacion de 25px*/
}

/*-------------------menú------------------------------------------*/
#menu-bar {
	display: none;
}

header label {
	float: right;
	font-size: 28px;
	margin: 6px 0;
	cursor: pointer; /*cuando pase el mouse se ponga la manito*/ 
}

.menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;/*para que me ocupe siempre el 100% del alto de la ventana*/
	background: #41014F;
	transition:all 0.5s;
	transform: translate(-100%); /*para transladar el menú */
}

.menu a{
	display: block;
	color: #fff;
	height: 50px;
	text-decoration: none;
	padding: 15px;
	border-bottom: 1px solid rgba(255,255,255,0.3)
}
.menu a:hover{
	background: rgba(255,255,255,0.1)

}
#menu-bar:checked ~ .menu{
	transform:translate(0%);
}  /*para traer de nuevo el menú*/

@media (min-width:1024px){
	.menu {
		position:static;
		width: auto;
		height: auto;
		transform:translateX(0%);
		float: right;
		display: flex;
	}
	.menu a {
		border: none;
	}
header label {
	display: none;
}
}
/*--------------------------------------*/
#bienbenidos{
	text-align: center;
}
/*-------------blog-------------------------*/
#blog h3,h4{
	text-align: center;
}
#blog .contenedor{
	display: flex; /*para que las imagenes estén en una sola línea*/
	justify-content:center;
	flex-wrap:wrap; /*para que los elementos que no caben bajen */
}
#blog article{
	margin: 15px;
}
#blog img{
	width: 100%;
	max-width: 280px;
}


/*----botón arriba-----------------------*/
#sube{
	
	display: inline-block;
	padding: 10px;
	background: #9317F2;/*#0d2c44 #284FA3 #024959*/
	font-size: 12px;
	color: #fff;
	cursor: pointer;
	position: fixed;
	bottom: 10px;
	right: 10px;
	overflow: hidden;	
	z-index: 5;
    text-align: center;
    text-decoration: none;
    border-radius: 80px 80px 0 0 ;
    -webkit-border-radius: 80px 80px 0 0 ;
    -moz-border-radius: 80px 80px 0 0 ;
    -o-border-radius: 80px 80px 0 0 ;
    box-shadow: 0px 5px 5px #781CF2;
	-webkit-box-shadow: 0px 4px 4px #781CF2;
	-moz-box-shadow: 0px 4px 4px #781CF2;
	-o-box-shadow: 0px 4px 4px #781CF2;
}

#sube :hover {

  background-color: rgba(57, 9, 94, 0.6);
  

}

/*----------------------------------------*/

#info{
     background: #31013B;
     color: #fff;
     text-align: center;
     padding: 20px;

}
#info .contenedor{
	display: flex;
	flex-wrap:wrap;
	justify-content:center;
}
.mascotita{
	margin: 20px;
}
.mascotita img{ 
	width: 180px;
	height: 180px;
	border-radius:50%;
	border:5px solid #fff;
}
@media (min-width: 480px){
	.mascotita{
		width: 40%; /*a partir de 480 px sigue a dos columnas*/
	}
}
@media (min-width: 1024px){
	.mascotita{
		width: auto; /*a partir de 1024 px es automático*/
	}
}
/*--------------footer--------------*/
footer .contenedor{
	display: flex;
	flex-wrap:wrap;
	justify-content:center;
	padding-bottom: 25px;
}
.copy{
	font-size: 20px;

}
.informacion{
	width: 100%;
	text-align: center;
	font-size: 28px;

}
.informacion a {
	color:#2C0351;
	text-decoration: none;

}
@media (min-width: 768px){
	.informacion{
		width: auto;
	}
	footer .contenedor{
		justify-content: space-between;
	}
}


@media (min-width: 1024px){
	.contenedor{
		width: 1000px;
	}

}
/*---------------PÁGINA MASCOTAS------------*/

#Amiguitos {
	text-align: center;	
	margin-top: 60px;
	position: relative;


}

#Amiguitos img {
	width: 40%;
	height: 40%;
	border: 3px solid #5F2871;
}
#Amiguitos img{
	
	color: white;	
	background-size: 100% 100%;
	background-repeat: no-repeat;;
	display: box;	
	box-shadow: 0px 0px 10px #12000B;	
	animation:parpadeo 10s;
	-webkit-animation:parpadeo 10s;
	animation-iteration-count:infinite;
	-webkit-animation-iteration-count:infinite;
}

#Amiguitos a{
	display:block;
	width: 120px;
	color: #fff;
	text-decoration: none;
	padding: 10px;
	margin-left: 600px;
	margin-top: 2px;
	border: 3px solid #fff;
	background: #4D012E;
}
#Amiguitos a:hover{
	background: rgba(65, 7, 94,0.5);
}

#Amiguitos .contenedor { /*contenedor se posicione en base a su ancentro de acuerdo a banner*/
	
	top: 50%;
	left: 50%;	
    color:#fff;
}
@media (min-width: 480px){ /*a partir de hay aumenta el tamaño de la letra*/
	#Amiguitos h2 {
		font-size: 40px;
	}
	#Amiguitos a {
		margin-top: 25px;
	}
}
@media (min-width: 1024px){
	
	#Amiguitos img{                 /*para que la imagen suba o baje de acuerdo al tamaño*/
		
		margin-top: 20px;
	}
}
/*-------------------CONTACTO----------------------------------------------------------*/
form{
	width: 450px;
	margin: auto;
	background: rgba(29, 17, 45,0.4);
	padding:10px 20px; /*relleno hacia adentro*/
	box-sizing:border-box;
	margin-top: 20px;

}
form h2{
	color: #fff;
	text-align: center;
	margin:0;
	font-size: 30px;
	margin-bottom: 20px;
}
input, textarea{
	width: 100%;
	margin-bottom: 20px;
	padding: 7px;
	box-sizing:border-box;
	font-size: 17px;
	border: none;
}
textarea{
	min-height: 100px; /*indica el maximo que puedo anchar a textarea*/
	min-height: 200px; /*indica el maximo que puedo alargar a textarea*/
	max-width: 100%;  /*indica el maximo que puedo asignar a textarea*/
}
#boton{
	background: #4D012E;
	color: #fff;
	padding: 20px;
}
#boton:hover{
	background: rgba(65, 7, 94,0.5);
	cursor: pointer;
}
/*se realize siempre y cuando el ancho max sea 480px si se pasa lo que esta adentro no se cumple*/
@media (max-width: 480px) {
	form{
		width: 100%;
	}

}