/* Reset básico */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.content {
    display: flex;
    gap: 20px;
}

.filters {
    flex: 1;
    max-width: 250px;
}

.filter-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.filter-select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.map-container {
    flex: 3;
}

.map-container h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.map-container p {
    font-size: 16px;
    margin-bottom: 20px;
}

.map {
    position: relative;
    background-color: #e6e6e6;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .filters {
        max-width: 100%;
    }

    .map-container {
        flex: 1;
    }
}
