.elementor-340 .elementor-element.elementor-element-aaa2711{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-340 .elementor-element.elementor-element-e7f17a9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:30px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-340 .elementor-element.elementor-element-03ad449{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-340 .elementor-element.elementor-element-8715e96{--display:flex;--margin-top:-15px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}@media(max-width:767px){.elementor-340 .elementor-element.elementor-element-03ad449{--margin-top:-16px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS *//* Fondo degradado con círculos animados */
body {
  background: linear-gradient(135deg, #4facfe, #ff9966);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Círculos decorativos */
body::before,
body::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}

/* Círculo grande */
body::before {
  width: 35vw;
  height: 35vw;
  top: -10vw;
  left: -10vw;
  animation-delay: 0s;
}

/* Círculo mediano */
body::after {
  width: 25vw;
  height: 25vw;
  bottom: 5vw;     /* antes estaba en negativo */
  right: 5vw;      /* lo metemos hacia adentro */
  animation-delay: 6s;
}

/* Animación de flotación */
@keyframes float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3vw, 4vw) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* --- Responsividad --- */
@media (max-width: 768px) {
  body::before {
    width: 45vw;
    height: 45vw;
    top: -15vw;
    left: -15vw;
  }

  body::after {
    width: 35vw;
    height: 35vw;
    bottom: 8vw;
    right: 8vw;
  }
}

@media (max-width: 480px) {
  body::before {
    width: 55vw;
    height: 55vw;
    top: -20vw;
    left: -20vw;
  }

  body::after {
    width: 40vw;
    height: 40vw;
    bottom: 10vw;
    right: 10vw;
  }
}/* End custom CSS */