.mapa-interativo-container {
    position: relative;
    width: 100%;
    margin: 20px 0;
    min-height: 500px;
}

.mapa-filters {
    display: flex;
    justify-content: flex-end;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
    border: 2px solid #F04E44;
}

.category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-pill {
    background: white;
    border: 2px solid #F04E44;
    border-radius: 50px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.category-pill:hover {
    background: #f0f0f0;
}

.category-pill.active {
    background: #F04E44;
    color: white;
    border-color: #F04E44;
}

#mapa-interativo {
    width: 100% !important;
    height: 500px !important;
    border: 2px solid #F04E44;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.leaflet-container {
    width: 100% !important;
    height: 100% !important;
}

.image-card {
    width: 100%;
    height: 75px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 22px;
}

.pin-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 0;
    border-radius: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 300px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.pin-info-card .row {
    padding: 8px 8px 3px 8px;
}

div#pin-info {
    padding: 10px;
    width: 255px;
}

.pin-info-card h3 {
    margin: 0 0 0 0;
    font-size: 18px;
    color: #333;
}

.pin-info-card h3.estado {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
    font-weight: normal;
}

.pin-info-card .row.pin-title-icon {
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding: 10px;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

.pin-info-card h3.pin-title {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1;
}

img.icon-card {
    width: 20px;
    display: none;
}

.pin-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pin-info-card p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.pin-info-card .pin-category {
    display: none; /* Oculta o campo de categoria */
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
    background: #F04E44;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Marker Animation */
@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-8px);
    }
}

.custom-marker {
    width: 30px !important;
    height: 42px !important;
}

.marker-pin {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    animation: bounce 0.5s ease infinite alternate;
    transition: transform 0.3s ease;
}

.marker-pin.selected {
    animation: none;
    transform: scale(1.2);
}

.pin-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pin-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #F04E44;
    color: white !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    transition: background-color 0.3s ease;
}

.pin-link:hover {
    background-color: #d83b31;
    color: white !important;
}

.pin-link.elementor-button {
    display: inline-block !important;
    padding: 9px 12px !important;
    background-color: #ffffff!important;
    color: #000000!important;
    text-decoration: none !important;
    border-radius: 100px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    transition: background-color 0.3s ease !important;
    margin: 0 !important;
    border: 2px solid #F04E44;
    font-size: 13px !important;
    width: 100%;
}

.pin-link.elementor-button:hover {
    background-color: #d83b31 !important;
    color: white !important;
    opacity: 1 !important;
} 