/* Reset & Base */
:root {
    --neon-cyan: #22d3ee;
    --electric-yellow: #facc15;
    --deep-black: #050505;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--deep-black);
    overflow-x: hidden;
}

/* Liquid Retina Background */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
    z-index: -2;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    /* Violeta */
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    /* Azul Real */
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.3);
    /* Slight dark overlay */
    backdrop-filter: blur(40px);
    /* Heavy blur for the background elements */
    -webkit-backdrop-filter: blur(40px);
    z-index: -1;
}

/* Glass Panel - Service Cards & Containers */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Utilities */
.text-glow {
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* WhatsApp Button Pulse */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse-green 2s infinite;
}