 /* Hero con imagen de fondo + overlay semitransparente */
        .hero-bg-image {
        position: relative;
        overflow: hidden;
        }

        .hero-bg-image::before {
        content: "";
        position: absolute;
        inset: 0;                         /* top:0 right:0 bottom:0 left:0 */
        background-image: url("../img/img2.png");
        background-size: 100% 100%;
        background-position: center;
        opacity: 0.45;                    /* ajusta la opacidad (0-1) */
        z-index: 0;
        }

        .hero-bg-image .hero-body {
        position: relative;
        z-index: 1;                       /* contenido por encima */
        }

        .clickpoint{
              cursor: pointer;
        }