.elementor-82 .elementor-element.elementor-element-311b979c{--display:flex;--min-height:546px;}.elementor-82 .elementor-element.elementor-element-eccf27b{--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;}@media(max-width:767px){.elementor-82 .elementor-element.elementor-element-311b979c{--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-82 .elementor-element.elementor-element-311b979c{--content-width:1197px;}}/* Start custom CSS *//* Fondo degradado animado en pseudo-elemento */
body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden; /* Solo horizontal oculto, vertical se mantiene */
}

/* Separamos el fondo animado para no afectar el scroll */
body::before {
  content: "";
  position: fixed; /* Fijo para que siempre esté de fondo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* atrás del contenido */
  background: linear-gradient(135deg, #e0b9ff, #b56cff, #9d4edd, #7b2cbf, #5a189a);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

/* Animación del degradado */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Burbujas infinitas con pseudo-elementos */
body::after {
  content: "";
  position: fixed; /* fijo para que no bloquee scroll */
  bottom: -15vh;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  z-index: -1; /* atrás del contenido */
}

/* Varias burbujas con box-shadow */
body::before, body::after {
  pointer-events: none; /* que no bloqueen clicks */
}

/* Pseudo-elementos para burbujas originales */
body.bubbles::before,
body.bubbles::after {
  content: "";
  position: absolute;
  bottom: -15vh;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  animation: bubbleUp linear infinite;
  z-index: 0;
}

/* Varias burbujas con box-shadow */
body.bubbles::before {
  left: 15%;
  width: 20px;
  height: 20px;
  box-shadow:
    60px 0 rgba(255,255,255,0.1),
    140px 50px rgba(255,255,255,0.15),
    220px 120px rgba(255,255,255,0.08),
    300px 30px rgba(255,255,255,0.12),
    380px 90px rgba(255,255,255,0.1);
  animation-duration: 20s;
}

body.bubbles::after {
  left: 65%;
  width: 35px;
  height: 35px;
  box-shadow:
    50px 20px rgba(255,255,255,0.1),
    120px 70px rgba(255,255,255,0.14),
    200px 30px rgba(255,255,255,0.1),
    270px 100px rgba(255,255,255,0.08);
  animation-duration: 25s;
  animation-delay: -10s;
}

/* Animación infinita */
@keyframes bubbleUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  body.bubbles::before, body.bubbles::after {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  body.bubbles::before, body.bubbles::after {
    width: 8px;
    height: 8px;
  }
}

/* Mantener sección de Elementor sin overflow hidden */
.elementor-section {
  position: relative;
  overflow: visible; /* importante para scroll */
}/* End custom CSS */