
        body {
            font-family: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        }

        .gradient-bg-cyan {
            background: linear-gradient(135deg, #06b6d4, #22d3ee);
        }

        .gradient-bg-green {
            background: linear-gradient(135deg, #22c55e, #4ade80);
        }

        .gradient-bg-purple {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 768px) {

            p, .p-fz-20, li.flex items-start {
                font-size: 20px !important;
            }          
        }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            z-index: 100;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            visibility: hidden;
        }

        .whatsapp-float.show {
            opacity: 1;
            visibility: visible;
        }
    