  /* Burbujas CSS */
        #hero {
            position: relative;
            /* referencia para burbujas */
            overflow: hidden;
            /* evita que se salgan */
            z-index: 0;
            /* contenido principal arriba */
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            opacity: 0.75;
            background: radial-gradient(circle at 30% 40%,
                    rgba(255, 255, 255, 1) 0%,
                    rgba(190, 230, 255, 0.9) 25%,
                    rgba(140, 190, 255, 0.8) 45%,
                    rgba(200, 170, 255, 0.7) 65%,
                    rgba(170, 140, 255, 0.6) 85%,
                    rgba(255, 255, 255, 0.2) 100%);
            box-shadow:
                inset 0 0 30px rgba(255, 255, 255, 0.8),
                inset -15px -15px 30px rgba(150, 190, 255, 0.4),
                0 15px 35px rgba(100, 160, 255, 0.35),
                0 0 60px rgba(180, 150, 255, 0.5),
                0 0 80px rgba(150, 200, 255, 0.4);
            animation: float 7s infinite ease-in-out;
            backdrop-filter: blur(4px);
            border: 2px solid rgba(220, 200, 255, 0.6);

            z-index: -1;
            /* 🔥 burbujas al fondo */
        }



        @keyframes float {
            0% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-40px) scale(1.1);
            }

            100% {
                transform: translateY(0) scale(1);
            }
        }


        .floating-bubble {
            animation: rise 12s infinite linear;
        }

        @keyframes rise {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }

            10% {
                opacity: 0.3;
                transform: translateY(90vh) scale(1);
            }

            90% {
                opacity: 0.3;
            }

            100% {
                transform: translateY(-10vh) scale(1.1);
                opacity: 0;
            }
        }

        /* Hero Section Styles */
        .hero {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
            overflow: hidden;
            display: flex;
            align-items: center;

        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero-image {
            position: relative;
            z-index: 10;
        }

        .company-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(13, 110, 253, 0.1);
            color: #0d6efd;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
        }

        .accent-text {
            color: #0d6efd;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #212529;
        }

        .hero p {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
        }

        .btn-link {
            color: #0d6efd;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .btn-link:hover {
            color: #0a58ca;
        }

        .customers-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 280px;
        }

        .customer-avatars {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -8px;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .more {
            background: #0d6efd;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
        }

        .customers-badge p {
            font-size: 13px;
            color: #6c757d;
            margin: 0;
        }

        .stats-row {
            position: relative;
            z-index: 10;
        }

        .stat-item {
            display: flex;
            align-items: center;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-icon {
            background: rgba(13, 110, 253, 0.1);
            color: #0d6efd;
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }

        .stat-icon i {
            font-size: 24px;
        }

        .stat-content h4 {
            margin: 0 0 5px 0;
            font-weight: 600;
            color: #212529;
        }

        .stat-content p {
            margin: 0;
            color: #6c757d;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .customers-badge {
                position: relative;
                margin-top: 30px;
                left: 0;
                bottom: 0;
            }
        }

        /* Posiciones específicas de burbujas */
        .bubble:nth-child(1) {
            width: 60px;
            height: 60px;
            left: 10%;
            top: 20%;
            animation-duration: 8s;
            animation-delay: 0s;
        }

        .bubble:nth-child(2) {
            width: 40px;
            height: 40px;
            left: 70%;
            top: 60%;
            animation-duration: 6s;
            animation-delay: -2s;
        }

        .bubble:nth-child(3) {
            width: 75px;
            height: 75px;
            left: 45%;
            top: 10%;
            animation-duration: 10s;
            animation-delay: -4s;
        }

        .bubble:nth-child(4) {
            width: 30px;
            height: 30px;
            left: 20%;
            top: 70%;
            animation-duration: 5s;
            animation-delay: -1s;
        }

        .bubble:nth-child(5) {
            width: 50px;
            height: 50px;
            left: 80%;
            top: 25%;
            animation-duration: 7s;
            animation-delay: -3s;
        }

        .bubble:nth-child(6) {
            width: 45px;
            height: 45px;
            left: 15%;
            top: 45%;
            animation-duration: 9s;
            animation-delay: -5s;
        }

        .bubble:nth-child(7) {
            width: 35px;
            height: 35px;
            left: 60%;
            top: 80%;
            animation-duration: 6s;
            animation-delay: -2.5s;
        }

        .bubble:nth-child(8) {
            width: 55px;
            height: 55px;
            left: 85%;
            top: 55%;
            animation-duration: 8s;
            animation-delay: -1.5s;
        }

        .bubble:nth-child(9) {
            width: 42px;
            height: 42px;
            left: 35%;
            top: 75%;
            animation-duration: 7s;
            animation-delay: -4.5s;
        }

        .bubble:nth-child(10) {
            width: 32px;
            height: 32px;
            left: 55%;
            top: 35%;
            animation-duration: 5.5s;
            animation-delay: -0.5s;
        }