.header-bar {
    background-color: #5a3b73;
    height: 200px;
    padding: 30px;
    color: #fff;
}

.empresa-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.empresa-card:hover {
    transform: scale(1.05);
}

.empresa-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fichaempresa-content {
    padding: 15px;
}

.footer {
    background-color: #02274f;
    color: white;
    padding: 40px 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.search-form {
    display: flex;
    justify-content: flex-end;
}

.search-input {
    width: 50%;
}

@media (max-width: 576px) {
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        width: 100%;
    }

    .search-form button {
        width: 100%;
        margin-top: 10px;
    }
}