/* Contenedor de nubes como máscara de recorte */
.nubecont {
  overflow: hidden;
  position: absolute;
  z-index: 2;
  clip-path: inset(0);
  opacity: 1; /* Nubes visibles nuevamente */
  pointer-events: none; /* Deshabilitar interacciones */
}

/* Capa contenedora de las nubes */
.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}

/* Estilos base para todas las nubes */
.nube {
    position: absolute;
    height: auto;
    opacity: 0.75;
}

/* Posiciones específicas de cada nube */
.nube1 {
    left: 45%;
    top: 60%;
    width: 76%;
    z-index: 1;
}

.nube2 {
    left: -35%;
    top: 50%;
    width: 86%;
    z-index: 1;
}

.nube3 {
    left: 2%;
    top: 20%;
    width: 32%;
    z-index: 1;
}

.nube4 {
    left: -10%;
    top: 30%;
    width: 67%;
    z-index: 0;
}

.nube5 {
    left: 52%;
    top: 25%;
    width: 50%;
    z-index: 0;
}

.nube6 {
    left: 49%;
    top: 26%;
    width: 75%;
    z-index: -1;
}
