/*=============== HERO PORTRAIT CANVAS ===============*/

/* Canvas sits behind the image inside home__blob */
#portrait-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
  /* GSAP will set transform / dimensions */
}

/* Ensure profile image is above canvas */
.home__perfil {
  position: relative;
  z-index: 1;
}

/* Decorative shapes stay on top */
.home__shape-wawes,
.home__shape-circle {
  position: absolute;
  z-index: 2;
}

/* home__blob already has position:relative in styles.css */
