.texto-destacado::before{
content: '';
position: absolute;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
background-image: url('juegoposible2.jpeg');
background-size: cover;
opacity: 0;
z-index: -1;
transition: opacity 0.3s ease;
}
.texto-destacado:hover{
color: #fff;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.texto-destacado:hover::before{
opacity: 1;
}