    /* ==========================================================================
   3. SEÇÃO 1: HERO (INÍCIO)
   ========================================================================== */
    .hero-section {
        padding: 80px 0;
    }

    .badge-specialist {
        background-color: #fef5e7;
        color: #e67e22;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 5px;
        display: inline-block;
        margin-bottom: 20px;
    }

    .main-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .highlight-orange {
        color: #e67e22;
    }

    .lead-text {
        color: #555;
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 500px;
    }

    .feature-list {
        list-style: none;
        padding-left: 0;
    }

    .feature-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        font-weight: 500;
        font-size: 0.95rem;
    }

    .feature-list i {
        color: #e67e22;
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .image-container {
        position: relative;
    }

    .hero-img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .floating-card {
        position: absolute;
        bottom: -20px;
        left: -20px;
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .icon-growth {
        background-color: #d1fae5;
        color: #059669;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .growth-text {
        font-size: 0.8rem;
        color: #666;
        margin: 0;
    }

    .growth-value {
        font-weight: 800;
        font-size: 1.1rem;
        color: #1a1a1a;
        margin: 0;
    }

    @media (max-width: 991px) {
        .main-title {
            font-size: 2.5rem;
        }

        .floating-card {
            position: relative;
            left: 0;
            bottom: 0;
            margin-top: 20px;
        }
    }