/* ============================================================
   HERO DAS INDÚSTRIAS (Molde Mestre)
============================================================ */
.industry-hero {
    background-color: #F8FAFC; 
    padding: 100px 0; 
    width: 100%;
}

.industry-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center;
    gap: 60px; 
}

.industry-text-side {
    max-width: 520px;
}

.industry-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: -0.02em; 
    text-transform: uppercase;
    margin-bottom: 20px;
}

.industry-title {
    font-family: 'Source Serif 4', serif; 
    font-weight: 700;
    color: #1E293B;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.industry-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 40px;
}



.industry-image-side {
    display: flex;
    justify-content: flex-end;
}

.industry-main-img {
    max-width: 100%;
    height: auto;
}


@media (max-width: 992px) {
    .industry-hero-grid {
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 40px;
    }
    .industry-text-side {
        max-width: 100%;
        margin: 0 auto;
    }
    .industry-image-side {
        justify-content: center;
    }
}