.company-overview-section {
    width: 100vw;
    min-height: 450px;
    background: var(--dark-blue-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3.5rem 0;
    overflow: hidden;
}

.company-overview-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1040px; /* Largura máxima mais enxuta (Improve ~1100px) */
    width: 100%;
    gap: 48px;
}

/* --- Texto --- */
.company-overview-left {
    flex: 1 1 0;
    max-width: 440px;   /* Limita largura para não ficar gigante */
    min-width: 260px;
    display: flex;
    flex-direction: column;
    color: var(--bg-white);
    padding-right: 2.5rem;
    justify-content: center;
}
.company-overview-text h2 {
    font-size: 2.15rem;         /* Menor que antes! */
    font-weight: 700;
    line-height: 1.16;
    margin-bottom: 1.2rem;
    max-width: 90%;
}
.company-overview-text .highlight {
    color: var(--accent-color);
    font-weight: 800;
}
.company-overview-text p {
    font-size: 1.06rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
    color: rgba(255,255,255,0.93);
    max-width: 98%;
}

.company-overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.stat-item {
    background: var(--stat-item-bg);
    border: 1.5px solid var(--stat-btn-border);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    color: var(--bg-white);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    justify-content: center;
}
.stat-item span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-white);
}

/* --- Imagem --- */
.company-overview-right {
    flex: 1 1 0;
    min-width: 240px;
    max-width: 440px; /* Não passa disso (parecido com Improve) */
    display: flex;
    justify-content: center;
    align-items: center;
}
.company-image-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;        /* Mantém quadrada, sem height fixa */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ececec;
}
.main-working-image {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* Melhora muito a adaptação */
    object-position: center;
    border-radius: var(--border-radius);
    display: block;
}

/* --- Responsividade --- */
@media (max-width: 900px) {
    .company-overview-section {
        padding: 2.3rem 0 2rem 0;
        min-height: 0;
    }
    .company-overview-content {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        max-width: 95vw;
    }
    .company-overview-left,
    .company-overview-right {
        max-width: 95vw;
        min-width: unset;
        width: 100%;
        padding-right: 0;
        justify-content: center;
        align-items: center;
    }
    .company-overview-left {
        text-align: center;
        margin-bottom: 1rem;
    }
    .company-image-container {
        max-width: 320px;
        min-width: 170px;
    }
    .company-overview-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        margin-top: 1.2rem;
    }
    .stat-item {
        font-size: 0.98rem;
        padding: 0.6rem 0.8rem;
    }
    .stat-item span {
        font-size: 1.08rem;
    }
}
@media (max-width: 540px) {
    .company-overview-content {
        gap: 15px;
    }
    .company-image-container {
        max-width: 98vw;
        min-width: 110px;
    }
    .company-overview-text h2 {
        font-size: 1.17rem;
    }
    .company-overview-text p {
        font-size: 0.97rem;
    }
    .company-overview-stats {
        grid-template-columns: 1fr;
    }
}
