.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  
  .cursor-svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .cursor-path {
    fill: rgb(123, 255, 121); /* Color que contrastará con el fondo */
    transition: fill 0.3s ease;
  }
  
  /* Opcional: Cambiar color en elementos específicos */
  a:hover ~ .custom-cursor .cursor-path,
  button:hover ~ .custom-cursor .cursor-path{
    fill: #007bff;
    width: 40px;
    height: 40px;
    transition: all .3s ease;
  }

section {
    opacity: 1; /* Importante para las animaciones */
    transition: opacity 0.3s ease; /* Transición de respaldo */
    display: none; /* Mantener tu lógica actual */
  }
  
section:first-child {
    display: block; /* Mostrar primera sección al inicio */
  }