 /* Estilos responsivos */
    @media (min-width: 769px) {
        #infoWindowMapa {
            top: 20px !important;
            right: 20px !important;
            left: auto !important;
            transform: none !important;
        }
    }
    
    @media (max-width: 768px) {
        #infoWindowMapa {
            width: calc(100% - 40px) !important;
            max-width: 400px !important;
            max-height: calc(100% - 40px) !important;
            padding: 1rem !important;
        }
        
        #infoContent {
            text-align: center;
        }
        
        #infoContent img {
            max-width: 100%;
            height: auto;
        }
        
        #closeInfoWindow {
            font-size: 14px !important;
            padding: 10px 16px !important;
        }
    }
    
    @media (max-width: 480px) {
        #infoWindowMapa {
            width: calc(100% - 30px) !important;
            padding: 0.75rem !important;
        }
        
        #infoContent {
            font-size: 14px;
        }
        
        .descripcion-container {
            padding: 0.75rem !important;
        }
    }