/* Efectos de fondo adicionales - Archivo separado para mejor organización */

/* Efecto de luz que se mueve por la página - MÁS INTENSO */
.light-effect {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(55, 168, 0, 0.20) 0%, rgba(55, 168, 0, 0.10) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
    filter: blur(40px);
}

/* Partículas flotantes decorativas */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.12;
    animation: float 20s infinite ease-in-out;
    filter: blur(2px);
}

.floating-shape:nth-child(1) {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary), rgba(55, 168, 0, 0.6));
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-shape:nth-child(2) {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-secondary), rgba(255, 206, 0, 0.6));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.floating-shape:nth-child(3) {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--color-primary), rgba(55, 168, 0, 0.5));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: 80%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 35s;
}

.floating-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-secondary), rgba(255, 206, 0, 0.5));
    border-radius: 50%;
    top: 30%;
    left: 70%;
    animation-delay: 15s;
    animation-duration: 28s;
}

.floating-shape:nth-child(5) {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), rgba(55, 168, 0, 0.7));
    border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    top: 45%;
    left: 50%;
    animation-delay: 20s;
    animation-duration: 32s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(60px, -60px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(-40px, 80px) rotate(180deg) scale(0.8);
    }
    75% {
        transform: translate(80px, 40px) rotate(270deg) scale(1.1);
    }
}

/* Efecto de aurora boreal - MÁS VISIBLE */
.aurora-effect {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        linear-gradient(45deg,
            transparent 0%,
            rgba(55, 168, 0, 0.08) 20%,
            rgba(255, 206, 0, 0.06) 40%,
            transparent 50%,
            rgba(55, 168, 0, 0.08) 70%,
            rgba(255, 206, 0, 0.06) 90%,
            transparent 100%);
    animation: aurora 30s linear infinite;
    pointer-events: none;
    z-index: -1;
    opacity: 0.9;
    filter: blur(60px);
}

@keyframes aurora {
    0% {
        transform: rotate(0deg) translateY(0);
    }
    100% {
        transform: rotate(360deg) translateY(100px);
    }
}

