.elementor-2359 .elementor-element.elementor-element-f0b376c{--display:flex;}/* Start custom CSS for container, class: .elementor-element-f0b376c */body, html {
  margin: 0;
  padding: 0;
  height: 200vh; /* para permitir el scroll */
  overflow-x: hidden;
}

.circle-container {
  position: relative;
  height: 100vh; /* para ocupar toda la pantalla */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle {
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

#circle1 {
  transform: translate(-50%, -50%);
}

#circle2 {
  transform: translate(-50%, -50%);
}

#circle3 {
  transform: translate(-50%, -50%);
}/* End custom CSS */