/* points-of-interest-module.css */
 .bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}
.object-fit-cover {
    object-fit: cover;
}
.places-interest-modern {
    margin-top: 0rem;
    padding: 0.0rem;
}
.places-interest-modern .card {
    transition: all 0.3s ease;
}
.places-interest-modern .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1) !important;
}
#ciudades .list-unstyled {
    transition: max-height 0.3s ease;
}
#ciudades .list-unstyled:not(.show-all) li:nth-child(n+6) {
    display: none;
}
#ciudades .list-unstyled.show-all li {
    display: block;
    animation: fadeInSlide 0.3s ease-in-out;
}
#ciudades li[data-code] {
    transition: background-color 0.2s ease;
    border-radius: 4px;
    padding: 4px 8px;
    margin: 2px 0;
}
#ciudades li[data-code]:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}
#ciudades li[data-code]:has(input:checked) {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-left: 3px solid var(--bs-primary);
    padding-left: 8px;
}
.places__interest {
    transition: all 0.3s ease;
    overflow: hidden;
}
.places__interest.hidden {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}
.places__interest:not(.hidden) {
    opacity: 1;
    margin: 0rem 0;
    padding: 0rem;
    background-color: transparent;
    border-radius: 8px;
    border: 0px solid #e9ecef;
}
.points-no-results {
    animation: fadeIn 0.5s ease-in-out;
    border-left: 5px solid var(--bs-primary);
}
#ciudades .show-more {
    transition: all 0.2s ease;
    font-size: 0.9rem;
}
#ciudades .show-more:hover {
    color: #ffffff;
}
#ciudades .show-more.active {
    color: var(--bs-primary);
    font-weight: 500;
}
#ciudades .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
#ciudades .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
.places__interest.loading {
    position: relative;
}
.places__interest.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.places-interest-card {
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.places-interest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}
.places-hero-img {
    transition: transform 0.3s ease;
}
.places-interest-card:hover .places-hero-img {
    transform: scale(1.05);
}
.bg-gradient-to-top {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.drop-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.places-description {
    font-size: 0.95rem;
    line-height: 1.7;
}

.btn-rounded {
border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
.places-hero-img {
    height: 200px !important;
}

.places-interest-card .p-4 {
    padding: 1rem !important;
}
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
    #ciudades .list-unstyled {
        max-height: 200px;
        overflow-y: auto;
    }
    
    #ciudades .list-unstyled.show-all {
        max-height: 400px;
    }
    
    .places__interest {
        padding: 0.75rem;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInSlide {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}