/* Contenedor de las 3 opciones */
.cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    margin: 40px auto;
}


/* Cada bloque individual */
.image-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Imagen principal */
.base-image {
    width: 200px;
    height: auto;
    display: block;
}


/* Imagen que aparece al pasar el mouse */
.hover-image {
    display: none;
    position: absolute;
    width: 500px;
    top: 68%;
    margin-top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}


/* Mostrar imagen al pasar el cursor */
.image-box:hover .hover-image {
    display: block;
}


/* Ajustes individuales de los cuadros */
.hover2 {
    width: 800px;
}


/* Diseño para celular */
@media(max-width:768px){

    .cards-container{
        gap:20px;
    }


    .base-image{
        width:120px;
    }


    .hover-image{
        width:300px;
    }


    .hover2{
        width:350px;
    }

}