.vista {
    width: 300px;
    height: 460px;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 1px 1px 2px #e6e6e6;
    cursor: default;
    text-align: center;
}
.vista .mascara, .vista .contenido {
    width: 300px;
    height: 460px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}

@media(max-width: 767px)
{
	.vista {
	    width: 300px;
	    height: 460px;
	 }
	.vista .mascara, .vista .contenido {
	    width: 300px;
	    height: 460px;    
	}
}

@media (max-width: 599px) { 
	
   vista .mascara, .vista .contenido {
    width: 190px;
  }
}


.vista img {
    display: block;
    position: relative;
}

.vista p {
    font-size: 18px;
    position: relative;
    color: #fff;
    text-align: center;
    margin-top: 90px;
}

@media (max-width: 768px)
{
	.vista p {
	    margin-top: 70px;
	}
}

.vista a.informacion {
    display: inline-block;
    text-decoration: none;
    padding: 7px 10px;
    background: rgb(231,51,39);
    color: #fff;
    border-radius:5px;
}

.vista a.social {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    color: #fff;
    box-shadow: 0 0 1px #000;
    border-radius:5px;
}

.vista a.informacion:hover {
    box-shadow: 0 0 10px silver;
}

.vista .contenido .shareLegend
{
	color:white; 
	font-size: 14px; 
	font-family: Gotham-Light;
	margin-bottom: 10px;
} 
/******************************************************************************/
/* Estilos para ejemplo 1 */
.vista img {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.vista .mascara {
    opacity: 0;
    background-color: hsla(0,0%,0%,0.6);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.vista p { 
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -o-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vista .shareLegend
{
	opacity: 0;
	 -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -o-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vista:hover .shareLegend
{
	opacity: 1;
	-webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.vista a.informacion{
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.vista a.social{
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


.vista:hover .mascara { 
    opacity: 1;
}
.vista:hover h2,
.vista:hover p,
.vista:hover a.informacion {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.vista:hover h2,
.vista:hover p,
.vista:hover a.social {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.vista:hover p {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.vista:hover a.informacion {
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    transition-delay: 0.2s;
}