.canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7f5ed;
  pointer-events: none;
  z-index: 1;
}

.gradient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 1; /* Garantindo que o gradiente seja visível */
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  mix-blend-mode: multiply;
  touch-action: none; /* Previne comportamentos padrão de toque */
  z-index: 2;
}

@media (max-width: 700px), (max-height: 600px) {
  .canvas-container {
    z-index: 1;
  }
}

.halftone-hero {
  position: relative;
  width: 100vw;
  height: 430px;
  min-height: 430px;
  max-width: 100vw;
  overflow: hidden;
  background: transparent;
  z-index: 1;
  box-sizing: border-box;
}

.gradient-canvas,
.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle-canvas {
  pointer-events: auto;
  z-index: 2;
}

/* Sutil indicador de interatividade */
.cursor-hint {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.cursor-hint.active {
  opacity: 1;
}
