        /* --- AJUSTE DE ROLAGEM ANCORA --- */
        html {
            scroll-behavior: smooth;
            /* Rolagem suave */
        }

        /* Compensação para a Navbar Fixa. 
           Como sua navbar tem aproximadamente 80-90px de altura, 
           definimos uma margem de rolagem para que o título não fique escondido.
        */
        section[id] {
            scroll-margin-top: 100px;
        }

        /* --- PALETA DE CORES BRANDING --- */
        :root {
            --kaizen-red: #db1f27;
            --kaizen-black: #252525;
            --kaizen-dark-gray: #333333;
            --kaizen-light-gray: #f8f9fa;
            --kaizen-white: #FFFFFF;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--kaizen-black);
            background-color: var(--kaizen-white);
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: var(--kaizen-black);
            letter-spacing: -0.5px;
        }

        /* --- COMPONENTES CORPORATIVOS --- */

        .navbar-custom {
            background-color: var(--kaizen-black);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            padding: 12px 0;
        }

        .btn-corporate {
            background-color: var(--kaizen-red);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border: 1px solid var(--kaizen-red);
            transition: all 0.3s ease;
        }

        .btn-corporate:hover {
            background-color: #b01219;
            border-color: #b01219;
            color: white;
        }

        /* --- HERO SECTION --- */
        .hero-section {
            background: linear-gradient(to right, rgba(37, 37, 37, 0.9), rgba(37, 37, 37, 0.7)),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }

        .hero-line {
            width: 60px;
            height: 4px;
            background-color: var(--kaizen-red);
            margin-bottom: 25px;
        }

        /* --- CARDS --- */
        .card-pillar {
            border: 1px solid #e0e0e0;
            background: white;
            padding: 40px 30px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card-pillar:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-bottom: 3px solid var(--kaizen-red);
        }

        .icon-pillar {
            font-size: 2.5rem;
            color: var(--kaizen-red);
            margin-bottom: 20px;
            display: block;
        }

        /* --- LISTA DE RISCOS --- */
        .risk-list-item {
            display: flex;
            align-items: start;
            margin-bottom: 20px;
            padding: 15px;
            background-color: #fff0f0;
            border-left: 4px solid var(--kaizen-red);
        }

        /* --- FORMULÁRIO --- */
        .form-control-b2b {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            padding: 12px;
            border-radius: 2px;
            margin-bottom: 15px;
        }

        .form-control-b2b:focus {
            background-color: white;
            border-color: var(--kaizen-black);
            box-shadow: none;
        }

        .form-header {
            background-color: var(--kaizen-black);
            color: white;
            padding: 20px;
            border-top: 4px solid var(--kaizen-red);
        }

        /* --- SEÇÃO PRODUTO (DARK) --- */
        .product-section {
            background-color: var(--kaizen-black);
            color: white;
            padding: 80px 0;
        }

        .product-list li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 0;
        }

        .product-list i {
            color: var(--kaizen-red);
            margin-right: 15px;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 266, 266, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 9999;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }