

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.contenedorHover{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;
   margin-bottom: 10%;
 
}
.contenedorHover figure{
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 15px 25px rgba(0,0,0,0.50);
    cursor: pointer;
}
.contenedorHover figure img{
    width: 100%;
    height: 100%;
    transition: all 500ms ease-out;
}
.contenedorHover figure .capa{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 253, 253, 0.6);
    transition: all 500ms ease-out;
   opacity: 0;
   visibility: hidden;
    text-align: center;


}
.contenedorHover figure:hover > .capa{
    opacity: 1;
    visibility: visible;
}


.contenedorHover figure:hover > img{
    transform: scale(1.3);
}


  .contenedorHover figure .capa p{
    font-family: "montserrat";
    font-weight: 600;
    color: #545454;
    font-size: 1.3em;
    line-height: 1.5;
    width: 100%;
    max-width: 220px;
   
    
   }
   @media screen and (max-width: 1300px) {
    .contenedorHover figure .capa p{
        font-size: 1.2em;
        line-height: 1.5;
    }}
   @media screen and (max-width: 999px) {
    .contenedorHover figure .capa p{
     font-size: 1em;
     line-height: 1.5;
    }}
   @media screen and (max-width: 999px) {
    .contenedorHover figure .capa p{
     font-size: 1em;
     line-height: 1.1;
    }}
   @media screen and (max-width: 768px) {
    .contenedorHover figure .capa p{
     font-size: 1.5em;
     line-height: 1.5;
    }}
   @media screen and (max-width: 450px) {
   .contenedorHover figure .capa p{
    font-size: 1.2em;
    line-height: 1.5;
   }}