

a.fancybox { /* Estilos del texto que tiene el tooltip NO SE VERÁ PARA IMAGENES */
    position: relative;
    margin: 0.9em;
    display: inline-block;
    width: 200px;
}
a.fancybox:hover {
    z-index: 25; 
}

a.fancybox span {
    display: block;
    position: absolute;
    top: 73%;  /* copiar estas características del marco en la primera parte*/
    left: 0px;
    width: 100%;
    height: 25%; /**/
    background: rgba(0,0,0,0.4);
    color: #fff;  /*color de las letras*/
    text-align: center;
    padding: 8px 20px;
    font-size: 0.9em;
    letter-spacing: 2px;
    line-height: 1.4em; 
    text-transform: uppercase;
    font-weight: lighter;
}

a.fancybox:hover span { /* Estilos de la descripción */
    display: block;
    position: absolute;
    /*font-weight: bold; /**/
    background: rgba(0,0,0,0.6);
    color: #fff;


}

@media screen and (max-width: 600px) {

    a.fancybox span { /* Estilos de la descripción */
        font-size: 0.9em;

    }

}