 html {
            scroll-behavior: smooth;
        }

        #contacto {
            scroll-margin-top: 96px;
        }

        body {
            background-color: #10131a;
            color: #e1e2eb;
            overflow-x: hidden;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .glass-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        .primary-gradient {
            background: linear-gradient(135deg, #d8b9ff 0%, #00eefc 100%);
        }
        .glow-effect {
            box-shadow: 0 0 20px rgba(216, 185, 255, 0.3);
        }
        .glow-effect:hover {
            box-shadow: 0 0 30px rgba(216, 185, 255, 0.5);
        }
        .text-glow {
            text-shadow: 0 0 10px rgba(216, 185, 255, 0.4);
        }
