/* Empresa Section Styles */
.empresa-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.empresa-content {
    padding-right: 2rem;
}

.empresa-content .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.empresa-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.empresa-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.empresa-features li i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.empresa-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Estrutura Cards - usar as mesmas propriedades da seção "Qualidade" */
.estrutura-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(26, 75, 140, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.estrutura-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(26, 75, 140, 0.1);
    text-align: center;
}

.estrutura-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.estrutura-card p {
    color: var(--gray-color);
}



/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .empresa-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .empresa-image img {
        height: 300px;
    }

    .qualidade-content {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .estrutura-card {
        margin-bottom: 1.5rem;
    }

    .qualidade-stats .col-4 {
        margin-bottom: 1.5rem;
    }
}