/* Efectos adicionales para el banner */
.logo-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 8s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Formas geométricas flotantes */
.banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.banner-shape {
    position: absolute;
    opacity: 0.1;
    animation: bannerShapeFloat 12s ease-in-out infinite;
}

.banner-shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.banner-shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.banner-shape-3 {
    width: 80px;
    height: 30px;
    background: linear-gradient(45deg, #a855f7, #c084fc);
    border-radius: 50px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.banner-shape-4 {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4c1d95, #6366f1);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes bannerShapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

/* Grid tecnológico */
.tech-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Elementos tecnológicos */
.tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-element {
    position: absolute;
    color: rgba(255,255,255,0.1);
    font-size: 2rem;
    animation: techFloat 8s ease-in-out infinite;
}

.tech-element:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; }
.tech-element:nth-child(2) { top: 25%; right: 20%; animation-delay: 1s; }
.tech-element:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 2s; }
.tech-element:nth-child(4) { bottom: 20%; right: 15%; animation-delay: 3s; }
.tech-element:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }
.tech-element:nth-child(6) { top: 60%; right: 10%; animation-delay: 5s; }

@keyframes techFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.2; }
}