.map-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #212121;
    max-width: 1400px;
    margin-inline: auto;
    margin-block-end: 15px !important;
}
.map-section-heading {
	color: #212121;
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
}

.map-section-subtitle {
    color: #212121;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}

.map-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
}

.map-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.map-loading-text {
    color: #212121;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.leaflet-control-container {
    font-family: 'Poppins', sans-serif;
}

.leaflet-control-zoom a {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 18px;
    line-height: 26px;
    transition: all 0.2s ease;
}

.leaflet-control-zoom a:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #0f172a;
}

.info-card .ecoparque-item {
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: none !important;
}

.info-card .ecoparque-image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%) !important;
    background-size: 200% 100% !important;
    animation: loading 1.5s infinite !important;
    border-radius: 4px !important;
}

.info-card .info-card-image {
    border-radius: 4px !important;
}

.info-card .ecoparque-title {
    color: #1e293b !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

.info-card .text-content,
.info-card .text-paragraph {
    text-align: justify;
    color: #64748b !important;
    line-height: 1.6 !important;
    font-family: 'Poppins', sans-serif !important;
}

.info-card .loading-spinner {
    color: #666 !important;
    font-family: 'Poppins', sans-serif !important;
}

.info-card-close {
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #475569;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1;
    transition: all 0.2s ease;
}

.info-card-close:hover {
    background: rgba(255, 255, 255, 1);
    color: #334155;
    transform: scale(1.05);
}

.map-scroll-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.map-scroll-message {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.map-scroll-overlay.show .map-scroll-message {
    opacity: 1;
    transform: translateY(0);
}

.custom-pin:focus {
    outline: 3px solid #10b981;
    outline-offset: 2px;
}

.info-card-close:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .map-toggle-button,
    .quality-toggle-btn,
    .custom-pin,
    .info-card,
    .info-card-close,
    .leaflet-control-zoom a {
        transition: none;
    }
    
    .map-loading {
        animation: none;
        background: #f0f0f0;
    }
    
    .info-card-header {
        animation: none;
        background: #f0f0f0;
    }
}