.ge-empresas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.ge-card-empresa {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.ge-card-empresa:hover {
    transform: translateY(-3px);
}

.ge-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ge-card-body {
    padding: 15px;
}

.ge-card-body h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.ge-card-body h3 a {
    text-decoration: none;
    color: #333;
}

.ge-card-tipo {
    display: inline-block;
    color: #666;
    font-size: 13px;
    margin-bottom: 8px;
}

.ge-card-local {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.ge-diretorio-wrapper {
    display: flex;
    gap: 30px;
}

.ge-sidebar-categorias {
    flex: 0 0 280px;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

.ge-sidebar-categorias h3 {
    margin-top: 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.ge-sidebar-categorias ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ge-sidebar-categorias li {
    margin-bottom: 10px;
}

.ge-sidebar-categorias a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    display: block;
}

.ge-sidebar-categorias a.active,
.ge-sidebar-categorias a:hover {
    color: #ff4d4d;
    font-weight: bold;
}

.ge-lista-empresas {
    flex: 1;
}

.ge-search-form {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.ge-search-form input[type="text"],
.ge-search-form select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ge-search-form button {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .ge-diretorio-wrapper {
        flex-direction: column;
    }
    .ge-empresas-grid {
        grid-template-columns: 1fr !important;
    }
    .ge-search-form {
        flex-direction: column;
    }
}