@charset "iso-8859-1";
/* CSS Document */

/* valores iniciales*/
.vista {
    width: 240px;
    height: 240px;
    margin: 2px;
    float: left;
    border: 1px solid #fff;
    overflow: hidden;
    position: relative;
   /* text-align: center;*/
	text-align:left;
 /*   box-shadow: 1px 1px 2px #e6e6e6;*/
    cursor: default;
}
.vista .mascara, .vista .contenido {
    width: 240px;
    height: 240px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}
.vista img {
    display: block;
    position: relative;
}
.vista h2 {
   /* text-transform: uppercase;*/
    color: #fff;
    text-align:left;
    position: relative;
    font-size: 14px;
    padding: 10px;
    background: hsla(0,0%,0%,0.5);
    margin: 20px 0 0 0;
}
.vista p {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  /*  font-style: italic;*/
	font-weight:normal;
    font-size: 12px;
    position: relative;
    color: #222;
    padding: 5px 10px 10px 10px;
	line-height:16px;
    text-align:left;
}
.vista a.informacion {
    display: inline-block;
    text-decoration: none;
    padding: 7px 12px;
   /* background: #000;*/
   background: hsla(0,0%,0%,0.7);
    color: #fff;
   /* text-transform: uppercase; */
    box-shadow: 0 0 0px #000;
	width:100%;
}
.vista a.informacion:hover {
    box-shadow: 0 0 5px #000
}



/*--------------------------*/

.vista img {
    transition: all 0.2s linear;
}
.vista .mascara {
    opacity: 0;
    background-color: hsla(0,0%,100%,0.7); /* hsla(34,93%,45%,0.7) Color naranja con 0.7 de opacidad */
    transition: all 0.4s ease-in-out;
}
.vista h2 {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.2s ease-in-out;
}
.vista p { 
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.2s linear;
}
.vista a.informacion{
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.vista:hover img { 
    transform: scale(1.2);
} 
.vista:hover .mascara { 
    opacity: 1;
}
.vista:hover h2,
.vista:hover p,
.vista:hover a.informacion {
    opacity: 1;
    transform: translateY(0px);
}
.vista:hover p {
    transition-delay: 0.1s;
}
.vista:hover a.informacion {
    transition-delay: 0.2s;
}


