﻿.empresa-info {
    width: 100%;
    min-height: 300px;
    padding: 15px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.empresa-logo-container {
    width: 20%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.empresa-logo {
    width: 100%;
    height: auto; /* Mantém proporção */
    max-height: 100%; /* Garante que não ultrapasse a altura do container */
    border-radius: 12px;
    object-fit: contain; /* Ou 'cover', dependendo do comportamento desejado */
    padding: 20px;
    margin: 0;
    display: block; /* Evita espaços embaixo da imagem */
}

.empresa-logo-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
    justify-content: flex-start; /* Alinha os botões à esquerda */
    width: 100%; /* Garante que a div ocupe toda a largura disponível */
}

.empresa-container-dados {
    margin-top: 25px;
    width: 60%;
}

.empresa-alterar-senha {
    width: 30%;
    min-height: 300px;
    max-height: 500px;
    padding: 15px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: block;
    align-content: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}