.empresa-container {
    max-width: 900px;
    margin: -90px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    color: #333;
}

.empresa-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
    text-align: center;
    color: #05325d;
}

.empresa-image-container {
    text-align: center;
    margin-bottom: 30px;
}

.empresa-image {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empresa-info-horizontal {
    display: flex !important;
    justify-content: space-between !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-bottom: 30px !important;
}

.empresa-info-box {
    flex: 0 0 150px;
    min-width: 150px;
    box-sizing: border-box;
    margin-bottom: 0;
}

.empresa-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 2px;
    display: block;
}

.empresa-info-box a,
.empresa-info-box span,
.empresa-info-box p {
    margin-top: 0;
    line-height: 1.3;
}

.empresa-link {
    color: #0073aa;
    text-decoration: none;
    word-break: break-word;
}

.empresa-link:hover,
.empresa-link:focus {
    text-decoration: underline;
}

.empresa-descricao h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #222;
}

.empresa-mapa iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 100%;
    height: 350px;
    border: 0;
}

.btn-voltar-empresas {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #05325d;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.btn-voltar-empresas:hover,
.btn-voltar-empresas:focus {
    color: white;
}

.empresa-label i,
.empresa-descricao h2 i
{
    color: #05325d;
    margin-right: 6px;
    vertical-align: middle;
}

.btn-voltar-empresas i {
    color: #fff;
    margin-right: 6px;
    vertical-align: middle;
}

.empresa-redes-sociais {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin: 30px 0;
    flex-wrap: wrap;
}

.social-link {
    font-size: 20px;
    color: #05325d;
    transition: color 0.3s ease;
}

.social-link:hover,
.social-link:focus {
    color: #05325d;
    text-decoration: none;
}

@media (max-width: 600px) {
    .empresa-container {
        max-width: 900px;
        margin: -15px auto;
        padding: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        color: #333;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center; 
    }

    .empresa-info-horizontal {
        flex-direction: column;
        gap: 10px !important;
        align-items: center; 
    }

    .empresa-info-box {
        min-width: auto;
        margin-bottom: 10px;
        flex: 1 1 auto;
        text-align: center; 
    }

    .empresa-redes-sociais {
        justify-content: center; 
    }
}

